
        /* CSS Variables - Unified Color Scheme */
        :root {
            --bg-primary: #001f47;
            --bg-card: #434656;
            --gold: #c9b358;
            --light-grey: #c0c0c0;
            --white: #ffffff;
            --glass-border: rgba(201, 179, 88, 0.25);
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        /* Base Styles - Mobile First */
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        section, footer {
            width: 100%;
            margin: 0;
        }

        /* Navigation */
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--glass-border);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .logo-text span {
            color: var(--gold);
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--gold);
            transition: all 0.3s ease;
        }

        /* Base nav menu */
        .nav-menu {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-menu > li {
            margin: 0;
            padding: 0;
        }

        /* Hide FAQ on mobile */
        .faq-desktop-only {
            display: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--light-grey);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-block;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--gold);
            background-color: rgba(201, 179, 88, 0.1);
        }

        .nav-cta {
            color: var(--bg-primary);
            background-color: var(--gold);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.6rem 1.25rem;
            border-radius: 50px;
            white-space: nowrap;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1;
            height: auto;
            margin: 0;
            vertical-align: middle;
            position: relative;
            top: -1px;
        }

        .nav-cta:hover {
            background-color: #f4dd72;
        }

        .book-consult-item {
            margin-left: 10px;
        }

        /* Dropdown menu - hidden by default */
        .dropdown-menu {
            list-style: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--bg-primary);
            border: 2px solid var(--gold);
            border-radius: 12px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            padding: 0;
            padding-top: 10px;
            margin: 0;
            margin-top: 0;
            min-width: 300px;
            display: none;
            z-index: 10000;
        }

        /* Invisible bridge to keep hover active */
        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
        }

        .dropdown-menu li {
            margin: 0;
            padding: 0;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--light-grey);
            text-decoration: none;
            white-space: nowrap;
            border-bottom: 1px solid var(--gold);
            transition: all 0.3s ease;
        }

        .dropdown-menu li:last-child .dropdown-item {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: rgba(201, 179, 88, 0.2);
            color: var(--gold);
        }

        /* Desktop: show dropdown on hover */
        @media (min-width: 1024px) {
            .dropdown-parent:hover .dropdown-menu {
                display: block;
            }

            .mobile-menu-toggle {
                display: none;
            }
        }

        /* Mobile styles */
        @media (max-width: 1023px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 1.1rem;
            }

            /* Mobile Footer Styles */
            .footer {
                padding: 40px 0 0 0;
            }

            .footer-content {
                padding: 0 1.5rem;
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-banner {
                margin: 0;
                padding: 0;
                width: 100%;
                line-height: 0;
            }

            .footer-banner img {
                width: 100vw;
                max-width: 100vw;
                display: block;
                margin: 0;
                padding: 0;
                vertical-align: bottom;
                object-fit: cover;
            }

            .footer-copyright {
                padding: 1.5rem;
                margin: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 80px;
            }

            .nav-menu {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background-color: var(--bg-card);
                flex-direction: column;
                padding: 1.5rem;
                border-top: 1px solid var(--glass-border);
                gap: 0.5rem;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                display: block;
                padding: 1rem;
                font-size: 1.1rem;
            }

            .dropdown-menu {
                position: static;
                border: none;
                box-shadow: none;
                margin: 0.5rem 0 0 1rem;
                padding-left: 1rem;
                border-left: 2px solid var(--gold);
                display: block;
            }

            .dropdown-item {
                padding: 0.75rem 1rem;
                border-bottom: none;
                font-size: 1rem;
            }

            .book-consult-item {
                margin: 1rem 0 0 0;
            }

            .nav-cta {
                display: block;
                text-align: center;
                padding: 1rem;
            }
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            padding: 1rem;
            width: 100%;
            color: var(--white);
            font-weight: 600;
            text-align: left !important;
            justify-content: flex-start !important;
            display: block;
            line-height: 1.2;
        }

        .dropdown-item {
            color: var(--white);
            font-weight: 500;
            text-align: left;
            display: block;
            padding: 0.75rem 1rem;
            line-height: 1.2;
        }

        .menu-divider {
            height: 2px;
            background-color: var(--gold);
            margin: 0.75rem 0;
            list-style: none;
            opacity: 1;
        }

        .dropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            background: none;
            border: none;
            padding-left: 1rem;
        }

        .nav-cta {
            padding: 0.65rem 1.25rem;
            background-color: var(--gold);
            color: var(--bg-primary);
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--gold);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 1.5rem 60px;
            background-color: var(--bg-primary);
        }

        .hero-content {
            max-width: 950px;
            text-align: center;
        }

        .hero .hero-badge,
        .hero-badge {
            display: inline-block;
            padding: 0.75rem 1.56rem;
            background-color: var(--gold);
            border-radius: 50px;
            font-size: 1.1rem !important;
            color: var(--bg-primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.4;
        }

        .hero-heading {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--white);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

            .hero-heading {
                font-size: clamp(1.3rem, 3.5vw, 2.2rem);
            }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
        }

            .hero h1 {
                font-size: clamp(1.6rem, 4vw, 2.8rem);
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero h1 .highlight,
        .hero-heading .highlight {
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 0.95rem;
            color: var(--light-grey);
            max-width: 650px;
            margin: 1.5rem auto 2.5rem;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            cursor: pointer;
            border: none;
            width: 100%;
            max-width: 300px;
        }

        .btn-primary {
            background-color: var(--gold);
            color: var(--bg-primary);
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--bg-primary);
            border: 1px solid var(--glass-border);
        }

        .btn-secondary:hover {
            background-color: transparent;
            color: var(--white);
            border-color: var(--glass-border);
        }

        .hero-stats {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            margin-bottom: 1.5rem;
            border-top: 1px solid var(--glass-border);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--light-grey);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Sections */
        section {
            padding: 20px 1.5rem;
            background-color: var(--bg-primary);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 3rem;
        }

        .section-label {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background-color: #c9b358;
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--bg-primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Cards - Unified Background */
        .framework-grid,
        .services-grid,
        .service-area-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .service-area-box {
            background-color: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-area-box::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 85%;
            height: 85%;
            background-image: url('images/texas-outline.jpg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            opacity: 0.12;
            z-index: 0;
            pointer-events: none;
        }

        .location-line {
            position: relative;
            z-index: 1;
        }

        .location-line {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--gold);
            margin: 0.5rem 0;
            line-height: 1.8;
        }

        .framework-card,
        .service-card,
        .service-area-card {
            background-color: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem;
        }

        .framework-card {
            text-align: center;
            background-color: #004c77 !important;
        }

        .framework-card h3,
        .service-area-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .service-card {
            text-align: center;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(201, 179, 88, 0.1);
        }

        .service-card:nth-child(3n+1) { background-color: #004c77; }
        .service-card:nth-child(3n+2) { background-color: #434656; }
        .service-card:nth-child(3n) { background-color: #867555; }

        .service-card h3 { 
            font-family: 'Space Grotesk', sans-serif; 
            font-size: 1.25rem; 
            font-weight: 600; 
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .service-image {
            width: 100%;
            margin: 0.75rem 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .service-image svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .service-image img {
            max-height: 300px;
            width: 100%;
            max-width: 100%;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }

        .rounded-img {
            border-radius: 15px;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            color: var(--gold);
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .service-area-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .service-area-card li {
            color: var(--light-grey);
            font-size: 0.95rem;
            padding: 0.25rem 0;
        }

        .location-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gold);
            margin: 0;
        }

        .faq-answer {
            color: var(--light-grey);
            font-size: 0.95rem;
            line-height: 1.7;
            padding: 0 1.5rem 1.5rem;
            display: none;
            text-align: left;
        }

        .faq-answer p {
            margin-bottom: 1rem;
        }

        .faq-answer ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .faq-answer li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: #434656 !important;
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background-color: transparent;
            border: none;
            color: var(--white);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* CTA Card */
        .cta-card {
            background-color: #004c77 !important;
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        /* Footer */
        .footer {
            background-color: #001f47;
            border-top: 1px solid var(--glass-border);
            padding: 40px 0 0 0;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
            color: var(--light-grey);
            font-size: 0.9rem;
        }

        .footer-section a {
            color: var(--light-grey);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-banner {
            margin: 50px 0 0 0;
            padding: 0;
            width: 100%;
            line-height: 0;
        }

        .footer-banner img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            vertical-align: bottom;
        }

        .footer-copyright {
            color: var(--light-grey);
            font-size: 0.875rem;
            text-align: center;
            padding: 1.5rem;
            margin: 0;
        }

        /* Desktop Styles */
        @media (min-width: 769px) {
            .nav-container {
                padding: 0 2rem;
                justify-content: flex-start;
                gap: 3rem;
            }

            .mobile-menu-toggle {
                display: none;
            }

            .nav-menu {
                display: flex;
                position: static;
                flex-direction: row;
                background: none;
                padding: 0;
                flex: 1;
                justify-content: flex-start;
                gap: 2rem;
            }

            .faq-desktop-only {
                display: list-item;
            }

            .book-consult-item {
                margin-left: auto;
            }

            .hero {
                padding: 120px 2rem 100px;
            }

            

            .hero-subtitle {
                font-size: clamp(0.8rem, 1.2vw, 0.95rem);
            }

            .hero-buttons {
                flex-direction: row;
            }

            .btn {
                width: auto;
            }

            .hero-stats {
                flex-direction: row;
                gap: 4rem;
                justify-content: center;
            }

            section {
                padding: 40px 2rem;
            }

            .section-title {
                font-size: clamp(1.5rem, 3vw, 2rem);
            }

            .framework-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .service-area-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .framework-card,
            .service-card,
            .service-area-card {
                padding: 2rem;
            }

            .cta-card {
                padding: 4rem;
            }

            .footer {
                padding: 60px 2rem 30px;
            }
        }

        @media (min-width: 1025px) {
            .framework-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .framework-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 769px) {
            .footer-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 1rem 1.5rem;
            }

            .footer-cta-mobile {
                display: none;
            }

            .footer-cta-desktop {
                display: list-item;
            }

            .footer-banner img {
                width: 100%;
                max-width: 600px;
                height: auto;
                margin: 0 auto;
                display: block;
            }

            .service-image {
                width: calc(100% + 3rem) !important;
                margin-left: -1.5rem !important;
                margin-right: -1.5rem !important;
                padding: 0 !important;
            }

            .service-image img {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
            }
        }

    .service-button-container {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .service-learn-more {
        background-color: var(--gold);
        color: var(--bg-primary);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
        display: inline-block;
    }

    .service-learn-more:hover {
        background-color: #f4dd72;
        color: var(--bg-primary);
    }

    /* Consistent spacing between service rows */
    .services-grid.services-row-spacing {
        margin-top: 3rem !important;
    }

    

/* ============================================================================
   CRITICAL FIXES ONLY
   ============================================================================ */

/* Column Image Vertical Centering */
.column-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Card Button Spacing */
.service-card .learn-more {
    display: inline-block;
    margin-top: 20px;
}

/* Industries Grid Fix */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background-color: #434656;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card:nth-child(4n+1) {
    background-color: #004c77; /* Blue */
}

.industry-card:nth-child(4n+2) {
    background-color: #434656; /* Grey */
}

.industry-card:nth-child(4n+3) {
    background-color: #c9b358; /* Gold */
}

.industry-card:nth-child(4n+4) {
    background-color: #ebbd4a; /* Yellow */
}

.industry-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.industry-card p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.industry-card:nth-child(4n+3) h3,
.industry-card:nth-child(4n+4) h3 {
    color: #1c1c1c;
}

.industry-card:nth-child(4n+3) p,
.industry-card:nth-child(4n+4) p {
    color: #1c1c1c;
    opacity: 1;
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    stroke: currentColor;
}

.industry-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Mobile Navigation Fix */
@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: #001f47;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================================
   TWO COLUMN LAYOUT - CRITICAL
   ============================================================================ */

.two-column-section {
    padding: 4rem 0;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Reversed sections: image is now first in HTML, so no RTL needed */

.column-text {
    padding: 2rem;
}

.column-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #c9b358;
}

.column-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #ffffff;
}

.column-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.column-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #ffffff;
}

.column-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Mobile: Stack columns */
@media (max-width: 768px) {
    .two-column-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .column-text {
        padding: 1rem;
    }
    
    .column-text h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* Center the Growth Systems List */
.three-fifths-grid {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 2rem;
}

.three-fifths-content {
    display: block;
}

.three-fifths-content.flex-center {
    display: flex;
    justify-content: center;
}

.growth-systems-list {
    list-style-position: inside;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.growth-systems-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Mobile: Full width */
@media (max-width: 768px) {
    .three-fifths-grid {
        grid-template-columns: 1fr;
    }
    
    .three-fifths-empty {
        display: none;
    }
    
    .growth-systems-list {
        padding-left: 1.5rem;
    }
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #c9b358;
    margin-bottom: 1rem;
}

.section-header p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 1rem;
}

/* Service Card Detailed Styling */
.service-card p {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

.service-card .learn-more {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #c9b358;
    color: #001f47;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .learn-more:hover {
    background-color: #ebbd4a;
    transform: scale(1.05);
}

/* Agentic AI Gold Box - Constrained Width */
.agentic-ai-box {
    background-color: transparent;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid #ffffff;
}

.agentic-ai-box p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.agentic-ai-box p:last-child {
    margin-bottom: 0;
}

/* Steps Grid - 4 Column Cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background-color: #004c77;
    border: 1px solid rgba(201, 179, 88, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #c9b358;
}

}



.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: #c9b358;
    margin-bottom: 1rem;
}

.step-card p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gold cards need darker text for headings */
.step-card:nth-child(3n) h3 {
    color: #1c1c1c;
}

.step-card:nth-child(3n) p {
    color: #1c1c1c;
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Rotating background colors for 3-column grid: Blue, Grey, Gold */
.step-card:nth-child(3n+1) {
    background-color: #004c77; /* Blue - cards 1, 4 */
}

.step-card:nth-child(3n+2) {
    background-color: #434656; /* Grey - cards 2, 5 */
}

.step-card:nth-child(3n) {
    background-color: #c9b358; /* Gold - cards 3, 6 */
}
