 html {
            scroll-behavior: smooth;
        }
    
        .blog-page {
            background: #f4f7fb;
            color: #1e232a;
            line-height: 1.8;
            margin-top: 59px;
        }
    
        @media (max-width: 991px) {
            .blog-page {
                margin-top: 55px;
                overflow-x: hidden;
            }
    
            body,
            html {
                overflow-x: hidden;
            }
    
            * {
                max-width: 100%;
                box-sizing: border-box;
            }
        }
    
        @media (max-width: 767px) {
            .blog-page {
                margin-top: 55px;
            }
        }
    
        .blog-page .hero-overlay {
            position: absolute !important;
            inset: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 56, 168, 0.55) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 1 !important;
        }
    
        .blog-page .hero-content {
            max-width: 1000px;
            margin: 142px auto;
            position: relative;
            z-index: 2;
        }
    
        .blog-page .hero h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.3px;
            color: #fff;
            margin-bottom: 20px;
            text-shadow:
                0 3px 10px rgba(0, 0, 0, .8),
                0 6px 25px rgba(0, 0, 0, .6);
        }
    
        .blog-page .hero p {
            max-width: 850px;
            margin: auto;
            font-size: 20px;
            line-height: 1.8;
            letter-spacing: 0.1px;
            color: rgba(255, 255, 255, .92);
            text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
        }
    
        /* Hero — Tablet & below (<=1024px): full banner image visible, no cropping */
        @media (max-width: 1024px) {
            .blog-page .hero {
                position: relative !important;
                background-size: cover !important;
                background-position: center center !important;
                background-repeat: no-repeat !important;
                min-height: auto !important;
                height: auto !important;
                aspect-ratio: 16 / 6.5;
                padding: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                overflow: hidden !important;
            }
    
            .blog-page .hero .hero-overlay {
                position: absolute !important;
                inset: 0 !important;
                width: 100% !important;
                height: 100% !important;
                background: rgba(0, 56, 168, 0.55) !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 1 !important;
            }
    
            .blog-page .hero .hero-content {
                position: relative !important;
                z-index: 2 !important;
                width: 100% !important;
                max-width: 1000px !important;
                margin: 0 auto !important;
                padding: 20px !important;
            }
        }
    
        /* Hero — Tablet 768px to 991px fix */
        @media (min-width: 768px) and (max-width: 991px) {
            .blog-page .hero {
                position: relative !important;
                overflow: hidden !important;
            }
    
            .blog-page .hero .hero-overlay {
                position: absolute !important;
                top: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                background-color: rgba(0, 56, 168, 0.55) !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 5 !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
    
            .blog-page .hero .hero-content {
                position: relative !important;
                z-index: 6 !important;
                width: 100% !important;
                max-width: 1000px !important;
            }
    
            .blog-page .hero .hero-content h1,
            .blog-page .hero .hero-content p {
                position: relative !important;
                z-index: 7 !important;
            }
        }
    
        /* Hero — up to 991px: spacing & text sizing */
        @media (max-width: 991px) {
            .blog-page .hero {
                min-height: 350px;
                padding: 70px 20px;
                background-size: cover;
                background-position: center;
            }
    
            .blog-page .hero-overlay {
                display: flex !important;
                position: static !important;
                inset: unset !important;
                background: none !important;
                width: 100% !important;
                height: auto !important;
            }
    
            .blog-page .hero-content {
                margin: 40px auto;
            }
    
            .blog-page .hero h1 {
                font-size: 38px;
                line-height: 1.3;
                letter-spacing: -0.2px;
            }
    
            .blog-page .hero p {
                font-size: 17px;
                line-height: 1.7;
                letter-spacing: 0.1px;
            }
        }
    
        /* Hero — Mobile (<=767px): solid gradient banner instead of image */
        @media (max-width: 767px) {
            .blog-page .hero {
                position: relative !important;
                min-height: 330px !important;
                height: 330px !important;
                padding: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                overflow: hidden !important;
                background: linear-gradient(135deg, #012f6e, #0147a6) !important;
            }
    
            .blog-page .hero .hero-overlay {
                background: transparent !important;
            }
    
            .blog-page .hero-content {
                width: 100%;
                max-width: 100%;
                margin: 0;
                padding: 20px;
                position: relative;
                z-index: 2;
            }
    
            .blog-page .hero h1 {
                margin: 0 !important;
                font-size: 38px;
                line-height: 1.35;
                letter-spacing: -0.1px;
            }
    
            .blog-page .hero p {
                font-size: 16px;
                line-height: 1.6;
                letter-spacing: 0.1px;
            }
        }
    
        /* Hero — Small mobile (<=480px) */
        @media (max-width: 480px) {
            .blog-page .hero p {
                font-size: 15px;
                line-height: 1.55;
            }
        }
    
    
        /* =========================================================
               BLOG CONTAINER (layout grid: main + sidebar)
            ========================================================= */
        .blog-page .blog-container {
            max-width: 1380px;
            margin: -40px auto 60px;
            padding: 0 15px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 30px;
            align-items: start;
            position: relative;
            z-index: 10;
        }
    
        @media (max-width: 991px) {
            .blog-page .blog-container {
                display: block;
                width: 100%;
                margin: 0;
                padding: 0px;
            }
        }
    
    
        /* =========================================================
               BLOG MAIN (white content card)
            ========================================================= */
        .blog-page .blog-main {
            background: #fff;
            padding: 45px 50px;
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
        }
    
        @media (max-width: 991px) {
            .blog-page .blog-main {
                padding: 30px;
                width: 100%;
            }
        }
    
        @media (max-width: 767px) {
            .blog-page .blog-main {
                padding: 18px 22px;
                border-radius: 10px;
            }
        }
    
        @media (max-width: 480px) {
            .blog-page .blog-main {
                padding: 16px 22px;
            }
        }
    
    
        /* =========================================================
               TYPOGRAPHY (p, ul/ol, li, h2, h3, strong)
            ========================================================= */
        .blog-page p {
            font-size: 18px;
            color: #1e232a;
            line-height: 1.9;
            letter-spacing: 0.1px;
            margin-bottom: 22px;
        }
    
        .blog-page ul,
        .blog-page ol {
            padding-left: 22px;
        }
    
        .blog-page li {
            font-size: 18px;
            color: #1e232a;
            line-height: 1.8;
            letter-spacing: 0.1px;
            margin-bottom: 10px;
        }
    
        .blog-page h2 {
            font-size: 34px;
            font-weight: 700;
            color: #1e232a;
            line-height: 1.6;
            letter-spacing: -0.2px;
            margin: 30px 0 20px;
            scroll-margin-top: 120px;
        }
    
        .blog-page h2:after {
            display: none;
        }
    
        .blog-page h3 {
            font-size: 24px;
            font-weight: 600;
            color: #1e232a;
            line-height: 1.4;
            letter-spacing: -0.1px;
            margin: 30px 0 15px;
        }
    
        .blog-page strong {
            color: #1e232a;
            font-weight: 600;
        }
    
        /* Typography — up to 991px */
        @media (max-width: 991px) {
    
            .blog-page p,
            .blog-page .blog-row p,
            .blog-page .faq-item p {
                font-size: 18px;
                line-height: 1.8;
                letter-spacing: 0.1px;
            }
    
            .blog-page li,
            .blog-page .blog-main ul li {
                font-size: 17px;
                line-height: 1.7;
                letter-spacing: 0.1px;
            }
    
            .blog-page h2 {
                font-size: 28px;
                line-height: 1.5;
                letter-spacing: -0.2px;
            }
    
            .blog-page h3,
            .blog-page .blog-row h3,
            .faq-item h3,
            .faq-item .faq-q,
            .benefits-box h3,
            .definition-card h3 {
                font-size: 22px;
                line-height: 1.35;
                letter-spacing: -0.1px;
            }
        }
    
        /* Typography — Mobile <=767px */
        @media (max-width: 767px) {
    
            .blog-page p,
            .blog-page .blog-row p,
            .blog-page .faq-item p {
                font-size: 18px;
                line-height: 1.75;
                letter-spacing: 0.1px;
            }
    
            .blog-page li,
            .blog-page .blog-main ul li {
                font-size: 16px;
                line-height: 1.65;
                letter-spacing: 0.1px;
                padding-left: 24px;
            }
    
            .blog-page h2 {
                font-size: 28px;
                line-height: 1.4;
                letter-spacing: -0.1px;
                margin: 24px 0 12px;
                text-align: center;
            }
    
            .blog-page h3,
            .blog-page .blog-row h3,
            .faq-item h3,
            .faq-item .faq-q,
            .benefits-box h3,
            .definition-card h3 {
                font-size: 22px;
                line-height: 1.3;
                letter-spacing: -0.1px;
                margin: 16px 0 8px;
            }
        }
    
        /* Typography — Small mobile <=480px */
        @media (max-width: 480px) {
    
            .blog-page p,
            .blog-page .blog-row p,
            .blog-page .faq-item p {
                font-size: 18px;
                line-height: 1.7;
            }
    
            .blog-page li,
            .blog-page .blog-main ul li {
                font-size: 15px;
                line-height: 1.6;
            }
    
            .blog-page h2 {
                font-size: 28px;
                line-height: 1.35;
            }
    
            .blog-page h3,
            .blog-page .blog-row h3,
            .faq-item h3,
            .faq-item .faq-q,
            .benefits-box h3,
            .definition-card h3 {
                font-size: 22px;
                line-height: 1.3;
            }
        }
    
    
        /* =========================================================
               TABLE OF CONTENTS (.toc)
            ========================================================= */
        .blog-page .toc {
            background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
            border: 1px solid #d7e7ff;
            border-left: 5px solid #0056d2;
            padding: 30px 30px 0px;
            border-radius: 14px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0, 86, 210, .08);
        }
    
        .blog-page .toc span {
            font-size: 22px;
            font-weight: 700;
            color: #1e232a;
            line-height: 1.4;
            letter-spacing: -0.1px;
            margin: 0 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
    
        .blog-page .toc ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
    
        .blog-page .toc li {
            position: relative;
            padding: 0px 0 5px 30px;
            transition: .3s;
        }
    
        .blog-page .toc li:last-child {
            border-bottom: none;
        }
    
        .blog-page .toc li:hover {
            color: #0056d2;
            padding-left: 38px;
        }
    
        .toc ul li a {
            display: block;
            text-decoration: none;
            color: #1e232a;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
            letter-spacing: 0.1px;
            transition: .3s;
        }
    
        .toc ul li a:hover {
            color: #0056d2;
        }
    
        .toc ul li.active a {
            color: #0056d2;
            font-weight: 700;
        }
    
        /* TOC — up to 991px */
        @media (max-width: 991px) {
            .blog-page .toc span {
                font-size: 20px;
                line-height: 1.4;
            }
    
            .toc ul li a {
                font-size: 18px;
                line-height: 1.5;
            }
        }
    
        /* TOC — Mobile <=767px */
        @media (max-width: 767px) {
            .blog-page .toc {
                padding: 16px 14px 8px;
                margin-bottom: 22px;
                border-radius: 10px;
            }
    
            .blog-page .toc span {
                font-size: 18px;
                line-height: 1.4;
                margin-bottom: 12px;
            }
    
            .blog-page .toc li {
                padding-left: 14px;
                padding-bottom: 4px;
            }
    
            .toc ul li a {
                font-size: 18px;
                line-height: 1.5;
            }
        }
    
        /* TOC — Small mobile <=480px */
        @media (max-width: 480px) {
            .blog-page .toc span {
                font-size: 17px;
            }
    
            .toc ul li a {
                font-size: 17px;
            }
        }
    
    
        /* =========================================================
               MAIN CONTENT BULLET LIST (.blog-main ul li)
            ========================================================= */
        .blog-page .blog-main ul {
            list-style: none;
            padding-left: 0;
        }
    
        .blog-page .blog-main ul li {
            position: relative;
            padding-left: 32px;
            margin-left: 12px;
            margin-bottom: 16px;
            font-size: 18px;
            line-height: 1.8;
            letter-spacing: 0.1px;
            color: #1e232a;
        }
    
        .blog-page .blog-main ul li:before {
            content: "\00BB";
            position: absolute;
            left: 0;
            top: -15px;
            color: #ff6b00;
            font-size: 30px;
            font-weight: 700;
        }
    
    
        /* =========================================================
               TABLES
            ========================================================= */
        .blog-page .table-wrapper {
            background: #e4eaf5;
            border: 1px solid #cbd8ec;
            border-radius: 14px;
            margin: 35px 0;
            box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
        }
    
        .blog-page .table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
            overflow: hidden;
            border-radius: 10px;
            background: #fff;
        }
    
        .blog-page .table th {
            background: #0056d2;
            color: #fff;
            padding: 16px;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
            letter-spacing: 0.1px;
        }
    
        .blog-page .table td {
            padding: 15px;
            font-size: 17px;
            color: #1e232a;
            line-height: 1.7;
            letter-spacing: 0.1px;
            border-bottom: 1px solid #dddddd;
            vertical-align: top;
            background: #eef2fb;
        }
    
        /* 1st & 3rd data row white background */
        .blog-page .table tr:nth-child(2) td,
        .blog-page .table tr:nth-child(4) td {
            background: #ffffff !important;
        }
    
        /* 2nd data row light blue background */
        .blog-page .table tr:nth-child(3) td {
            background: #eef2fb !important;
        }
    
        /* Table — up to 991px */
        @media (max-width: 991px) {
            .blog-page .table th {
                font-size: 16px;
                line-height: 1.4;
            }
    
            .blog-page .table td {
                font-size: 15px;
                line-height: 1.6;
            }
    
            .table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
    
            .table {
                min-width: 500px;
            }
        }
    
        /* Table — Mobile <=767px */
        @media (max-width: 767px) {
            .blog-page .table th {
                font-size: 14px;
                line-height: 1.4;
            }
    
            .blog-page .table td {
                font-size: 14px;
                line-height: 1.55;
            }
        }
    
        /* Table — Small mobile <=480px */
        @media (max-width: 480px) {
            .blog-page .table th {
                font-size: 13px;
            }
    
            .blog-page .table td {
                font-size: 13px;
                line-height: 1.5;
            }
        }
    
    
        /* =========================================================
               IN-CONTENT IMAGES
            ========================================================= */
        .blog-page img {
            width: 100%;
            max-width: 810px;
            height: auto;
            object-fit: cover;
            margin: 30px auto;
            display: block;
            border-radius: 8px;
        }
    
        /* In-content images — up to 991px (tablet): scale down but stay visible */
        @media (max-width: 991px) {
            .blog-page .blog-main img {
                max-width: 100%;
                margin: 20px auto;
            }
        }
    
        /* In-content images — Mobile <=767px: hide (per design, mobile shows text only) */
        /* @media (max-width: 767px) {
                .blog-page .blog-main img {
                    display: none !important;
                }
            } */
    
    
        /* =========================================================
               BLOG ROW (section content blocks: h3 + p + h4)
            ========================================================= */
        .blog-page .blog-row {
            margin-bottom: 18px;
        }
    
        .blog-page .blog-row h3 {
            display: inline-block !important;
            font-size: 24px;
            font-weight: 700;
            color: #1e232a;
            line-height: 1.4;
            letter-spacing: -0.1px;
            margin: 0;
            margin-bottom: 10px;
            text-align: center;
        }
    
        .blog-page .blog-row p {
            display: inline-block !important;
            margin: 0;
            font-size: 18px;
            line-height: 1.9;
            letter-spacing: 0.1px;
            color: #1e232a;
        }
    
        .blog-row h4 {
            margin-top: 30px !important;
            font-size: 20px !important;
            line-height: 1.5 !important;
            letter-spacing: -0.1px !important;
            margin-bottom: 15px !important;
        }
    
        /* Blog row — up to 991px */
        @media (max-width: 991px) {
            .blog-row h4 {
                font-size: 18px !important;
                line-height: 1.4 !important;
            }
        }
    
        /* Blog row — Mobile <=767px */
        @media (max-width: 767px) {
            .blog-row h4 {
                font-size: 17px !important;
                line-height: 1.4 !important;
            }
        }
    
    
        /* =========================================================
               STAT CALLOUT
            ========================================================= */
        .stat-callout {
            background: linear-gradient(135deg, #0056d2, #003fa3);
            border-radius: 12px;
            padding: 24px 30px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }
    
        .stat-callout .stat-icon {
            font-size: 36px;
            flex-shrink: 0;
        }
    
        .stat-callout p {
            color: #fff;
            margin: 0;
            font-size: 18px;
            line-height: 1.7;
            letter-spacing: 0.1px;
        }
    
        .stat-callout strong {
            color: #FFBB01;
            font-size: 20px;
            letter-spacing: 0.1px;
        }
    
        /* Stat callout — up to 991px */
        @media (max-width: 991px) {
            .stat-callout {
                flex-direction: column;
                gap: 12px;
                padding: 20px;
            }
    
            .stat-callout p {
                font-size: 17px;
                line-height: 1.6;
            }
    
            .stat-callout strong {
                font-size: 18px;
            }
        }
    
        /* Stat callout — Mobile <=767px */
        @media (max-width: 767px) {
            .stat-callout {
                padding: 16px;
            }
    
            .stat-callout p {
                font-size: 16px;
                line-height: 1.55;
            }
    
            .stat-callout strong {
                font-size: 17px;
            }
        }
    
    
        /* =========================================================
               BENEFITS BOX
            ========================================================= */
        .benefits-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
            border: 1px solid #c5dbff;
            border-left: 5px solid #0056d2;
            border-radius: 12px;
            padding: 28px 32px;
            margin: 30px 0;
        }
    
        .benefits-box h3 {
            margin-top: 0;
            color: #0056d2;
            font-size: 20px;
            line-height: 1.4;
            letter-spacing: -0.1px;
        }
    
        .benefits-box ul {
            margin-bottom: 0;
        }
    
        /* Benefits box — Mobile <=767px */
        @media (max-width: 767px) {
            .benefits-box {
                padding: 18px 16px;
            }
        }
    
    
        /* =========================================================
               DEFINITION GRID / CARD
            ========================================================= */
        .definition-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
    
        .definition-card {
            background: #f8fbff;
            border: 1px solid #dce8f8;
            border-top: 4px solid #0056d2;
            border-radius: 12px;
            padding: 24px 26px;
        }
    
        .definition-card h3 {
            margin-top: 0;
            font-size: 20px;
            line-height: 1.4;
            letter-spacing: -0.1px;
            color: #0056d2;
        }
    
        .definition-card ul {
            margin-bottom: 0;
        }
    
        /* Definition grid/card — up to 991px */
        @media (max-width: 991px) {
            .definition-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
    
        /* Definition grid/card — Mobile <=767px */
        @media (max-width: 767px) {
            .definition-card {
                padding: 18px 16px;
            }
        }
    
    
        /* =========================================================
               SIDEBAR
            ========================================================= */
        .blog-page .blog-sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
    
        /* Sidebar — up to 991px */
        @media (max-width: 991px) {
            .blog-page .blog-sidebar {
                position: static !important;
                width: 100%;
                padding: 0 22px;
                margin-top: 20px;
            }
        }
    
    
        /* =========================================================
               SIDEBAR CTA CARD + BUTTONS
            ========================================================= */
        .blog-cta {
            background: linear-gradient(135deg, #0056d2, #003366);
            border-radius: 16px;
            padding: 10px 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
        }
    
        .cta-card {
            padding: 15px 0;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, .15);
        }
    
        .cta-card:last-child {
            border-bottom: none;
            padding: 20px 0;
        }
    
        .cta-card .cta-title {
            color: #fff;
            font-size: 22px;
            line-height: 1.5;
            letter-spacing: -0.1px;
            margin: 12px 0;
            text-align: center;
            font-weight: 600;
        }
    
        .cta-card p {
            color: rgba(255, 255, 255, .9);
            font-size: 17px;
            margin: 0 0 18px;
            line-height: 1.6;
            letter-spacing: 0.1px;
            text-align: center;
        }
    
        .cta-main-btn {
            display: block;
            width: fit-content;
            margin: 10px auto;
            text-align: center;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.2px;
            transition: .3s;
        }
    
        .cta-main-btn:hover {
            transform: translateY(-2px);
        }
    
        .processing-service-btn {
            background: linear-gradient(135deg, #FFBB01, #f0b001);
            color: #000 !important;
        }
    
        .case-study-btn {
            background: linear-gradient(135deg, #00d26a, #00a651);
            color: #fff !important;
        }
    
        .pricing-btn {
            background: linear-gradient(135deg, #D81059, #c40e51);
            color: #fff !important;
        }
    
        .quote-btn {
            background: linear-gradient(135deg, #ff9f1a, #ff6b00);
            color: #000 !important;
        }
    
        /* Sidebar CTA — up to 991px */
        @media (max-width: 991px) {
            .cta-card .cta-title {
                font-size: 18px;
                line-height: 1.4;
            }
    
            .cta-card p {
                font-size: 15px;
                line-height: 1.5;
            }
        }
    
        /* Sidebar CTA — Mobile <=767px */
        @media (max-width: 767px) {
            .blog-cta {
                border-radius: 12px;
                padding: 16px 14px;
                width: 100%;
            }
    
            .cta-card {
                padding: 12px 0;
            }
    
            .cta-card .cta-title {
                font-size: 16px;
                line-height: 1.4;
                margin-bottom: 6px;
            }
    
            .cta-card p {
                font-size: 14px;
                line-height: 1.5;
            }
    
            .cta-main-btn {
                padding: 9px 14px;
                width: 90%;
                max-width: 280px;
            }
        }
    
    
        /* =========================================================
               AUTHOR BOX
            ========================================================= */
        .author-box {
            margin-top: 60px;
            padding: 30px;
            background: #f8fbff;
            border: 1px solid #dce8f8;
            border-radius: 14px;
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
    
        .author-content {
            flex: 1;
        }
    
        .author-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #000000;
            margin-bottom: 10px;
        }
    
        .author-content h4 {
            margin: 0 0 12px;
            color: #12161a;
            font-size: 24px;
            line-height: 1.4;
            letter-spacing: -0.1px;
            font-weight: 700;
        }
    
        .author-content p {
            font-size: 17px;
            line-height: 1.8;
            letter-spacing: 0.1px;
        }
    
        /* Author box — up to 991px */
        @media (max-width: 991px) {
            .author-content h4 {
                font-size: 20px;
            }
    
            .author-content p {
                font-size: 16px;
                line-height: 1.7;
            }
        }
    
        /* Author box — Mobile <=767px */
        @media (max-width: 767px) {
            .author-box {
                flex-direction: column;
                text-align: center;
                padding: 16px 14px;
                gap: 12px;
                margin-top: 28px;
                border-radius: 10px;
            }
    
            .author-content h4 {
                font-size: 19px;
            }
    
            .author-content p {
                font-size: 17px;
                line-height: 1.65;
                margin-bottom: 0;
            }
        }
    
    
        /* =========================================================
               RELATED POSTS
            ========================================================= */
        .related-posts {
            padding: 15px;
            background: #f8fbff;
            border: 1px solid #dce8f8;
            border-radius: 14px;
            margin-top: 50px;
        }
    
        .related-posts-divider {
            border: none;
            border-top: 1px solid #a8b1e3;
            margin: 30px 0;
        }
    
        .related-posts h2 {
            display: block;
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #1e232a;
            line-height: 1.4;
            letter-spacing: -0.2px;
            margin: 15px 0 20px;
        }
    
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 15px 0 40px;
        }
    
        .related-card {
            background: #fff;
            border: 1px solid #e5edf8;
            border-radius: 12px;
            overflow: hidden;
            transition: .3s;
        }
    
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
        }
    
        .related-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            margin: 0;
            border-radius: 0;
        }
    
        .related-content {
            padding: 18px;
            display: flex;
            flex-direction: column;
        }
    
        .related-content .related-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.5;
            letter-spacing: -0.1px;
            color: #1e232a;
            margin: 10px 0 15px;
        }
    
        .blog-read-more {
            margin-top: auto;
            align-self: flex-end;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.1px;
            color: #0056d2;
            text-decoration: none;
        }
    
        .blog-read-more:hover {
            color: #ff7a00;
        }
    
        .recent-title {
            text-align: center;
            font-size: 34px;
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: -0.2px;
            color: #1e232a;
        }
    
        /* Related posts — up to 991px */
        @media (max-width: 991px) {
    
            .related-posts h2,
            .recent-title {
                font-size: 28px;
                line-height: 1.5;
                letter-spacing: -0.2px;
            }
    
            .related-content .related-title {
                font-size: 20px;
                line-height: 1.4;
            }
    
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }
    
        /* Related posts — Mobile <=767px */
        @media (max-width: 767px) {
            .related-posts h2 {
                font-size: 28px;
                line-height: 1.4;
                text-align: center;
            }
    
            .related-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
    
            .related-posts {
                padding: 12px;
                margin-top: 28px;
            }
    
            .related-card img {
                height: 160px;
            }
    
            .related-content {
                padding: 14px;
            }
    
            .related-content .related-title {
                font-size: 20px;
                line-height: 1.4;
                margin: 6px 0 10px;
            }
    
            .recent-title {
                font-size: 24px;
                line-height: 1.4;
            }
        }
    
        /* Related posts — Small mobile <=480px */
        @media (max-width: 480px) {
            .recent-title {
                font-size: 20px;
            }
        }
    
    
        /* =========================================================
               FAQ
            ========================================================= */
        .faq-item {
            margin-bottom: 28px;
        }
    
        .faq-ans {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin: 0 0 10px;
        }
    
        .faq-question {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin: 0 0 10px;
        }
    
        .faq-item .faq-q {
            flex: none;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: -0.1px;
            color: #1e232a;
        }
    
        .faq-item h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1e232a;
            margin: 0;
            line-height: 1.4;
            letter-spacing: -0.1px;
        }
    
        .faq-item p {
            margin: 0;
            font-size: 18px;
            line-height: 1.8;
            letter-spacing: 0.1px;
        }