    
        /* ============================================ */
        /* AEO SERVICES - COMPLETE CSS                   */
        /* ============================================ */

        /* -------- SEO SERVICES SECTION (HERO) -------- */
        .seo-services-section {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .seo-services-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
            border-radius: 50%;
            pointer-events: none;
        }

        .seo-services-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
            border-radius: 50%;
            pointer-events: none;
        }

        .seo-services-wrapper {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .seo-services-image {
            flex: 1;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .seo-services-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 0.5s;
            border-radius: 24px;
            border: 3px solid #d4a017;
        }

        .seo-services-image:hover img {
            transform: scale(1.03);
        }

        .seo-services-badge {
            position: absolute;
            bottom: 25px;
            left: 25px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .seo-services-badge span {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        .seo-services-badge span::before {
            content: '✦ ';
            color: #d4a017;
        }

        .seo-services-content {
            flex: 1.2;
            padding: 10px 0;
        }

        .seo-services-content .section-head {
            margin-bottom: 18px;
        }

        .seo-services-content .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .seo-services-content .section-head h1 {
            text-align: justify;
            font-size: 45px;
            letter-spacing: -2px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .seo-services-content .section-head h1 span {
            color: #d4a017;
        }

        .seo-services-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 12px;
        }

        .seo-services-desc.last-desc {
            margin-bottom: 0;
        }

        .seo-services-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 22px;
        }

        .seo-services-btn-primary {
            display: inline-block;
            background: #d4a017;
            color: #000;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: 0.3s;
            border: 2px solid #d4a017;
        }

        .seo-services-btn-primary:hover {
            background: #000;
            color: #d4a017;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        @media (max-width: 1024px) {
            .seo-services-wrapper {
                gap: 40px;
            }
        }

        @media (max-width: 991px) {
            .seo-services-section {
                padding: 60px 0;
            }

            .seo-services-wrapper {
                flex-direction: column;
                gap: 35px;
            }

            .seo-services-image {
                width: 100%;
            }

            .seo-services-content {
                padding: 0;
                width: 100%;
            }

            .seo-services-content .section-head h1 {
                font-size: 26px;
            }

            .seo-services-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .seo-services-content .section-head h1 {
                font-size: 22px;
            }

            .seo-services-desc {
                font-size: 14px;
            }

            .seo-services-badge {
                bottom: 18px;
                left: 18px;
                padding: 10px 18px;
            }

            .seo-services-badge span {
                font-size: 12px;
            }

            .seo-services-buttons {
                flex-direction: column;
                width: 100%;
            }

            .seo-services-btn-primary {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .seo-services-section {
                padding: 40px 0;
            }

            .seo-services-content .section-head .sm-title {
                font-size: 11px;
                padding: 4px 14px;
            }

            .seo-services-content .section-head h1 {
                font-size: 20px;
            }

            .seo-services-desc {
                font-size: 13px;
                line-height: 1.7;
            }

            .seo-services-badge {
                bottom: 12px;
                left: 12px;
                padding: 8px 14px;
            }

            .seo-services-badge span {
                font-size: 11px;
            }

            .seo-services-btn-primary {
                font-size: 13px;
                padding: 10px 16px;
            }
        }

        @media (max-width: 380px) {
            .seo-services-content .section-head h1 {
                font-size: 18px;
            }

            .seo-services-desc {
                font-size: 12px;
            }
        }

        /* ============================================================
   WHAT IS AEO SECTION
   LEFT CONTENT + RIGHT IMAGE
   ============================================================ */

        .seo-matters-section {
            background: #000000;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        /* Background glow - SAME COLORS */
        .seo-matters-section::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle,
                    rgba(212, 175, 55, 0.03),
                    transparent);
            border-radius: 50%;
            pointer-events: none;
        }

        .seo-matters-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle,
                    rgba(212, 175, 55, 0.02),
                    transparent);
            border-radius: 50%;
            pointer-events: none;
        }

        /* ============================================================
   MAIN TWO COLUMN LAYOUT
   ============================================================ */

        .seo-matters-wrapper {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            align-items: center;
            gap: 65px;
            position: relative;
            z-index: 2;
        }

        /* ============================================================
   LEFT CONTENT
   ============================================================ */

        .seo-matters-content {
            width: 100%;
        }

        /* Heading */

        .seo-matters-section .section-head {
            text-align: left;
            margin-bottom: 28px;
        }

        .seo-matters-section .section-head .sm-title {
            display: inline-block;
            margin-left: 50px;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .seo-matters-section .section-head h2 {
            font-size: 38px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .seo-matters-section .section-head h2 span {
            color: #d4a017;
        }

        /* ============================================================
   PARAGRAPHS
   ============================================================ */

        .seo-matters-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.85;
            text-align: justify;
            margin: 0 0 18px;
        }

        .seo-matters-desc.last-desc {
            margin-top: 22px;
            margin-bottom: 0;
        }

        /* ============================================================
   HIGHLIGHT BOX
   ============================================================ */

        .seo-highlight-box {
            background: rgba(212, 175, 55, 0.06);
            border-left: 4px solid #d4a017;
            padding: 22px 26px;
            border-radius: 10px;
            margin: 28px 0;
        }

        .seo-highlight-box p {
            color: #d9d9d9;
            font-size: 14px;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 0;
        }

        /* ============================================================
   RIGHT IMAGE
   ============================================================ */

        .seo-matters-image {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .seo-matters-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            display: block;
            border-radius: 18px;
            object-fit: cover;
            border: 2px solid goldenrod;
        }

        /* ============================================================
   IMAGE FRAME
   ============================================================ */

        .seo-matters-image::before {
            content: '';
            position: absolute;
            width: 85%;
            height: 85%;
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 22px;
            z-index: -1;
            transform: translate(18px, 18px);
        }

        /* ============================================================
   TABLET
   ============================================================ */

        @media (max-width: 991px) {

            .seo-matters-section {
                padding: 65px 0;
            }

            .seo-matters-wrapper {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .seo-matters-content {
                order: 1;
            }

            .seo-matters-image {
                order: 2;
            }

            .seo-matters-section .section-head {
                text-align: left;
            }

            .seo-matters-section .section-head h2 {
                font-size: 30px;
            }

            .seo-matters-desc {
                font-size: 14px;
            }

            .seo-matters-image img {
                max-width: 500px;
            }
        }

        /* ============================================================
   MOBILE
   ============================================================ */

        @media (max-width: 768px) {

            .seo-matters-section {
                padding: 55px 0;
            }

            .seo-matters-wrapper {
                gap: 35px;
            }

            .seo-matters-section .section-head h2 {
                font-size: 26px;
            }

            .seo-matters-section .section-head .sm-title {
                font-size: 12px;
                padding: 5px 16px;
            }

            .seo-matters-desc {
                font-size: 14px;
                line-height: 1.75;
            }

            .seo-highlight-box {
                padding: 18px 20px;
                margin: 22px 0;
            }

            .seo-highlight-box p {
                font-size: 13px;
            }

            .seo-matters-image img {
                max-width: 100%;
                border-radius: 15px;
            }
        }

        /* ============================================================
   SMALL MOBILE
   ============================================================ */

        @media (max-width: 480px) {

            .seo-matters-section {
                padding: 45px 0;
            }

            .seo-matters-section .section-head {
                margin-bottom: 22px;
            }

            .seo-matters-section .section-head .sm-title {
                font-size: 11px;
                padding: 4px 14px;
            }

            .seo-matters-section .section-head h2 {
                font-size: 22px;
            }

            .seo-matters-desc {
                font-size: 13px;
                line-height: 1.7;
            }

            .seo-highlight-box {
                padding: 15px 16px;
            }

            .seo-highlight-box p {
                font-size: 12px;
                line-height: 1.7;
            }

            .seo-matters-image::before {
                transform: translate(10px, 10px);
            }
        }

        ------------------------------------------------

        /* -------- COMPARISON SECTION (WHITE BG) -------- */
        .comparison-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .comparison-section.design-1::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
            border-radius: 50%;
            pointer-events: none;
        }

        .comparison-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .comparison-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .comparison-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .comparison-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .comparison-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .comparison-table-wrap {
            max-width: 1000px;
            margin: 30px auto 0;
            overflow-x: auto;
            border-radius: 18px;
            border: 1px solid #eee2c9;
        }

        table.comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
        }

        table.comparison-table thead th {
            background: #1a1a1a;
            color: #fff;
            padding: 16px 18px;
            font-size: 13px;
            text-align: left;
        }

        table.comparison-table thead th.gold-head {
            background: #d4a017;
            color: #000;
        }

        table.comparison-table td {
            padding: 15px 18px;
            font-size: 13.5px;
            color: #333;
            border-bottom: 1px solid #f0e5c0;
            vertical-align: top;
        }

        table.comparison-table tr:last-child td {
            border-bottom: none;
        }

        table.comparison-table td.row-label {
            font-weight: 700;
            color: #222;
            background: #fafafa;
        }

        table.comparison-table td.gold-cell {
            background: #FDE087;
            font-weight: 500;
            color: #333;
        }

        @media (max-width: 768px) {
            .comparison-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .comparison-desc {
                font-size: 14px;
            }

            table.comparison-table {
                font-size: 12.5px;
            }

            table.comparison-table thead th,
            table.comparison-table td {
                padding: 12px 14px;
            }
        }

        @media (max-width: 480px) {
            .comparison-section.design-1 {
                padding: 40px 0;
            }

            .comparison-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .comparison-desc {
                font-size: 13px;
            }

            table.comparison-table {
                font-size: 11px;
            }

            table.comparison-table thead th,
            table.comparison-table td {
                padding: 10px 10px;
            }
        }

        /* -------- NOW SECTION (BLACK BG) -------- */
        .now-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .now-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .now-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .now-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .now-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .now-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .now-timeline {
            max-width: 900px;
            margin: 30px auto 0;
        }

        .now-timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 36px;
        }

        .now-timeline-item:last-child {
            margin-bottom: 0;
        }

        .now-timeline-dot {
            position: absolute;
            left: 0;
            top: 4px;
            width: 34px;
            height: 34px;
            background: #d4a017;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #000;
            z-index: 2;
            border: 3px solid #000;
            box-shadow: 0 0 0 3px #d4a017;
        }

        .now-timeline-item:hover .now-timeline-dot {
            transform: scale(1.15);
            background: #000;
            color: #d4a017;
        }

        .now-timeline-content {
            background: #111;
            border: 2px solid goldenrod;
            border-radius: 16px;
            padding: 22px 26px;
            transition: 0.3s;
        }

        .now-timeline-content:hover {
            border-color: #d4a017;
            transform: translateX(6px);
        }

        .now-timeline-tag {
            display: inline-block;
            color: #d4a017;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .now-timeline-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .now-timeline-content p {
            color: #bdbdbd;
            font-size: 14px;
            line-height: 1.8;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .now-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .now-desc {
                font-size: 14px;
            }

            .now-timeline-item {
                padding-left: 40px;
            }

            .now-timeline-dot {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .now-timeline-content {
                padding: 18px 20px;
            }

            .now-timeline-content h3 {
                font-size: 17px;
            }
        }

        @media (max-width: 480px) {
            .now-section.design-1 {
                padding: 40px 0;
            }

            .now-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .now-desc {
                font-size: 13px;
            }

            .now-timeline-item {
                padding-left: 30px;
            }

            .now-timeline-dot {
                width: 24px;
                height: 24px;
                font-size: 10px;
                left: -2px;
            }

            .now-timeline-content {
                padding: 14px 16px;
            }

            .now-timeline-content h3 {
                font-size: 15px;
            }

            .now-timeline-content p {
                font-size: 13px;
            }
        }

        /* -------- DECIDE SECTION (WHITE BG) -------- */
        .decide-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .decide-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .decide-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .decide-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .decide-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .decide-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .decide-grid {
            max-width: 1100px;
            margin: 30px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .decide-card {
            background: #FDE087;
            border: 2px solid goldenrod;
            border-radius: 18px;
            padding: 28px 24px;
            transition: 0.35s;
        }

        .decide-card:hover {
            transform: translateY(-6px);
            border-color: #d4a017;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
        }

        .decide-icon {
            width: 52px;
            height: 52px;
            background: rgba(212, 175, 55, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #d4a017;
            margin-bottom: 16px;
            transition: 0.3s;
        }

        .decide-card:hover .decide-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        .decide-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
        }

        .decide-card p {
            color: #555;
            font-size: 13.5px;
            line-height: 1.75;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .decide-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .decide-grid {
                grid-template-columns: 1fr;
            }

            .decide-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .decide-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .decide-section.design-1 {
                padding: 40px 0;
            }

            .decide-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .decide-desc {
                font-size: 13px;
            }

            .decide-card {
                padding: 20px 16px;
            }

            .decide-card p {
                font-size: 13px;
            }
        }

        /* -------- PLATFORM SECTION (BLACK BG) -------- */
        .platform-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .platform-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .platform-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .platform-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .platform-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .platform-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .platform-grid {
            max-width: 1100px;
            margin: 30px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .platform-card {
            background: #111;
            border: 2px solid goldenrod;
            border-radius: 18px;
            padding: 28px 22px;
            text-align: center;
            transition: 0.3s;
        }

        .platform-card:hover {
            transform: translateY(-6px);
            border-color: #d4a017;
        }

        .platform-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #d4a017;
            transition: 0.3s;
        }

        .platform-card:hover .platform-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        .platform-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .platform-card p {
            color: #bdbdbd;
            font-size: 13.5px;
            line-height: 1.7;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .platform-grid {
                grid-template-columns: 1fr;
            }

            .platform-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .platform-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .platform-section.design-1 {
                padding: 40px 0;
            }

            .platform-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .platform-desc {
                font-size: 13px;
            }
        }

        /* -------- READY SECTION (WHITE BG) -------- */
        .ready-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .ready-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .ready-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .ready-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .ready-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .ready-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .ready-numbered-list {
            max-width: 950px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .ready-numbered-item {
            display: flex;
            align-items: flex-start;
            gap: 22px;
            background: #FDE087;
            border-radius: 16px;
            padding: 22px 26px;
            border: 2px solid goldenrod;
            transition: 0.3s;
        }

        .ready-numbered-item:hover {
            border-color: #d4a017;
            transform: translateX(6px);
        }

        .ready-num {
            flex-shrink: 0;
            font-size: 26px;
            font-weight: 800;
            color: #d4a017;
            line-height: 1;
            min-width: 48px;
        }

        .ready-numbered-item h4 {
            font-size: 16.5px;
            font-weight: 700;
            color: #222;
            margin-bottom: 4px;
        }

        .ready-numbered-item p {
            color: #555;
            font-size: 13.5px;
            line-height: 1.75;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .ready-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .ready-desc {
                font-size: 14px;
            }

            .ready-numbered-item {
                flex-direction: column;
                gap: 10px;
                padding: 18px 18px;
            }
        }

        @media (max-width: 480px) {
            .ready-section.design-1 {
                padding: 40px 0;
            }

            .ready-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .ready-desc {
                font-size: 13px;
            }

            .ready-numbered-item {
                padding: 14px 14px;
            }

            .ready-numbered-item h4 {
                font-size: 15px;
            }

            .ready-numbered-item p {
                font-size: 13px;
            }
        }

        /* -------- TECH SECTION (BLACK BG) -------- */
        .tech-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .tech-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .tech-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .tech-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .tech-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .tech-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .tech-grid {
            max-width: 950px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .tech-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 18px 22px;
            border: 2px solid goldenrod;
            transition: 0.3s;
            border-radius: 16px;
        }

        .tech-item:hover {
            border-left-color: #d4a017;
            transform: translateX(8px);
        }

        .tech-icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            background: rgba(212, 175, 55, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            color: #d4a017;
            transition: 0.3s;
        }

        .tech-item:hover .tech-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        .tech-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .tech-item p {
            color: #bdbdbd;
            font-size: 13.5px;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .tech-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .tech-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .tech-section.design-1 {
                padding: 40px 0;
            }

            .tech-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .tech-desc {
                font-size: 13px;
            }

            .tech-item {
                padding: 14px 16px;
                gap: 14px;
            }

            .tech-item h4 {
                font-size: 15px;
            }

            .tech-item p {
                font-size: 13px;
            }
        }

        /* -------- AEO SERVICES SECTION (WHITE BG) -------- */
        .aeo-services-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .aeo-services-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .aeo-services-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .aeo-services-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .aeo-services-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .aeo-services-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .aeo-services-list {
            max-width: 950px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .aeo-services-block {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            background: #FDE087;
            border: 2px solid goldenrod;
            border-radius: 18px;
            padding: 24px 28px;
            transition: 0.3s;
        }

        .aeo-services-block:hover {
            border-color: #d4a017;
            box-shadow: 0 12px 34px rgba(212, 175, 55, 0.08);
            transform: translateY(-3px);
        }

        .aeo-services-num {
            flex-shrink: 0;
            font-size: 30px;
            font-weight: 800;
            color: goldenrod;
            line-height: 1;
            min-width: 50px;
        }

        .aeo-services-body h3 {
            font-size: 18.5px;
            font-weight: 700;
            color: #222;
            margin-bottom: 6px;
        }

        .aeo-services-body p {
            color: #555;
            font-size: 14px;
            line-height: 1.8;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .aeo-services-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .aeo-services-desc {
                font-size: 14px;
            }

            .aeo-services-block {
                flex-direction: column;
                gap: 10px;
                padding: 18px 18px;
            }
        }

        @media (max-width: 480px) {
            .aeo-services-section.design-1 {
                padding: 40px 0;
            }

            .aeo-services-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .aeo-services-desc {
                font-size: 13px;
            }

            .aeo-services-block {
                padding: 14px 14px;
            }

            .aeo-services-body h3 {
                font-size: 16px;
            }

            .aeo-services-body p {
                font-size: 13px;
            }
        }

        /* -------- PROCESS SECTION (BLACK BG) -------- */
        .process-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .process-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .process-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .process-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .process-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .process-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .process-timeline {
            max-width: 900px;
            margin: 30px auto 0;
        }

        .process-timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 30px;
        }

        .process-timeline-item:last-child {
            margin-bottom: 0;
        }

        .process-timeline-dot {
            position: absolute;
            left: 0;
            top: 4px;
            width: 34px;
            height: 34px;
            background: #d4a017;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: #000;
            z-index: 2;
            border: 3px solid #000;
            box-shadow: 0 0 0 3px #d4a017;
        }

        .process-timeline-item:hover .process-timeline-dot {
            transform: scale(1.15);
            background: #000;
            color: #d4a017;
        }

        .process-timeline-content {
            background: #111;
            border: 2px solid goldenrod;
            border-radius: 16px;
            padding: 20px 24px;
            transition: 0.3s;
        }

        .process-timeline-content:hover {
            border-color: #d4a017;
            transform: translateX(6px);
        }

        .process-timeline-tag {
            display: inline-block;
            color: #d4a017;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }

        .process-timeline-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .process-timeline-content p {
            color: #bdbdbd;
            font-size: 14px;
            line-height: 1.8;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .process-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .process-desc {
                font-size: 14px;
            }

            .process-timeline-item {
                padding-left: 40px;
            }

            .process-timeline-dot {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }

            .process-timeline-content {
                padding: 16px 18px;
            }

            .process-timeline-content h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .process-section.design-1 {
                padding: 40px 0;
            }

            .process-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .process-desc {
                font-size: 13px;
            }

            .process-timeline-item {
                padding-left: 30px;
            }

            .process-timeline-dot {
                width: 24px;
                height: 24px;
                font-size: 10px;
                left: -2px;
            }

            .process-timeline-content {
                padding: 14px 14px;
            }

            .process-timeline-content h3 {
                font-size: 15px;
            }

            .process-timeline-content p {
                font-size: 13px;
            }
        }

        /* -------- SCOPE SECTION (WHITE BG) -------- */
        .scope-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .scope-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .scope-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .scope-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .scope-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .scope-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .scope-grid {
            max-width: 1100px;
            margin: 30px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .scope-card {
            background: #FDE087;
            border: 2px solid goldenrod;
            border-radius: 16px;
            padding: 24px 20px;
            transition: 0.3s;
        }

        .scope-card:hover {
            transform: translateY(-6px);
            border-color: #d4a017;
        }

        .scope-weeks {
            display: inline-block;
            background: #d4a017;
            color: #000;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .scope-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #222;
            margin-bottom: 6px;
        }

        .scope-card p {
            color: #555;
            font-size: 13px;
            line-height: 1.7;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .scope-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .scope-grid {
                grid-template-columns: 1fr;
            }

            .scope-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .scope-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .scope-section.design-1 {
                padding: 40px 0;
            }

            .scope-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .scope-desc {
                font-size: 13px;
            }

            .scope-card {
                padding: 18px 16px;
            }
        }

        /* -------- LOCAL SECTION (BLACK BG) -------- */
        .local-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .local-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .local-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .local-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .local-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .local-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        @media (max-width: 768px) {
            .local-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .local-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .local-section.design-1 {
                padding: 40px 0;
            }

            .local-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .local-desc {
                font-size: 13px;
            }
        }

        /* -------- INDUSTRIES SERVE SECTION (WHITE BG) -------- */
        .industries-serve-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .industries-serve-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 15px;
        }

        .industries-serve-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .industries-serve-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .industries-serve-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .industries-serve-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .industries-serve-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            max-width: 1150px;
            margin: 30px auto 0;
        }

        .industries-serve-card {
            height: 100%;
            padding: 24px 20px;
            background: #FDE087;
            border: 2px solid goldenrod;
            border-radius: 16px;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .industries-serve-card:hover {
            transform: translateY(-6px);
            border-color: #d4a017;
        }

        .industries-serve-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 14px;
            background: rgba(212, 175, 55, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            color: #d4a017;
            transition: 0.3s;
        }

        .industries-serve-card:hover .industries-serve-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        .industries-serve-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: #222;
            margin-bottom: 4px;
        }

        .industries-serve-card .ind-use {
            color: #d4a017;
            font-size: 11.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
            display: block;
        }

        .industries-serve-card p {
            color: #666;
            font-size: 13px;
            line-height: 1.6;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 1100px) {
            .industries-serve-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .industries-serve-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .industries-serve-grid {
                grid-template-columns: 1fr;
            }

            .industries-serve-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .industries-serve-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .industries-serve-section.design-1 {
                padding: 40px 0;
            }

            .industries-serve-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .industries-serve-desc {
                font-size: 13px;
            }

            .industries-serve-card {
                padding: 18px 14px;
            }
        }

        /* -------- PAGETYPES SECTION (BLACK BG) -------- */
        .pagetypes-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .pagetypes-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .pagetypes-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .pagetypes-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .pagetypes-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .pagetypes-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .pagetypes-list {
            max-width: 950px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pagetypes-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 18px 22px;
            border: 2px solid goldenrod;
            transition: 0.3s;
            border-radius: 16px;
        }

        .pagetypes-item:hover {
            border-left-color: #d4a017;
            transform: translateX(8px);
        }

        .pagetypes-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            background: rgba(212, 175, 55, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            color: #d4a017;
            transition: 0.3s;
        }

        .pagetypes-item:hover .pagetypes-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        .pagetypes-item h4 {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .pagetypes-item p {
            color: #bdbdbd;
            font-size: 13.5px;
            line-height: 1.75;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .pagetypes-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .pagetypes-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .pagetypes-section.design-1 {
                padding: 40px 0;
            }

            .pagetypes-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .pagetypes-desc {
                font-size: 13px;
            }

            .pagetypes-item {
                padding: 14px 16px;
                gap: 14px;
            }

            .pagetypes-item h4 {
                font-size: 15px;
            }

            .pagetypes-item p {
                font-size: 13px;
            }
        }

        /* -------- VOICE SECTION (WHITE BG) -------- */
        .voice-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .voice-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .voice-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .voice-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .voice-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .voice-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        @media (max-width: 768px) {
            .voice-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .voice-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .voice-section.design-1 {
                padding: 40px 0;
            }

            .voice-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .voice-desc {
                font-size: 13px;
            }
        }

        /* -------- REALISTIC SECTION (BLACK BG) -------- */
        .realistic-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .realistic-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .realistic-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .realistic-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
            margin-top: 20px;
        }

        .realistic-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .realistic-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        @media (max-width: 768px) {
            .realistic-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .realistic-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .realistic-section.design-1 {
                padding: 40px 0;
            }

            .realistic-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .realistic-desc {
                font-size: 13px;
            }
        }

        /* -------- COST SECTION (WHITE BG) -------- */
        .cost-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .cost-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .cost-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .cost-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .cost-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .cost-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .cost-check-list {
            max-width: 850px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cost-check-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: #FDE087;
            border: 2px solid goldenrod;
            border-radius: 12px;
            padding: 14px 18px;
        }

        .cost-check-item i {
            color: #d4a017;
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .cost-check-item span {
            color: #444;
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .cost-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .cost-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .cost-section.design-1 {
                padding: 40px 0;
            }

            .cost-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .cost-desc {
                font-size: 13px;
            }

            .cost-check-item {
                padding: 12px 14px;
            }

            .cost-check-item span {
                font-size: 13px;
            }
        }

        /* -------- MEASURE SECTION (BLACK BG) -------- */
        .measure-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .measure-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .measure-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .measure-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .measure-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .measure-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .measure-grid {
            max-width: 1100px;
            margin: 30px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .measure-card {
            background: ;
            border: 1px solid goldenrod;
            border-radius: 18px;
            padding: 28px 24px;
            transition: 0.35s;
        }

        .measure-card:hover {
            transform: translateY(-6px);
            border-color: #d4a017;
        }

        .measure-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .measure-card p {
            color: #bdbdbd;
            font-size: 13.5px;
            line-height: 1.75;
            text-align: justify;
            margin: 0;
        }

        .measure-icon {
            width: 52px;
            height: 52px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #d4a017;
            margin-bottom: 16px;
            transition: 0.3s;
        }

        .measure-card:hover .measure-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        @media (max-width: 1024px) {
            .measure-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .measure-grid {
                grid-template-columns: 1fr;
            }

            .measure-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .measure-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .measure-section.design-1 {
                padding: 40px 0;
            }

            .measure-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .measure-desc {
                font-size: 13px;
            }

            .measure-card {
                padding: 20px 16px;
            }
        }

        /* -------- MISTAKES SECTION (WHITE BG) -------- */
        .mistakes-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .mistakes-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .mistakes-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .mistakes-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .mistakes-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .mistakes-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .mistakes-grid {
            max-width: 1050px;
            margin: 30px auto 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .mistakes-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 20px;
            background: #FDE087;
            border-radius: 14px;
            border: 2px solid goldenrod;
            transition: 0.3s;
        }

        .mistakes-item:hover {
            border-color: #d4a017;
            transform: translateY(-4px);
        }

        .mistakes-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #d4a017;
            transition: 0.3s;
            margin-top: 2px;
        }

        .mistakes-item:hover .mistakes-icon {
            background: #d4a017;
            color: #000;
            transform: scale(1.1);
        }

        .mistakes-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: #222;
            margin-bottom: 4px;
        }

        .mistakes-item p {
            color: #666;
            font-size: 13.5px;
            line-height: 1.65;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .mistakes-grid {
                grid-template-columns: 1fr;
            }

            .mistakes-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .mistakes-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .mistakes-section.design-1 {
                padding: 40px 0;
            }

            .mistakes-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .mistakes-desc {
                font-size: 13px;
            }

            .mistakes-item {
                padding: 14px 14px;
            }
        }

        /* -------- CHOOSE SECTION (BLACK BG) -------- */
        .choose-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .choose-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .choose-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .choose-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .choose-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .choose-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .choose-check-list {
            max-width: 850px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .choose-check-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            border: 2px solid goldenrod;
            border-radius: 12px;
            padding: 14px 18px;
        }

        .choose-check-item i {
            color: #d4a017;
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .choose-check-item span {
            color: #d9d9d9;
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .choose-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .choose-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .choose-section.design-1 {
                padding: 40px 0;
            }

            .choose-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .choose-desc {
                font-size: 13px;
            }

            .choose-check-item {
                padding: 12px 14px;
            }

            .choose-check-item span {
                font-size: 13px;
            }
        }

        /* -------- GLOSSARY SECTION (WHITE BG) -------- */
        .glossary-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .glossary-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .glossary-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .glossary-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .glossary-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .glossary-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .glossary-grid {
            max-width: 1100px;
            margin: 30px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .glossary-item {
            background: #FDE087;
            border: 2px solid goldenrod;
            border-radius: 14px;
            padding: 20px 22px;
            transition: 0.3s;
        }

        .glossary-item:hover {
            border-color: #d4a017;
            transform: translateY(-4px);
        }

        .glossary-item h4 {
            font-size: 15px;
            font-weight: 700;
            color: #d4a017;
            margin-bottom: 6px;
        }

        .glossary-item p {
            color: #555;
            font-size: 13px;
            line-height: 1.65;
            margin: 0;
            text-align: justify;
        }

        @media (max-width: 1100px) {
            .glossary-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .glossary-grid {
                grid-template-columns: 1fr;
            }

            .glossary-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .glossary-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .glossary-section.design-1 {
                padding: 40px 0;
            }

            .glossary-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .glossary-desc {
                font-size: 13px;
            }

            .glossary-item {
                padding: 16px 16px;
            }
        }

        /* -------- SELFCHECK SECTION (BLACK BG) -------- */
        .selfcheck-section.design-1 {
            background: #000000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .selfcheck-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .selfcheck-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .selfcheck-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0;
        }

        .selfcheck-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .selfcheck-desc {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        .selfcheck-numbered-list {
            max-width: 850px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .selfcheck-numbered-item {
            display: flex;
            align-items: flex-start;
            gap: 22px;

            border: 2px solid goldenrod;
            border-radius: 16px;
            padding: 22px 26px;
            transition: 0.3s;
        }

        .selfcheck-numbered-item:hover {
            border-color: #d4a017;
            transform: translateX(6px);
        }

        .selfcheck-num {
            flex-shrink: 0;
            font-size: 26px;
            font-weight: 800;
            color: #d4a017;
            line-height: 1;
            min-width: 48px;
        }

        .selfcheck-numbered-item h4 {
            font-size: 16.5px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .selfcheck-numbered-item p {
            color: #bdbdbd;
            font-size: 13.5px;
            line-height: 1.75;
            text-align: justify;
            margin: 0;
        }

        @media (max-width: 768px) {
            .selfcheck-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .selfcheck-desc {
                font-size: 14px;
            }

            .selfcheck-numbered-item {
                flex-direction: column;
                gap: 10px;
                padding: 18px 18px;
            }
        }

        @media (max-width: 480px) {
            .selfcheck-section.design-1 {
                padding: 40px 0;
            }

            .selfcheck-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .selfcheck-desc {
                font-size: 13px;
            }

            .selfcheck-numbered-item {
                padding: 14px 14px;
            }

            .selfcheck-numbered-item h4 {
                font-size: 15px;
            }

            .selfcheck-numbered-item p {
                font-size: 13px;
            }
        }

        /* -------- WHYUS SECTION (WHITE BG) -------- */
        .whyus-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .whyus-section.design-1 .section-head {
            text-align: center;
            margin-bottom: 18px;
        }

        .whyus-section.design-1 .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .whyus-section.design-1 .section-head h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.2;
            margin: 0;
        }

        .whyus-section.design-1 .section-head h2 span {
            color: #d4a017;
        }

        .whyus-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 12px;
        }

        @media (max-width: 768px) {
            .whyus-section.design-1 .section-head h2 {
                font-size: 26px;
            }

            .whyus-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .whyus-section.design-1 {
                padding: 40px 0;
            }

            .whyus-section.design-1 .section-head h2 {
                font-size: 22px;
            }

            .whyus-desc {
                font-size: 13px;
            }
        }

        /* -------- CTA SECTION (WHITE BG) -------- */
        .cta-section.design-1 {
            background: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section.design-1 .cta-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-inner {
            text-align: center;
            padding: 45px 40px;

            border-radius: 20px;
            border: 2px solid #f0f0f0;
            transition: 0.3s;
        }

        .cta-inner:hover {
            border-color: #d4a017;
        }

        .cta-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.08);
            color: #d4a017;
            padding: 6px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .cta-title {
            font-size: 36px;
            font-weight: 800;
            color: #222;
            line-height: 1.25;
            margin-bottom: 18px;
        }

        .cta-title span {
            color: #d4a017;
        }

        .cta-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            max-width: 750px;
            margin: 0 auto 12px;
        }

        .cta-highlight {
            background: rgba(212, 175, 55, 0.04);
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 20px 25px;
            margin: 20px auto 25px;
            max-width: 750px;
        }

        .cta-bold {
            font-size: 19px;
            font-weight: 800;
            color: #d4a017;
            margin: 0 0 6px;
        }

        .cta-sub {
            font-size: 14px;
            color: #555;
            margin: 0 0 4px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .seo-services-btn-primary {
            display: inline-block;
            background: #d4a017;
            color: #000;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: 0.3s;
            border: 2px solid #d4a017;
        }

        .cta-buttons .seo-services-btn-primary:hover {
            background: #000;
            color: #d4a017;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        @media (max-width: 768px) {
            .cta-title {
                font-size: 28px;
            }

            .cta-inner {
                padding: 30px 20px;
            }

            .cta-highlight {
                padding: 16px 18px;
            }
        }

        @media (max-width: 480px) {
            .cta-title {
                font-size: 22px;
            }

            .cta-inner {
                padding: 24px 16px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .seo-services-btn-primary {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
                font-size: 14px;
            }

            .cta-highlight {
                padding: 14px 14px;
            }

            .cta-bold {
                font-size: 16px;
            }

            .cta-sub {
                font-size: 13px;
            }
        }

        /* -------- FAQ SECTION (BLACK BG) -------- */
        .fq-section {
            --fq-accent: #D4AF37;
            --fq-accent2: #FFD700;
            --fq-dark: #0d1117;
            --fq-card: #141b22;
            --fq-border: rgba(212, 175, 55, 0.25);
            --fq-text: #c9d1d9;
            --fq-muted: #8b949e;
            --fq-white: #ffffff;
            --fq-radius: 14px;
            --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
            background: #000;
            padding: 72px 0 80px;
            overflow: hidden;
        }

        .fq-wrap {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .fq-section .section-head {
            text-align: center;
            margin-bottom: 48px;
        }

        .fq-section .section-head .sm-title {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            color: #d4a017;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .fq-section .section-head h2 {
            color: #ffffff;
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            line-height: 1.22;
            margin: 0;
        }

        .fq-section .section-head h2 span {
            color: #d4a017;
        }

        .fq-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .fq-item {
            background: var(--fq-card);
            border: 1px solid var(--fq-border);
            border-radius: var(--fq-radius);
            overflow: hidden;
            transition: border-color var(--fq-trans), box-shadow var(--fq-trans);
        }

        .fq-item:hover {
            border-color: #D4AF37;
        }

        .fq-item.fq-open {
            border-color: var(--fq-accent);
            box-shadow: 0 0 0 1px rgba(145, 217, 4, 0.25), 0 8px 32px rgba(0, 0, 0, 0.35);
        }

        .fq-btn {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            text-align: left;
            outline: none;
        }

        .fq-btn:focus-visible {
            outline: 2px solid var(--fq-accent);
            outline-offset: -2px;
        }

        .fq-num {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(145, 217, 4, 0.1);
            border: 1px solid var(--fq-border);
            color: var(--fq-accent);
            font-size: .7rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: .05em;
            transition: background var(--fq-trans), border-color var(--fq-trans);
        }

        .fq-open .fq-num {
            background: var(--fq-accent);
            border-color: var(--fq-accent);
            color: var(--fq-dark);
        }

        .fq-q-text {
            margin: 0;
            padding: 0;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            flex: 1;
            color: var(--fq-white);
            transition: color var(--fq-trans);
        }

        .fq-open .fq-q-text {
            color: var(--fq-accent);
        }

        .fq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #000;
            border: 1px solid var(--fq-border);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background var(--fq-trans), transform var(--fq-trans);
        }

        .fq-icon svg {
            width: 13px;
            height: 13px;
            stroke: var(--fq-accent);
            transition: transform var(--fq-trans);
        }

        .fq-open .fq-icon {
            background: var(--fq-accent);
        }

        .fq-open .fq-icon svg {
            stroke: var(--fq-dark);
            transform: rotate(45deg);
        }

        .fq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--fq-trans);
            cursor: pointer;
        }

        .fq-answer-inner {
            padding: 0 22px 20px 70px;
            text-align: justify;
            color: var(--fq-text);
            font-size: .94rem;
            line-height: 1.72;
        }

        @media (max-width: 600px) {
            .fq-section {
                padding: 52px 0 60px;
            }

            .fq-answer-inner {
                padding-left: 22px;
            }

            .fq-btn {
                padding: 16px 16px;
                gap: 12px;
            }
        }
    




          
                    /* ============================================================
   AEO IMPACT - FULL SCREEN WIDTH
   ============================================================ */

#aeo-impact-content {
    width: 100vw;
    max-width: 100vw;
    display: block;
    clear: both;
    position: relative;
    z-index: 2;

    /* Break out from the parent container */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    margin-top: 50px;
    box-sizing: border-box;
}

/* Highlight Box */

#aeo-impact-highlight {
    width: 90%;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(212, 175, 55, 0.06);
    border-left: 4px solid #d4a017;
    padding: 22px 30px;
    border-radius: 10px;
    margin: 0 325px 40px;
}

#aeo-impact-highlight p {
    color: #d9d9d9;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

#aeo-impact-highlight p + p {
    margin-top: 12px;
}

/* Conclusion */

#aeo-impact-conclusion {
    width: 90%;
    max-width: 100%;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.85;
    text-align: justify;
    margin: 0px 325px 0px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    #aeo-impact-content {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 45px;
    }

    #aeo-impact-highlight {
        padding: 20px 24px;
    }

    #aeo-impact-highlight p {
        font-size: 14px;
    }

    #aeo-impact-conclusion {
        font-size: 14px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    #aeo-impact-content {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 35px;
    }

    #aeo-impact-highlight {
        padding: 18px 20px;
        border-radius: 9px;
    }

    #aeo-impact-highlight p {
        font-size: 13px;
        line-height: 1.75;
    }

    #aeo-impact-conclusion {
        font-size: 14px;
        line-height: 1.75;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    #aeo-impact-content {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 30px;
    }

    #aeo-impact-highlight {
        padding: 15px 16px;
    }

    #aeo-impact-highlight p {
        font-size: 12px;
        line-height: 1.7;
    }

    #aeo-impact-conclusion {
        font-size: 13px;
        line-height: 1.7;
    }
}
                







   
                    /* ============================================================
   AEO LOCAL TRICHY SECTION
   LEFT CONTENT + RIGHT IMAGE
   ============================================================ */

                    .local-wrapper {
                        display: grid;
                        grid-template-columns: 1.15fr 0.85fr;
                        align-items: center;
                        gap: 60px;
                    }

                    /* LEFT CONTENT */

                    .local-content {
                        width: 100%;
                    }

                    .local-section .section-head {
                        margin-bottom: 22px;
                    }

                    .local-section .section-head .sm-title {
                        display: inline-block;
                    }

                    .local-desc {
                        color: #bdbdbd;
                        font-size: 15px;
                        line-height: 1.8;
                        text-align: justify;
                        margin-bottom: 18px;
                    }

                    /* EXISTING HIGHLIGHT BOX */

                    .local-wrapper .seo-highlight-box {
                        margin-top: 25px;
                    }

                    /* RIGHT IMAGE */

                    .local-image {
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                    .local-image img {
                        width: 100%;
                        max-width: 480px;
                        height: auto;
                        display: block;
                        border-radius: 18px;
                        object-fit: cover;
                        border: 2px solid goldenrod;
                    }

                    /* TABLET */

                    @media (max-width: 991px) {

                        .local-wrapper {
                            grid-template-columns: 1fr;
                            gap: 40px;
                        }

                        .local-content {
                            order: 1;
                        }

                        .local-image {
                            order: 2;
                        }

                        .local-image img {
                            max-width: 500px;
                        }

                        .local-desc {
                            font-size: 14px;
                        }
                    }

                    /* MOBILE */

                    @media (max-width: 768px) {

                        .local-wrapper {
                            gap: 35px;
                        }

                        .local-desc {
                            font-size: 14px;
                            line-height: 1.75;
                        }

                        .local-image img {
                            max-width: 100%;
                            border-radius: 15px;
                        }
                    }

                    /* SMALL MOBILE */

                    @media (max-width: 480px) {

                        .local-desc {
                            font-size: 13px;
                            line-height: 1.7;
                        }

                        .local-image img {
                            border-radius: 12px;
                        }
                    }
                