        :root {
            --navy: #0a1628;
            --deep-blue: #1a2740;
            --accent-gold: #d4a574;
            --accent-blue: #4a90e2;
            --light-cream: #f8f6f3;
            --white: #ffffff;
            --gray-light: #e8e6e3;
            --gray-mid: #8c8985;
            --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
            --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
            --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--navy);
            background: var(--light-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--gray-light);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Crimson Pro', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--navy);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.75rem 1.8rem;
            background: var(--navy);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.95rem;
        }

        .nav-cta:hover {
            background: var(--accent-gold);
            color: var(--navy);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(5deg); }
            66% { transform: translate(-20px, 20px) rotate(-5deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 3rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(212, 165, 116, 0.15);
            border: 1px solid var(--accent-gold);
            border-radius: 24px;
            color: var(--accent-gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-family: 'Crimson Pro', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-highlight {
            color: var(--accent-gold);
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent-gold);
            color: var(--navy);
        }

        .btn-primary:hover {
            background: #e6b885;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-card h3 {
            font-family: 'Crimson Pro', serif;
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .stat-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat {
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--gray-light);
        }

        .stat:last-child {
            border-bottom: none;
        }

        .stat-number {
            font-family: 'Crimson Pro', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--gray-mid);
            margin-top: 0.5rem;
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--white);
            padding: 2rem 3rem;
            box-shadow: var(--shadow-sm);
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .trust-item {
            text-align: center;
            animation: fadeInUp 0.6s ease-out both;
        }

        .trust-item:nth-child(1) { animation-delay: 0.1s; }
        .trust-item:nth-child(2) { animation-delay: 0.2s; }
        .trust-item:nth-child(3) { animation-delay: 0.3s; }
        .trust-item:nth-child(4) { animation-delay: 0.4s; }

        .trust-icon {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .trust-text {
            font-size: 0.9rem;
            color: var(--gray-mid);
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 6rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Crimson Pro', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 1.15rem;
            color: var(--gray-mid);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover:before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #e6b885 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-family: 'Crimson Pro', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--gray-mid);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-price {
            font-family: 'Crimson Pro', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--gray-mid);
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: 700;
        }

        .service-link {
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* Methodology Section */
        .methodology {
            background: var(--navy);
            color: var(--white);
            padding: 6rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .methodology:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
        }

        .methodology-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .methodology-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .method-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .method-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }

        .method-number {
            font-family: 'Crimson Pro', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        .method-card h3 {
            font-family: 'Crimson Pro', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .method-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .method-features {
            list-style: none;
        }

        .method-features li {
            padding: 0.75rem 0;
            color: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
        }

        .method-features li:last-child {
            border-bottom: none;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 6rem 3rem;
            background: var(--light-cream);
        }

        .testimonial-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--accent-gold);
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial-text {
            font-family: 'Crimson Pro', serif;
            font-size: 1.8rem;
            color: var(--navy);
            line-height: 1.6;
            margin: 2rem 0;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--gray-mid);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #e6b885 100%);
            padding: 5rem 3rem;
            text-align: center;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-family: 'Crimson Pro', serif;
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .btn-dark {
            background: var(--navy);
            color: var(--white);
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-dark:hover {
            background: var(--deep-blue);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(10, 22, 40, 0.3);
        }

        /* Footer */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 3rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-family: 'Crimson Pro', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-description {
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-column h4 {
            font-family: 'Crimson Pro', serif;
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .methodology-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
   ADDITIONAL STYLES FOR MERGED CONTENT
   Add these to your existing styles.css file
   ======================================== */

/* Why Different Section */
.why-different {
    background: var(--white, #ffffff);
    padding: 80px 20px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.why-main h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy, #1a2332);
    margin-bottom: 20px;
}

.why-main p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark, #333);
    margin-bottom: 20px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark, #333);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.why-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-gold, #c9a961);
    font-weight: 600;
}

.why-fail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-fail-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark, #333);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.why-fail-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 600;
}

.why-emphasis {
    font-family: 'Crimson Pro', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy, #1a2332);
    margin: 30px 0;
    padding: 20px;
    background: var(--light-gray, #f8f9fa);
    border-left: 4px solid var(--accent-gold, #c9a961);
}

.why-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--light-gray, #f8f9fa);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold, #c9a961);
}

.info-card h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy, #1a2332);
    margin-bottom: 12px;
}

.info-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark, #333);
    margin-bottom: 12px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Service Note */
.service-note {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    background: var(--light-gray, #f8f9fa);
    border-radius: 8px;
    text-align: center;
}

.service-note p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: var(--text-dark, #333);
    margin: 0;
}

/* Methodology Footer */
.methodology-footer {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.methodology-footer p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Track Record Section */
.track-record {
    background: var(--light-gray, #f8f9fa);
    padding: 80px 20px;
}

.track-container {
    max-width: 1200px;
    margin: 0 auto;
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.track-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.track-icon {
    font-size: 28px;
    color: var(--accent-gold, #c9a961);
    flex-shrink: 0;
}

.track-content h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy, #1a2332);
    margin-bottom: 8px;
}

.track-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark, #333);
    margin: 0;
}

/* Who Uses Section */
.who-uses {
    background: var(--white, #ffffff);
    padding: 80px 20px;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.who-card {
    background: var(--light-gray, #f8f9fa);
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--accent-gold, #c9a961);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-card h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy, #1a2332);
    margin-bottom: 12px;
}

.who-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark, #333);
    margin: 0;
}

/* FAQ Section */
.faq {
    background: var(--light-gray, #f8f9fa);
    padding: 80px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold, #c9a961);
}

.faq-item h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy, #1a2332);
    margin-bottom: 12px;
}

.faq-item p {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark, #333);
    margin: 0;
}

/* About Eric Section */
.about-eric {
    background: var(--navy, #1a2332);
    padding: 60px 20px;
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-eric h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 8px;
}

.about-eric h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--accent-gold, #c9a961);
    margin-bottom: 20px;
}

.about-eric p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.about-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-detail {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.about-detail strong {
    color: var(--accent-gold, #c9a961);
    display: block;
    margin-bottom: 4px;
}

/* CTA Tagline */
.cta-tagline {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark, #333);
    margin-top: 20px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .track-grid {
        grid-template-columns: 1fr;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .about-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .why-emphasis {
        font-size: 20px;
        padding: 16px;
    }
    
    .why-main h3 {
        font-size: 24px;
    }
}

/* Enhanced Method Features with Better Formatting */
.method-features li strong {
    color: var(--accent-gold, #c9a961);
}

/* Enhanced Service Features */
.service-features {
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
}