﻿        :root {
            --rf-s1-main-purple: #3e3b67;
            --rf-s1-accent-gold: #F4B426;
            --rf-s1-text-light: #ffffff;
            --rf-s1-overlay: rgba(30, 33, 58, 0.88);
        }

        body,
        html {
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            background-color: #f4f4f4;
        }

        .rf-s1-hero-wrapper {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 650px;
            background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .rf-s1-hero-wrapper::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--rf-s1-overlay);
            z-index: 1;
        }

        .rf-s1-main-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s1-content-inner {
            max-width: 720px;
            animation: rf-s1-fadeInUp 0.8s ease-out;
        }

        .rf-s1-prefix-label {
            display: inline-block;
            color: var(--rf-s1-accent-gold);
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
            padding-bottom: 4px;
            border-bottom: 2px solid var(--rf-s1-accent-gold);
        }

        .rf-s1-hero-title {
            color: var(--rf-s1-text-light);
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 28px 0;
            letter-spacing: -0.02em;
        }

        .rf-s1-hero-desc {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 45px;
            max-width: 580px;
        }

        .rf-s1-btn-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .rf-s1-action-btn {
            padding: 18px 34px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-align: center;
            display: inline-block;
        }

        /* Yellow Button (Primary) */
        .rf-s1-btn-yellow {
            background-color: var(--rf-s1-accent-gold);
            color: var(--rf-s1-main-purple);
            border: 1px solid var(--rf-s1-accent-gold);
        }

        .rf-s1-btn-yellow:hover {
            background-color: #ffc84a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(244, 180, 38, 0.3);
        }

        /* Secondary Button (Outline) */
        .rf-s1-btn-outline {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .rf-s1-btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        @keyframes rf-s1-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .rf-s1-main-container {
                padding: 0 24px;
            }

            .rf-s1-btn-row {
                flex-direction: column;
                width: 100%;
            }

            .rf-s1-action-btn {
                width: 100%;
                box-sizing: border-box;
            }
        }





        :root {
            --rf-s2-purple: #3e3b67;
            --rf-s2-gold: #F4B426;
            --rf-s2-text-muted: #6b6d85;
            --rf-s2-bg-light: #ffffff;
            --rf-s2-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .rf-s2-growth {
            padding: 100px 0;
            background-color: #fcfcfd;
            font-family: 'Inter', sans-serif;
        }

        .rf-s2-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s2-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        /* Content Styles */
        .rf-s2-heading-wrapper {
            border-left: 4px solid var(--rf-s2-gold);
            padding-left: 25px;
            margin-bottom: 30px;
        }

        .rf-s2-title {
            color: var(--rf-s2-purple);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
        }

        .rf-s2-description {
            color: var(--rf-s2-text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        /* Feature Item Styles */
        .rf-s2-feature-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .rf-s2-feature-item {
            background: var(--rf-s2-bg-light);
            padding: 24px;
            border-radius: 12px;
            display: flex;
            gap: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f0f5;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rf-s2-feature-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .rf-s2-icon-box {
            background: #f4f4f8;
            color: var(--rf-s2-purple);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .rf-s2-feature-text h3 {
            color: var(--rf-s2-purple);
            margin: 0 0 5px 0;
            font-size: 1.1rem;
        }

        .rf-s2-feature-text p {
            color: var(--rf-s2-text-muted);
            margin: 0;
            font-size: 0.95rem;
        }

        /* Visual Column Styles */
        .rf-s2-visual {
            position: relative;
            padding-top: 60px;
            /* Space above the new image composition */
        }

        .rf-s2-image-wrapper {
            position: relative;
        }

        .rf-s2-main-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--rf-s2-shadow);
            /* NEW: Ensures the image works well in the composition */
            display: block;
            aspect-ratio: 1 / 1.1;
            object-fit: cover;
        }

        /* Stat Card - Position Updated to match new image */
        .rf-s2-stat-card {
            position: absolute;
            top: -40px;
            /* NEW: Raised up from the image to float slightly over the edge */
            right: -20px;
            /* NEW: Floats to the opposite side of the image now */
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            max-width: 280px;
            z-index: 2;
            border: 1px solid #f0f0f5;
        }

        .rf-s2-stat-number {
            display: block;
            color: var(--rf-s2-gold);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px;
        }

        .rf-s2-stat-label {
            display: block;
            color: var(--rf-s2-purple);
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .rf-s2-stat-desc {
            color: var(--rf-s2-text-muted);
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .rf-s2-grid {
                grid-template-columns: 1fr;
                gap: 80px;
            }

            .rf-s2-visual {
                padding-top: 0;
                margin-top: -30px;
            }

            .rf-s2-stat-card {
                right: 20px;
                top: 20px;
            }
        }

        @media (max-width: 768px) {
            .rf-s2-container {
                padding: 0 20px;
            }

            .rf-s2-title {
                font-size: 2rem;
            }

            .rf-s2-stat-card {
                position: relative;
                right: 0;
                top: 0;
                margin-top: 30px;
                max-width: 100%;
            }
        }






        :root {
            --rf-s3-purple: #3e3b67;
            --rf-s3-gold: #F4B426;
            --rf-s3-card-bg: #f0f7ff;
            /* Light bluish tint from the image */
            --rf-s3-text: #4a4a68;
        }

        .rf-s3-infrastructure {
            padding: 100px 0;
            background-color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .rf-s3-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s3-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .rf-s3-main-title {
            color: var(--rf-s3-purple);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .rf-s3-subtitle {
            color: var(--rf-s3-text);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .rf-s3-grid {
            display: flex;
            gap: 30px;
            justify-content: space-between;
        }

        .rf-s3-card {
            flex: 1;
            background-color: var(--rf-s3-card-bg);
            padding: 40px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .rf-s3-card:hover {
            transform: translateY(-10px);
        }

        .rf-s3-icon-wrapper {
            background-color: #fff9e6;
            width: 45px;
            height: 45px;
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 25px;
        }

        .rf-s3-icon-wrapper img {
            width: 100%;
            height: 100%;
        }

        .rf-s3-card-title {
            color: var(--rf-s3-purple);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            min-height: 3.4em;
            /* Keeps titles aligned */
            line-height: 1.3;
        }

        .rf-s3-card-desc {
            color: var(--rf-s3-text);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .rf-s3-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rf-s3-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: var(--rf-s3-purple);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .rf-s3-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--rf-s3-purple);
            font-weight: 900;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .rf-s3-grid {
                flex-direction: column;
            }

            .rf-s3-card-title {
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .rf-s3-container {
                padding: 0 20px;
            }

            .rf-s3-main-title {
                font-size: 2rem;
            }
        }



        :root {
            --rf-s4-deep-purple: #3e3b67;
            --rf-s4-gold: #F4B426;
            --rf-s4-white: #ffffff;
            --rf-s4-tag-bg: rgba(255, 255, 255, 0.08);
        }

        .rf-s4-strain {
            background-color: var(--rf-s4-deep-purple);
            padding: 100px 0;
            color: var(--rf-s4-white);
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* Subtle background accent */
        .rf-s4-strain::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 30%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03));
            pointer-events: none;
        }

        .rf-s4-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s4-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Heading with Yellow Vertical Bar */
        .rf-s4-heading-border {
            border-left: 4px solid var(--rf-s4-gold);
            padding-left: 24px;
            margin-bottom: 30px;
        }

        .rf-s4-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
            color: #FFF;
        }

        .rf-s4-subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 500px;
        }

        /* Tags Layout */
        .rf-s4-tags-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }

        .rf-s4-tag {
            background: var(--rf-s4-tag-bg);
            padding: 20px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.4;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }

        .rf-s4-tag:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        /* The 5th tag spans full width if odd number */
        .rf-s4-tag:last-child:nth-child(odd) {
            grid-column: span 1;
        }

        .rf-s4-footer-note {
            font-style: italic;
            font-weight: 700;
            color: var(--rf-s4-gold);
            font-size: 1rem;
        }

        /* Image Styles */
        .rf-s4-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .rf-s4-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .rf-s4-image-box {
                order: -1;
                /* Image on top for mobile */
            }
        }

        @media (max-width: 600px) {
            .rf-s4-tags-container {
                grid-template-columns: 1fr;
            }

            .rf-s4-container {
                padding: 0 20px;
            }
        }



        :root {
            --rf-s5-purple: #3e3b67;
            --rf-s5-gold: #F4B426;
            --rf-s5-white: #ffffff;
            --rf-s5-text-muted: #6b6d85;
        }

        .rf-s5-review {
            padding: 100px 0;
            background-color: #f8f9fc;
            /* Slightly cooler background to make the white card pop */
            font-family: 'Inter', sans-serif;
        }

        .rf-s5-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s5-card {
            background-color: var(--rf-s5-white);
            border-radius: 20px;
            padding: 70px 80px;
            box-shadow: 0 25px 60px rgba(62, 59, 103, 0.07);
            border: 1px solid rgba(62, 59, 103, 0.05);
        }

        .rf-s5-title {
            color: var(--rf-s5-purple);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .rf-s5-intro {
            font-size: 1.15rem;
            color: var(--rf-s5-text-muted);
            line-height: 1.6;
            margin-bottom: 50px;
            max-width: 650px;
        }

        .rf-s5-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .rf-s5-icon-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 15px;
        }

        /* Custom SVG Icon Box */
        .rf-s5-custom-icon {
            width: 24px;
            height: 24px;
            color: var(--rf-s5-gold);
            flex-shrink: 0;
        }

        .rf-s5-detail-label {
            color: var(--rf-s5-purple);
            font-size: 0.9rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin: 0;
        }

        .rf-s5-detail-text {
            color: var(--rf-s5-text-muted);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        .rf-s5-action-area {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .rf-s5-btn-gold {
            background-color: var(--rf-s5-gold);
            color: var(--rf-s5-purple);
            padding: 22px 45px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            width: fit-content;
            box-shadow: 0 8px 15px rgba(244, 180, 38, 0.2);
        }

        .rf-s5-btn-gold:hover {
            background-color: #ffc84a;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(244, 180, 38, 0.3);
        }

        .rf-s5-note {
            font-size: 0.9rem;
            color: #9ea0b0;
            margin: 0;
        }

        @media (max-width: 992px) {
            .rf-s5-card {
                padding: 40px;
            }

            .rf-s5-details-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .rf-s5-container {
                padding: 0 20px;
            }

            .rf-s5-btn-gold {
                width: 100%;
                text-align: center;
                box-sizing: border-box;
            }
        }


        :root {
            --rf-s6-purple: #3e3b67;
            --rf-s6-text-gray: #555770;
            --rf-s6-number-color: #eef2f6;
            /* Very light gray for the large background numbers */
        }

        .rf-s6-process {
            padding: 120px 0;
            background-color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .rf-s6-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s6-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .rf-s6-main-title {
            color: var(--rf-s6-purple);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            margin: 0;
        }

        .rf-s6-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .rf-s6-step {
            position: relative;
            padding-top: 40px;
        }

        /* The large background numbers */
        .rf-s6-number-bg {
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 8rem;
            font-weight: 900;
            color: var(--rf-s6-number-color);
            z-index: 1;
            line-height: 1;
            user-select: none;
            letter-spacing: -5px;
        }

        .rf-s6-step-content {
            position: relative;
            z-index: 2;
        }

        .rf-s6-step-title {
            color: var(--rf-s6-purple);
            font-size: 1.4rem;
            font-weight: 800;
            margin: 0 0 15px 0;
        }

        .rf-s6-step-desc {
            color: var(--rf-s6-text-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive Scaling */
        @media (max-width: 1024px) {
            .rf-s6-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px 40px;
            }
        }

        @media (max-width: 600px) {
            .rf-s6-grid {
                grid-template-columns: 1fr;
            }

            .rf-s6-container {
                padding: 0 24px;
            }

            .rf-s6-number-bg {
                font-size: 6rem;
            }
        }



        :root {
            --rf-s7-purple: #3e3b67;
            --rf-s7-gold: #F4B426;
            --rf-s7-text: #555770;
            --rf-s7-bg: #ffffff;
        }

        .rf-s7-foundation {
            padding: 100px 0;
            background-color: var(--rf-s7-bg);
            font-family: 'Inter', sans-serif;
        }

        .rf-s7-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .rf-s7-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        /* Content Column */
        .rf-s7-heading-group {
            border-left: 4px solid var(--rf-s7-gold);
            padding-left: 25px;
            margin-bottom: 30px;
        }

        .rf-s7-title {
            color: var(--rf-s7-purple);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
        }

        .rf-s7-highlight {
            color: var(--rf-s7-gold);
        }

        .rf-s7-description {
            color: var(--rf-s7-text);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .rf-s7-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 45px;
        }

        .rf-s7-feature-box {
            background: #ffffff;
            padding: 24px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f4f8;
        }

        .rf-s7-mini-icon {
            background: #fff4da;
            color: var(--rf-s7-gold);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rf-s7-feature-box h4 {
            color: var(--rf-s7-purple);
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .rf-s7-btn-primary {
            background-color: var(--rf-s7-purple);
            color: white;
            padding: 18px 40px;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .rf-s7-btn-primary:hover {
            background-color: #2e2b52;
            transform: translateY(-2px);
        }

        /* Visual Column */
        .rf-s7-image-wrapper {
            position: relative;
        }

        .rf-s7-main-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: block;
        }

        .rf-s7-overlay-tag {
            position: absolute;
            bottom: 30px;
            left: 20px;
            right: 20px;
            background: rgba(220, 224, 230, 0.9);
            backdrop-filter: blur(8px);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .rf-s7-tag-icon {
            background: var(--rf-s7-purple);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rf-s7-tag-text strong {
            display: block;
            color: var(--rf-s7-purple);
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .rf-s7-tag-text span {
            color: var(--rf-s7-text);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .rf-s7-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .rf-s7-features {
                grid-template-columns: 1fr;
            }

            .rf-s7-title {
                font-size: 2.2rem;
            }
        }


        :root {
            --rf-purple: #3e3b67;
            --rf-gold: #F4B426;
            --rf-text: #555770;
        }

        .rf-s8-services {
            padding: 120px 0;
            background: linear-gradient(to bottom, #f9fafb, white);
            font-family: 'Inter', sans-serif;
        }

        .rf-s8-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .rf-s8-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .rf-s8-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 800;
            color: var(--rf-purple);
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .rf-s8-highlight {
            color: var(--rf-gold);
        }

        .rf-s8-intro {
            font-size: 1.15rem;
            color: var(--rf-text);
            line-height: 1.6;
        }

        /* Grid Layout */
        .rf-s8-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .rf-s8-card {
            background: #f8faff;
            padding: 45px;
            border-radius: 20px;
            border: 1px solid rgba(62, 59, 103, 0.05);
            transition: all 0.3s ease;
        }

        .rf-s8-card:hover {
            background: white;
            box-shadow: 0 20px 50px rgba(62, 59, 103, 0.08);
            transform: translateY(-5px);
        }

        .rf-s8-icon-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .rf-s8-icon {
            width: 50px;
            height: 50px;
            background: var(--rf-purple);
            color: var(--rf-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .rf-s8-icon svg {
            width: 24px;
            height: 24px;
        }

        .rf-s8-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--rf-purple);
            margin: 0;
        }

        .rf-s8-card p {
            font-size: 1.05rem;
            color: var(--rf-text);
            line-height: 1.6;
            margin: 0;
        }

        .rf-s8-footer {
            text-align: center;
            margin-top: 60px;
        }

        .rf-s8-btn {
            background-color: var(--rf-purple);
            color: white;
            padding: 20px 40px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }

        .rf-s8-btn:hover {
            background-color: var(--rf-gold);
            color: var(--rf-purple);
            box-shadow: 0 10px 25px rgba(244, 180, 38, 0.3);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .rf-s8-grid {
                grid-template-columns: 1fr;
            }

            .rf-s8-container {
                padding: 0 24px;
            }
        }

        :root {
            --rf-purple: #3e3b67;
            --rf-bg-light: #f0f4f9;
            /* Matches the soft blue background in your image */
            --rf-text: #3e3b67;
        }

        .rf-faq-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f9fafb, white);
            font-family: 'Inter', sans-serif;
        }

        .rf-faq-title {
            text-align: center;
            color: var(--rf-purple);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
        }

        .rf-faq-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .rf-faq-item {
            margin-bottom: 16px;
        }

        .rf-faq-question {
            width: 100%;
            padding: 24px 32px;
            background-color: var(--rf-bg-light);
            border: none;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            color: var(--rf-purple);
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .rf-faq-question:hover {
            background-color: #e6eef7;
        }

        /* Arrow Icon */
        .rf-faq-icon {
            width: 12px;
            height: 12px;
            border-right: 2px solid var(--rf-purple);
            border-bottom: 2px solid var(--rf-purple);
            transform: rotate(45deg);
            transition: transform 0.3s ease;
            margin-right: 10px;
        }

        .rf-faq-item.active .rf-faq-icon {
            transform: rotate(-135deg);
        }

        .rf-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: transparent;
        }

        .rf-faq-answer p {
            padding: 20px 32px;
            margin: 0;
            color: #555770;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        .rf-faq-item.active .rf-faq-answer {
            max-height: 200px;
            /* Adjust based on content */
        }


        :root {
            --rf-purple: #3e3b67;
            --rf-gold: #F4B426;
            --rf-text: #555770;
            --rf-input-bg: #f8faff;
        }

        .rf-final-cta {
            padding: 120px 0;
            background-color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .rf-cta-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
        }

        /* Content Styles */
        .rf-cta-badge {
            color: var(--rf-gold);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .rf-cta-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--rf-purple);
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .rf-gold-text {
            color: var(--rf-gold);
        }

        .rf-cta-description {
            font-size: 1.2rem;
            color: var(--rf-text);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .rf-cta-notice {
            display: flex;
            gap: 15px;
            background: #fdf8ed;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--rf-gold);
        }

        .rf-notice-icon {
            color: var(--rf-gold);
            flex-shrink: 0;
        }

        .rf-cta-notice p {
            margin: 0;
            font-size: 0.95rem;
            color: #7a6333;
            line-height: 1.5;
        }

        /* Form Styles */
        .rf-intake-card {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(62, 59, 103, 0.1);
            border: 1px solid rgba(62, 59, 103, 0.05);
        }

        .rf-form-group {
            margin-bottom: 20px;
        }

        .rf-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .rf-form label {
            display: block;
            font-weight: 700;
            color: var(--rf-purple);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .rf-form input,
        .rf-form select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 8px;
            border: 2px solid #edf1f7;
            background: var(--rf-input-bg);
            font-family: inherit;
            font-size: 1rem;
            box-sizing: border-box;
            transition: 0.3s;
        }

        .rf-form input:focus,
        .rf-form select:focus {
            outline: none;
            border-color: var(--rf-gold);
            background: white;
        }

        .rf-submit-btn {
            width: 100%;
            background: var(--rf-purple);
            color: white;
            padding: 20px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .rf-submit-btn:hover {
            background: var(--rf-gold);
            color: var(--rf-purple);
            transform: translateY(-2px);
        }

        .rf-form-secure {
            text-align: center;
            font-size: 0.85rem;
            color: #9ea0b0;
            margin-top: 15px;
        }

        /* Mobile */
        @media (max-width: 1024px) {
            .rf-cta-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .rf-intake-card {
                padding: 30px;
            }

            .rf-form-row {
                grid-template-columns: 1fr;
            }
        }


        /* --- Root Variables & Base Section Styles --- */
        :root {
            --rf-purple: #3e3b67;
            --rf-gold: #F4B426;
            --rf-text-light: #dcdce6;
            --rf-input-bg: #f8faff;
        }

        .rf-final-cta {
            padding: 120px 0;
            background-color: var(--rf-purple);
            /* Background changed to Brand Purple */
            font-family: 'Inter', sans-serif;
        }

        .rf-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .rf-cta-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
        }

        /* --- Content Styles (White Text for Purple BG) --- */
        .rf-cta-badge {
            color: var(--rf-gold);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .rf-cta-title {
            font-size: 3rem;
            font-weight: 900;
            color: #ffffff;
            /* Contrast against purple */
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .rf-gold-text {
            color: var(--rf-gold);
        }

        .rf-cta-description {
            font-size: 1.2rem;
            color: var(--rf-text-light);
            /* Lighter text for readability */
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .rf-cta-notice {
            display: flex;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            /* Subtler notice box */
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--rf-gold);
        }

        .rf-notice-icon {
            color: var(--rf-gold);
        }

        .rf-cta-notice p {
            margin: 0;
            font-size: 0.95rem;
            color: #ffffff;
            line-height: 1.5;
        }

        /* --- Form Card (White Background to Stand Out) --- */
        .rf-intake-card {
            background: #ffffff;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
            max-width: 600px;
            margin-left: auto;
        }

        .rf-form label {
            display: block;
            font-weight: 700;
            color: var(--rf-purple);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .rf-form input,
        .rf-form select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 8px;
            border: 2px solid #edf1f7;
            background: var(--rf-input-bg);
            font-size: 1rem;
            box-sizing: border-box;
        }

        .rf-submit-btn {
            width: 100%;
            background: var(--rf-gold);
            /* Gold button for high visibility */
            color: var(--rf-purple);
            padding: 20px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .rf-submit-btn:hover {
            background: #ffffff;
            transform: translateY(-2px);
        }

        .rf-form-secure {
            text-align: center;
            font-size: 0.85rem;
            color: #9ea0b0;
            margin-top: 15px;
        }

        /* Mobile */
        @media (max-width: 1024px) {
            .rf-cta-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .rf-intake-card {
                margin: 0 auto;
            }
        }
