:root {
    --color-primary: #0974F2;
    --color-primary-hover: #0066FF;
    --color-secondary: #31AFD7;
    --color-dark: #253053;
    --color-text: #464D62;
    --color-text-light: #666;
    --color-white: #FFFFFF;
    --color-bg-light: #F4F7FA;
    --color-bg-lighter: #EDF3F9;
    --color-bg-lightest: #EAF3FD;
    --color-bg-hover: #f0f4ff;
    --color-teal: #1F6064;
    --color-border: #253053;

    --font-primary: 'Work Sans', sans-serif;
    --font-secondary: 'Heebo', sans-serif;

    --fs-base: 16px;
    --fs-small: 14px;
    --fs-xsmall: 13px;
    --fs-large: 18px;
    --fs-xlarge: 30px;
    --fs-xxlarge: 48px;

    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 30px;
    --spacing-lg: 40px;
    --spacing-xl: 50px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-full: 100px;

    --transition-default: all 0.3s ease;

    --container-max: 1200px;
    --sidebar-width: 280px;
    --grid-gap: 40px;
}

.blog-knowledge-base {
    width: 100%;
    overflow-x: hidden;
}

.blog-knowledge-base *,
.blog-knowledge-base *::before,
.blog-knowledge-base *::after {
    box-sizing: border-box;
}


.blog-main-content {
    padding: var(--spacing-lg) 0;
    width: 100%;
    max-width: 100%;
}

.container_holder {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
}

.blog-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: var(--grid-gap);
    width: 100%;
    max-width: 100%;
}

.blog-sidebar {
    width: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* Custom scrollbar for sidebar */
.blog-sidebar::-webkit-scrollbar {
    width: 6px;
}

.blog-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.blog-sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.blog-sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.sidebar-title {
    font-family: var(--font-primary);
    font-size: var(--fs-large);
    font-weight: 600;
    line-height: 1.17;
    color: var(--color-dark);
    margin: 0;
    width: 103px;
}

.category-list {
    list-style: none;
    padding: var(--spacing-xs) 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.category-item {
    margin: 0;
}

.category-item a {
    display: flex;
    align-items: center;
    padding: 5px var(--spacing-xs) 5px var(--spacing-sm);
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: var(--fs-small);
    font-weight: 400;
    line-height: 1.4;
    border-radius: 0;
    transition: var(--transition-default);
}

.category-item a:hover {
    background-color: var(--color-bg-lighter);
    color: var(--color-dark);
}

.category-item.all.active a {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 600;
    font-size: var(--fs-base);
    line-height: 1.17;
    color: var(--color-dark);
    background-color: var(--color-bg-lighter);
    border-radius: var(--radius-full);
}

.category-item.all.active a {
    background-color: var(--color-bg-lighter);
    color: var(--color-dark);
}

.help-widget {
    background: var(--color-bg-light);
    padding: 36px var(--spacing-xs);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.help-widget::before {
    content: '';
    position: absolute;
    top: -143px;
    right: -600px;
    width: 362px;
    height: 240px;
    background: var(--color-bg-lightest);
    border-radius: 50%;
    z-index: 0;
}

.help-widget::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 48px;
    width: 292px;
    height: 194px;
    background: radial-gradient(circle, rgba(201, 225, 255, 0.3) 0%, rgba(234, 243, 253, 0.2) 100%);
    border-radius: 50%;
    z-index: 0;
}

.help-widget h3 {
    font-family: var(--font-primary);
    font-size: var(--fs-xlarge);
    font-weight: 600;
    line-height: 1.17;
    color: var(--color-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

.help-widget .help-highlight {
    color: var(--color-dark);
}

.help-widget p {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    position: relative;
    z-index: 1;
}

.help-widget .btn-chat {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 18px var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-base);
    line-height: 1.17;
    transition: var(--transition-default);
    position: relative;
    z-index: 1;
}

.help-widget .btn-chat:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 116, 242, 0.3);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px var(--spacing-sm);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-sm) 0;
}

.pagination-arrow,
.pagination-number {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: var(--fs-xsmall);
    font-weight: 500;
    transition: var(--transition-default);
    padding: 0 8px;
}

.pagination-arrow {
    color: var(--color-text-light);
    background: transparent;
    border: 1px solid var(--color-border);
}

.pagination-arrow:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-primary-hover);
}

.pagination-number {
    color: var(--color-text-light);
    background: transparent;
}

.pagination-number:hover {
    background-color: var(--color-bg-hover);
    color: var(--color-primary-hover);
}

.pagination-number.active {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.blog-cta-section {
    margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.cta-banner {
    background: var(--color-primary);
    padding: 0;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(9, 116, 242, 0.3);
    position: relative;
    overflow: hidden;
    height: 107px;
}

.cta-banner::before {
    content: '14 DAYS FREE TRIAL';
    position: absolute;
    font-family: var(--font-secondary);
    font-size: 80px;
    font-weight: 800;
    line-height: 1.47;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cta-image {
    width: 140px;
    min-width: 140px;
    height: 114px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: visible;
    margin-left: 59px;
    margin-top: -7px;
}

.cta-image img {
    height: 114px;
    width: 140px;
    object-fit: cover;
    object-position: center;
}

.cta-content {
    flex: 1;
    text-align: center;
    padding: 16px 15px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: var(--fs-xxlarge);
    font-weight: 800;
    line-height: 1.47;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    color: var(--color-white);
}

.cta-content p {
    font-family: var(--font-secondary);
    font-size: var(--fs-large);
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: 0.02em;
    color: var(--color-teal);
    margin: 0;
}

.cta-button {
    padding-right: 37px;
    position: relative;
    z-index: 1;
}

.cta-button .btn-cta {
    background-color: var(--color-white);
    color: var(--color-secondary);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: var(--fs-large);
    line-height: 1.47;
    letter-spacing: 0.02em;
    display: inline-block;
    text-transform: uppercase;
    transition: var(--transition-default);
}

.cta-button .btn-cta:hover {
    background-color: var(--color-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {

    .info-grid,
    .info-card,
    .testimonial-card,
    .blog-layout,
    .blog-sidebar,
    .blog-posts-grid,
    .category-list,
    .cta-banner {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .container_holder {
        max-width: 100%;
        padding: 0 30px;
    }

    .blog-layout {
        grid-template-columns: 260px 1fr;
        gap: 30px;
    }

    .blog-sidebar {
        width: 260px;
    }
}

@media (max-width: 1024px) {
    .container_holder {
        max-width: 100%;
        padding: 0 25px;
    }

    .blog-layout {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }

    .blog-sidebar {
        width: 240px;
    }

    .sidebar-title {
        font-size: 16px;
        width: auto;
    }

    .category-list {
        height: auto;
    }

    .category-item.all a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .category-item a {
        padding: 4px 8px 4px 16px;
        font-size: 13px;
    }

    .help-widget {
        padding: 28px 10px;
        gap: 20px;
    }

    .help-widget h3 {
        font-size: 24px;
    }

    .help-widget p {
        font-size: 14px;
    }

    .help-widget .btn-chat {
        padding: 14px 24px;
        font-size: 14px;
    }

    .blog-posts-grid {
        gap: 20px 15px;
    }

    .cta-banner {
        height: 100px;
    }

    .cta-banner::before {
        font-size: 70px;
    }

    .cta-image {
        width: 130px;
        min-width: 130px;
        height: 106px;
        margin-left: 50px;
    }

    .cta-image img {
        height: 106px;
        width: 130px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-button {
        padding-right: 30px;
    }

    .cta-button .btn-cta {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        width: 100%;
        gap: 20px;
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .sidebar-categories {
        gap: 12px;
    }

    .category-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        height: auto;
        padding: 0;
    }

    .category-item.all a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .category-item a {
        padding: 8px 12px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        width: 100%;
        gap: 20px;
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .sidebar-categories {
        gap: 12px;
    }

    .category-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        height: auto;
        padding: 0;
    }

    .category-item.all a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .category-item a {
        padding: 8px 12px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }

    .help-widget {
        padding: 30px 20px;
        gap: 20px;
    }

    .help-widget h3 {
        font-size: 26px;
    }

    .help-widget p {
        font-size: 14px;
    }

    .help-widget .btn-chat {
        padding: 16px 28px;
        font-size: 15px;
    }

    .cta-banner {
        height: auto;
        min-height: 90px;
    }

    .cta-banner::before {
        font-size: 50px;
    }

    .cta-image {
        width: 110px;
        min-width: 110px;
        height: 90px;
        margin-left: 40px;
    }

    .cta-image img {
        height: 90px;
        width: 110px;
    }

    .cta-content {
        padding: 12px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-button {
        padding-right: 25px;
    }

    .cta-button .btn-cta {
        padding: 11px 22px;
        font-size: 16px;
    }
}

@media (max-width: 800px) {
    .blog-hero-section {
        padding: 35px 40px 25px;
    }

    .banner-content {
        gap: 24px;
    }

    .blog-hero-section h1 {
        font-size: 36px;
    }

    .blog-hero-section p {
        font-size: 15px;
    }

    .ellipse-1 {
        width: 220px;
        height: 220px;
        top: -140px;
        right: 50px;
    }

    .ellipse-2 {
        width: 200px;
        height: 200px;
        bottom: -40px;
        left: 50px;
    }

    .ellipse-3 {
        width: 160px;
        height: 160px;
        bottom: -20px;
        left: 80px;
    }

    .ellipse-4 {
        width: 170px;
        height: 170px;
        top: -120px;
        right: 60px;
    }

    .decorative-icon-left {
        left: 80px;
        bottom: 80px;
    }

    .decorative-icon-right {
        right: 150px;
        top: 15px;
    }

    .decorative-icon-left svg,
    .decorative-icon-right svg {
        width: 50px;
        height: 22px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-widget h3 {
        font-size: 22px;
    }

    .help-widget p {
        font-size: 13px;
    }

    .cta-banner {
        height: auto;
        min-height: 80px;
    }

    .cta-banner::before {
        font-size: 40px;
    }

    .cta-image {
        width: 90px;
        min-width: 90px;
        height: 75px;
        margin-left: 30px;
    }

    .cta-image img {
        height: 75px;
        width: 90px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-button {
        padding-right: 20px;
    }

    .cta-button .btn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 30px 30px 25px;
    }

    .banner-content {
        gap: 20px;
    }

    .blog-hero-section h1 {
        font-size: 32px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 26px;
        font-size: 15px;
    }

    .button-group {
        gap: 18px;
    }

    .ellipse-1,
    .ellipse-2,
    .ellipse-3,
    .ellipse-4 {
        opacity: 0.7;
    }

    .ellipse-1 {
        width: 180px;
        height: 180px;
        top: -100px;
    }

    .ellipse-2 {
        width: 160px;
        height: 160px;
        bottom: -30px;
    }

    .ellipse-3 {
        width: 130px;
        height: 130px;
    }

    .ellipse-4 {
        width: 140px;
        height: 140px;
        top: -90px;
    }

    .decorative-icon-left svg,
    .decorative-icon-right svg {
        width: 40px;
        height: 18px;
    }

    .blog-hero-section h1 {
        font-size: 32px;
    }

    .blog-hero-section p {
        font-size: 14px;
    }

    .blog-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .cta-banner {
        flex-direction: column;
        height: auto;
        padding: 15px;
        text-align: center;
    }

    .cta-banner::before {
        font-size: 32px;
    }

    .cta-image {
        margin: 0 auto;
        width: 100px;
        min-width: 100px;
        height: 82px;
        order: -1;
    }

    .cta-image img {
        height: 82px;
        width: 100px;
    }

    .cta-content {
        padding: 10px 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 12px;
    }

    .cta-button {
        padding-right: 0;
        margin-top: 10px;
    }

    .cta-button .btn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .trust-grid {
        gap: 15px;
        flex-direction: column;
    }

    .trust-badge {
        width: 100%;
        max-width: 400px;
    }

    .trust-badge.easy-usability {
        width: 120px;
        height: 120px;
    }

    .rating-badge {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .container_holder {
        padding: 0 20px;
    }

    .blog-hero-section {
        padding: 25px 20px 20px;
    }

    .banner-content {
        gap: 18px;
    }

    .blog-hero-section h1 {
        font-size: 28px;
    }

    .blog-hero-section p {
        font-size: 14px;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 15px 24px;
    }

    .ellipse-1 {
        width: 140px;
        height: 140px;
        top: -70px;
        right: 20px;
    }

    .ellipse-2 {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: 20px;
    }

    .ellipse-3 {
        width: 100px;
        height: 100px;
        bottom: -10px;
        left: 40px;
    }

    .ellipse-4 {
        width: 110px;
        height: 110px;
        top: -60px;
        right: 30px;
    }

    .decorative-icon-left {
        left: 40px;
        bottom: 60px;
    }

    .decorative-icon-right {
        right: 80px;
        top: 20px;
    }

    .decorative-icon-left svg,
    .decorative-icon-right svg {
        width: 35px;
        height: 15px;
    }

    .category-list {
        grid-template-columns: 1fr;
    }

    .help-widget {
        padding: 24px 16px;
        gap: 18px;
    }

    .help-widget h3 {
        font-size: 20px;
    }

    .help-widget p {
        font-size: 13px;
    }

    .help-widget .btn-chat {
        padding: 14px 24px;
        font-size: 14px;
    }

    .cta-banner {
        padding: 15px;
    }

    .cta-banner::before {
        font-size: 28px;
    }

    .cta-image {
        width: 85px;
        min-width: 85px;
        height: 70px;
    }

    .cta-image img {
        height: 70px;
        width: 85px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 11px;
    }

    .cta-button .btn-cta {
        padding: 9px 18px;
        font-size: 13px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card {
        padding: 20px 25px;
        min-height: auto;
    }

    .info-card h3 {
        font-size: 36px;
    }

    .info-card h3 .subtitle {
        font-size: 28px;
    }

    .info-card p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .info-image {
        position: static;
        width: 120px;
        height: auto;
        margin: 20px auto 0;
        display: block;
        transform: none;
    }

    .testimonial-content {
        gap: 12px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        display: grid;
    }

    .trust-badge.easy-usability {
        width: 100px;
        height: 100px;
    }

    .rating-badge {
        width: 100%;
    }
}

@media (max-width: 568px) {
    .blog-hero-section h1 {
        font-size: 26px;
    }

    .blog-pagination {
        gap: 4px;
    }

    .pagination-arrow,
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-hero-section {
        padding: 20px 15px 18px;
    }

    .banner-content {
        gap: 16px;
    }

    .button-group {
        align-items: center;
    }

    .blog-hero-section h1 {
        font-size: 24px;
        line-height: 1.1;
    }

    .blog-hero-section p {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
    }

    .ellipse-1 {
        width: 100px;
        height: 100px;
        top: -50px;
        right: 10px;
    }

    .ellipse-2 {
        width: 90px;
        height: 90px;
        bottom: -15px;
        left: 10px;
    }

    .ellipse-3 {
        width: 70px;
        height: 70px;
        bottom: -5px;
        left: 25px;
    }

    .ellipse-4 {
        width: 80px;
        height: 80px;
        top: -40px;
        right: 15px;
    }

    .decorative-icon-left {
        left: 25px;
        bottom: 50px;
    }

    .decorative-icon-right {
        right: 50px;
        top: 15px;
    }

    .decorative-icon-left svg,
    .decorative-icon-right svg {
        width: 28px;
        height: 12px;
    }

    .help-widget h3 {
        font-size: 18px;
    }

    .help-widget p {
        font-size: 12px;
    }

    .help-widget .btn-chat {
        padding: 12px 20px;
        font-size: 13px;
    }

    .cta-banner {
        padding: 12px;
    }

    .cta-banner::before {
        font-size: 24px;
    }

    .cta-image {
        width: 70px;
        min-width: 70px;
        height: 58px;
    }

    .cta-image img {
        height: 58px;
        width: 70px;
    }

    .cta-content h2 {
        font-size: 18px;
    }

    .cta-content p {
        font-size: 10px;
    }

    .cta-button .btn-cta {
        padding: 8px 16px;
        font-size: 12px;
    }

    .info-card h3 {
        font-size: 28px;
    }

    .info-card h3 .subtitle {
        font-size: 22px;
    }

    .info-card p {
        font-size: 14px;
    }

    .info-image {
        width: 90px;
    }

    .testimonial-content h4 {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .blog-hero-section {
        padding: 18px 12px 16px;
    }

    .banner-content {
        gap: 14px;
    }

    .button-group {
        align-items: center;
    }

    .blog-hero-section h1 {
        font-size: 22px;
        line-height: 1.1;
    }

    .blog-hero-section p {
        font-size: 12px;
        line-height: 1.5;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }

    .ellipse-1,
    .ellipse-2,
    .ellipse-3,
    .ellipse-4 {
        opacity: 0.5;
    }

    .ellipse-1 {
        width: 80px;
        height: 80px;
        top: -40px;
        right: 5px;
    }

    .ellipse-2 {
        width: 70px;
        height: 70px;
        bottom: -10px;
        left: 5px;
    }

    .ellipse-3 {
        width: 55px;
        height: 55px;
        bottom: -3px;
        left: 15px;
    }

    .ellipse-4 {
        width: 60px;
        height: 60px;
        top: -30px;
        right: 10px;
    }

    .decorative-icon-left,
    .decorative-icon-right {
        display: none;
    }

    .container_holder {
        padding: 0 12px;
    }

    .blog-sidebar {
        max-height: none;
        overflow-y: visible;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 10px;
    }

    .cta-banner::before {
        font-size: 20px;
    }

    .cta-image {
        width: 60px;
        min-width: 60px;
        height: 50px;
    }

    .cta-image img {
        height: 50px;
        width: 60px;
    }

    .cta-content h2 {
        font-size: 16px;
    }

    .cta-content p {
        font-size: 9px;
    }

    .cta-button .btn-cta {
        padding: 7px 14px;
        font-size: 11px;
    }

    .info-card {
        padding: 18px 16px;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .info-card h3 .subtitle {
        font-size: 18px;
    }

    .info-card p {
        font-size: 13px;
    }

    .info-image {
        width: 80px;
        max-width: 100%;
    }

    .testimonial-content h4 {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 11px;
    }
}

@media (max-width: 320px) {
    .blog-hero-section h1 {
        font-size: 20px;
    }

    .container_holder {
        padding: 0 10px;
    }

    .blog-sidebar {
        max-height: none;
        overflow-y: visible;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 12px 10px;
        border-radius: 6px;
    }

    .cta-banner::before {
        font-size: 16px;
        letter-spacing: 0px;
    }

    .cta-content h2 {
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    .cta-content p {
        font-size: 7px;
    }

    .cta-button .btn-cta {
        padding: 7px 16px;
        font-size: 8px;
    }

    .pagination-arrow,
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}