
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            padding: 0;
            padding-top: 100px; /* Space for fixed header */
            margin: 0;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Fixed Navigation Header */
        .nav-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #f8f9fa;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            z-index: 1000;
            gap: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            max-width: 200px;
            height: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .hamburger {
            background: transparent !important;
            border: none !important;
            cursor: pointer !important;
            padding: 10px !important;
            z-index: 1001 !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 5px !important;
            border-radius: 0 !important;
            transition: all 0.3s ease !important;
            width: 40px !important;
            height: 40px !important;
            align-items: center !important;
            justify-content: center !important;
            position: absolute !important;
            right: 20px !important;
        }

        .hamburger:hover {
            background: rgba(0, 0, 0, 0.05) !important;
        }

        .hamburger-line {
            width: 30px !important;
            height: 3px !important;
            background: #4a6fa5 !important;
            border-radius: 2px !important;
            transition: all 0.3s ease !important;
            display: block !important;
        }

        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 60px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 60px);
            background: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu nav {
            padding: 20px;
        }

        .mobile-menu nav a {
            display: block;
            padding: 15px 10px;
            color: #1a3a52;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .mobile-menu nav a:hover {
            background: #f8f9fa;
            padding-left: 20px;
        }

        /* Overlay */
        .menu-overlay {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .header {
            text-align: center;
            color: white;
            padding: 10px 20px 20px 20px;
            animation: fadeInDown 0.8s ease;
            overflow: visible;
        }

        .header img {
            max-width: 300px;
            width: 100%;
            height: auto;
            margin: 0 auto 10px auto;
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
            display: block;
            object-fit: contain;
        }

        .header .subtitle {
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.95;
            margin: 0;
            padding: 0;
        }

        .header .phone-number {
            font-size: 1.1rem;
            font-weight: 500;
            color: white;
            margin-top: 15px;
            text-align: center;
            opacity: 0.95;
            -webkit-tap-highlight-color: transparent;
        }

        .header .phone-number strong {
            color: #fbbf24;
            font-weight: 600;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
        }

        .header-cta-button {
            display: inline-block;
            background: white;
            color: #4a6fa5;
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
            letter-spacing: 0;
            text-transform: none;
            border: 2px solid white;
            white-space: nowrap;
        }

        .header-cta-button:hover {
            background: #f0f9ff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
            border-color: white;
        }

        .status-indicators {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 12px;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .status-dot.green {
            background: #10b981;
            opacity: 0.4;
        }

        .status-dot.yellow {
            background: #f59e0b;
            box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
            animation: pulse-orange 2s infinite;
        }

        .status-dot.red {
            background: #ef4444;
            opacity: 0.4;
        }

        @keyframes pulse-orange {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }

        .status-indicators {
            cursor: pointer;
            position: relative;
        }

        .status-popup {
            position: absolute;
            top: 35px;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            padding: 20px;
            min-width: 280px;
            z-index: 2000;
            display: none;
            animation: fadeInDown 0.3s ease;
        }

        .status-popup.show {
            display: block;
        }

        .status-popup::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid white;
        }

        .status-popup-header {
            font-size: 1rem;
            font-weight: 600;
            color: #1a3a52;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }

        .status-popup-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
        }

        .status-popup-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            min-width: 14px;
        }

        .status-popup-text {
            color: #333;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .status-popup-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            color: #6b7280;
            font-size: 1.5rem;
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .status-popup-close:hover {
            background: #f3f4f6;
            color: #1a3a52;
        }

        .nav-button-group {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            pointer-events: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
        }

        .nav-button-group.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }
        
        .nav-logo {
            transition: opacity 0.3s ease;
        }
        
        .nav-logo.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .main-header-button {
            display: inline-block;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            padding: 14px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            letter-spacing: 0;
            text-transform: none;
            border: none;
            white-space: nowrap;
        }

        .main-header-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        .main-card {
            background: transparent;
            border-radius: 0;
            padding: 0;
            max-width: 100%;
            width: 100%;
            margin: 0;
            padding-top: 20px;
            box-shadow: none;
            animation: fadeInUp 0.8s ease;
        }

        /* Full-width hero background wrapper */
        .hero-full-width-bg {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            width: 100%;
            padding: 0 0 40px 0;
            margin: -100px 0 0 0; /* Extend up to fill space under header */
            padding-top: 100px; /* Compensate for negative margin */
        }

        .hero-header-section {
            background: transparent;
            border-radius: 15px;
            padding: 60px 40px 100px 40px;
            margin-bottom: 0;
            text-align: center;
            box-shadow: none;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }


        .main-card h2 {
            font-size: 3rem;
            color: #1e293b;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: none;
            line-height: 1.2;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }

        .main-card .subheader {
            font-size: 1.25rem;
            color: #64748b;
            text-align: center;
            margin-top: 0;
            margin-bottom: 0;
            font-weight: 400;
            line-height: 1.6;
            text-shadow: none;
            position: relative;
            z-index: 1;
        }

        .main-card .subheader strong {
            color: #1e293b;
            font-weight: 600;
        }

        .hero-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            display: block;
        }

        /* Hero Carousel Styles */
        .hero-carousel-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 0; /* Remove border radius since full-width bg handles this */
        }

        .hero-carousel-slides {
            position: relative;
            width: 100%;
            height: 610px;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            pointer-events: none;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            position: relative;
            pointer-events: auto;
        }

        .carousel-content-slide {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 15px;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .carousel-image {
            flex: 1;
            max-width: 50%;
            height: 500px;
            overflow: hidden;
            border-radius: 12px;
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .carousel-text {
            flex: 1;
            padding: 60px 50px 100px 50px;
            color: #64748b;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .carousel-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #1e293b;
            font-weight: 700;
            line-height: 1.2;
        }

        .carousel-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #64748b;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .carousel-back-btn {
            background: white;
            color: #3b82f6;
            border: 2px solid #3b82f6;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .carousel-back-btn:hover {
            background: #eff6ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        /* Carousel Navigation Arrows - Positioned at Bottom */
        .carousel-arrow {
            position: absolute;
            bottom: 15px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid #3b82f6;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            color: #3b82f6;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        .carousel-arrow:hover {
            background: #eff6ff;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
        }

        .carousel-arrow:active {
            transform: scale(0.95);
        }

        .carousel-prev {
            left: 80px;
        }

        .carousel-next {
            right: 80px;
        }

        /* Carousel Dot Indicators */
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .carousel-dot:hover {
            background: rgba(59, 130, 246, 0.6);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: #3b82f6;
            width: 32px;
            border-radius: 6px;
        }

        .enrollment-window-badge:hover {
            background: rgba(251, 191, 36, 0.25) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4) !important;
        }

        /* Powered By Animation */
        .powered-by-animation {
            position: fixed;
            top: 70px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(74, 111, 165, 0.3);
            animation: fadeInOut 4s ease-in-out forwards;
            pointer-events: none;
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
                transform: translateX(-50%) translateY(-10px);
            }
            15% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            85% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(-10px);
                visibility: hidden;
            }
        }

        @media (max-width: 768px) {
            .powered-by-animation {
                top: 100px;
                font-size: 0.75rem;
                padding: 6px 18px;
            }
        }

        /* Benefits Carousel Styles */
        .benefits-carousel-section {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            margin: 0 auto 40px auto;
            max-width: 1400px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .benefits-carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .benefits-carousel-slides {
            position: relative;
            width: 100%;
            min-height: 450px;
        }

        .benefits-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            pointer-events: none;
        }

        .benefits-slide.active {
            opacity: 1;
            visibility: visible;
            position: relative;
            pointer-events: auto;
        }

        .benefits-content-slide {
            display: flex;
            align-items: center;
            min-height: 450px;
            padding: 40px 40px 90px 40px;
            gap: 40px;
        }

        .benefits-image {
            flex: 1;
            max-width: 45%;
            height: 400px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Match background color for first slide image container to photo background */
        .benefits-slide[data-slide="0"] .benefits-image {
            background: #d3d0cb;
        }

        .benefits-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        /* First slide uses landscape photo - fit to fill */
        .benefits-slide[data-slide="0"] .benefits-image img {
            object-fit: cover;
            object-position: center center;
        }

        .benefits-text {
            flex: 1;
            max-width: 55%;
            padding: 20px;
        }

        .benefits-text h3 {
            font-size: 1.8rem;
            color: #1a3a52;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.3;
        }

        .benefits-text p {
            font-size: 1.05rem;
            color: #333;
            line-height: 1.8;
            margin: 0;
        }

        /* Benefits Carousel Navigation Arrows - Positioned at Bottom */
        .benefits-arrow {
            position: absolute;
            bottom: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(74, 111, 165, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .benefits-arrow:hover {
            background: #4a6fa5;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }

        .benefits-arrow:active {
            transform: scale(0.95);
        }

        .benefits-prev {
            left: 80px;
        }

        .benefits-next {
            right: 80px;
        }

        /* Benefits Carousel Dot Indicators */
        .benefits-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .benefits-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(74, 111, 165, 0.4);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .benefits-dot:hover {
            background: rgba(74, 111, 165, 0.7);
            transform: scale(1.2);
        }

        .benefits-dot.active {
            background: #4a6fa5;
            width: 32px;
            border-radius: 6px;
        }

        .welcome-card {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border: 2px solid #d1e7ff;
            box-shadow: 0 4px 12px rgba(26, 58, 82, 0.08);
        }

        .welcome-card h3 {
            font-size: 1.8rem;
            color: #1a3a52;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }

        .welcome-card p {
            font-size: 1.05rem;
            color: #333;
            line-height: 1.7;
            margin-bottom: 15px;
            text-align: left;
        }

        .welcome-card p:last-child {
            margin-bottom: 0;
        }

        .welcome-card strong {
            color: #1a3a52;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .benefit-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .benefit-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            background: #ffffff;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: none;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 2;
        }

        .benefit-text {
            flex: 1;
            font-size: 1.05rem;
            color: #333;
            line-height: 1.5;
        }

        .cta-button {
            display: block;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            padding: 18px 40px;
            border-radius: 10px;
            font-size: 1.3rem;
            font-weight: 600;
            text-align: center;
            margin: 0 auto;
            width: fit-content;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            letter-spacing: 0;
        }

        .cta-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Business listing on desktop - multi-column layout */
        @media (min-width: 1024px) {
            .business-list-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        /* Benefits grid responsive breakpoints */
        @media (max-width: 900px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive Design */
        /* Navigation Header Responsive */
        @media (max-width: 768px) {
            .nav-header {
                padding: 0.75rem 1.5rem;
                transition: padding 0.3s ease;
            }
            
            .nav-logo img {
                max-width: 180px;
                height: auto;
            }
            
            /* Reduce header height when logo is hidden */
            .nav-header:has(.nav-logo.hidden) {
                padding: 0.5rem 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .nav-header {
                padding: 0.75rem 1rem;
                transition: padding 0.3s ease;
            }
            
            .nav-logo img {
                max-width: 180px;
                height: auto;
            }
            
            /* Reduce header height when logo is hidden */
            .nav-header:has(.nav-logo.hidden) {
                padding: 0.5rem 1rem;
            }
        }
        
        /* Larger iPhones (Pro Max models: 428px+) - Larger logo for bigger screens */
        @media (min-width: 429px) and (max-width: 480px) {
            .nav-logo img {
                max-width: 220px;
                height: auto;
            }
        }
        
        /* Accreditation carousel logo - Smaller on mobile */
        @media (max-width: 427px) {
            .accreditation-carousel-logo {
                max-width: 70px !important;
            }

            .nav-logo img {
                max-width: 180px !important;
                height: auto;
            }
            
            /* Keep original 140px image at 427px */
            .hero-slide[data-slide="1"] .carousel-image {
                height: 250px !important;
                max-height: 250px !important;
                flex: none !important;
            }
        }
        
        /* Directory Search Hero - Responsive */
        @media (max-width: 768px) {
            .directory-hero-section {
                padding: 50px 20px !important;
            }
            
            .directory-hero-section h1 {
                font-size: 2.2rem !important;
                margin-bottom: 35px !important;
            }
            
            /* Search card - stack inputs vertically */
            .directory-hero-section > div > div:first-of-type {
                padding: 25px 20px !important;
            }
            
            .directory-hero-section > div > div:first-of-type > div {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }
            
            .directory-hero-section button {
                width: 100% !important;
                padding: 16px 24px !important;
                font-size: 1.1rem !important;
            }
            
            /* HIDE categories grid entirely on mobile */
            .directory-hero-section > div > div:last-of-type {
                display: none !important;
            }
        }
        
        @media (max-width: 480px) {
            .directory-hero-section {
                padding: 40px 15px !important;
            }
            
            .directory-hero-section h1 {
                font-size: 1.75rem !important;
                margin-bottom: 30px !important;
            }
            
            /* Search card - tighter mobile spacing */
            .directory-hero-section > div > div:first-of-type {
                padding: 20px 15px !important;
                margin-bottom: 35px !important;
            }
            
            .directory-hero-section > div > div:first-of-type > div {
                gap: 12px !important;
            }
            
            /* Search inputs - optimize for mobile */
            .directory-hero-section input {
                padding: 14px 14px 14px 45px !important;
                font-size: 0.95rem !important;
            }
            
            .directory-hero-section button {
                padding: 14px 20px !important;
                font-size: 1rem !important;
            }
            
            /* Categories - better mobile grid */
            .directory-hero-section > div > div:last-of-type {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 20px !important;
                margin-top: 35px !important;
            }
            
            .directory-hero-section > div > div:last-of-type a > div:first-child {
                width: 70px !important;
                height: 70px !important;
            }
            
            .directory-hero-section > div > div:last-of-type a > div:first-child svg {
                width: 32px !important;
                height: 32px !important;
            }
            
            .directory-hero-section > div > div:last-of-type a > div:last-child {
                font-size: 0.8rem !important;
                margin-top: 10px !important;
            }
        }
        
        /* Larger image for 429px+ to prevent overlap */
        @media (min-width: 429px) and (max-width: 768px) {
            .hero-slide[data-slide="1"] .carousel-image {
                height: 250px !important;
                max-height: 250px !important;
                flex: none !important;
            }
        }
        
        /* Accreditation Slide Mobile Styles */
        @media (max-width: 768px) {

            .hero-slide[data-slide="1"] .carousel-text {
                padding: 20px 15px 80px 15px !important;
                max-height: none !important;
                overflow-y: visible !important;
            }
            
            .hero-slide[data-slide="1"] h2 {
                font-size: 1.4rem !important;
                margin-bottom: 10px !important;
                margin-top: 0 !important;
            }
            
            .hero-slide[data-slide="1"] p {
                font-size: 0.9rem !important;
                margin-bottom: 12px !important;
            }

            /* Compact accreditation logo on mobile for slide 2 */
            .hero-slide[data-slide="1"] .accreditation-carousel-logo {
                max-width: 100px !important;
            }

            /* Stack and reduce link spacing */
            .hero-slide[data-slide="1"] div[style*="margin-top: 20px"] {
                margin-top: 10px !important;
            }

            .hero-slide[data-slide="1"] div[style*="margin: 25px auto"] {
                margin: 10px auto !important;
            }

            .hero-slide[data-slide="1"] div[style*="margin-top: 20px"] a {
                font-size: 0.8rem !important;
                margin: 0 5px !important;
            }
        }
        
        /* Loading screen for mobile carousel */
        .carousel-loading-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            border-radius: 15px;
        }
        
        .carousel-loading-text {
            font-size: 1.2rem;
            color: #3b82f6;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            /* MOBILE CAROUSEL WITH PHOTO ANIMATION */
            
            .carousel-loading-screen {
                display: flex;
            }
            
            .hero-carousel-container.loading .hero-carousel-slides {
                opacity: 0;
            }
            
            .hero-carousel-container.ready .carousel-loading-screen {
                display: none;
            }
            
            .hero-carousel-container.ready .hero-carousel-slides {
                opacity: 1;
                transition: opacity 0.3s ease;
            }
            
            /* Ensure all carousel slides have consistent height - INCREASED for full text visibility */
            .hero-carousel-slides {
                height: auto !important;
                min-height: 450px !important;
            }
            
            .carousel-content-slide {
                position: relative;
                min-height: 450px !important;
                height: auto !important;
                overflow: visible;
                flex-direction: column !important;
                padding-bottom: 80px;
            }
            
            .hero-slide .carousel-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 280px;
                max-width: 100%;
                opacity: 0;
                z-index: 1;
                transition: opacity 0.5s ease;
                display: block;
                background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
                border-radius: 15px 15px 0 0;
                overflow: hidden;
            }
            
            .hero-slide .carousel-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
            }
            
            /* Animation states for mobile carousel */
            .hero-slide .carousel-image.showing {
                opacity: 1;
                z-index: 10;
            }
            
            .hero-slide .carousel-image.fading {
                opacity: 0;
                transition: opacity 2.5s ease;
                z-index: 10;
            }
            
            /* Welcome overlay for carousel animation */
            .carousel-welcome-overlay {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 15;
                color: white;
                font-size: 2rem;
                font-weight: 700;
                text-align: center;
                text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
                opacity: 0;
                transition: opacity 0.8s ease;
                pointer-events: none;
                width: 90%;
                line-height: 1.3;
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            
            .carousel-welcome-overlay .powered-by {
                font-size: 0.85rem;
                font-weight: 500;
                opacity: 0.9;
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            }
            
            .carousel-welcome-overlay.show {
                opacity: 1;
            }
            
            .carousel-welcome-overlay.fade-out {
                opacity: 0;
                transition: opacity 1.5s ease;
            }
            
            .carousel-text {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 2;
                padding: 20px 15px 100px 15px !important;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .hero-slide .carousel-text.hidden-initial {
                opacity: 0;
            }
            
            .hero-slide .carousel-text.fading-in {
                opacity: 1;
                transition: opacity 2s ease;
            }
            
            /* Fix for slide 5 text-only - make text visible */
            .hero-slide[data-slide="4"] .carousel-text {
                opacity: 1 !important;
            }
            
            /* Text sizing for all carousel slides */
            .carousel-text h2 {
                font-size: 1.35rem !important;
                margin-bottom: 12px !important;
                margin-top: 5px !important;
                line-height: 1.25 !important;
                text-align: center;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                white-space: normal !important;
            }
            
            .carousel-text p {
                font-size: 0.92rem !important;
                margin-bottom: 12px !important;
                line-height: 1.5 !important;
                text-align: center;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                white-space: normal !important;
            }
            
            .carousel-text .subheader {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                white-space: normal !important;
            }
            
            .carousel-text .subheader {
                font-size: 1rem !important;
            }
            
            .carousel-text .main-header-button {
                margin-top: 12px !important;
                padding: 10px 20px !important;
                font-size: 0.95rem !important;
            }

            /* Logo sizing for mobile */
            .hero-slide[data-slide="1"] .accreditation-carousel-logo-slide2 {
                max-width: 110px !important;
            }

            /* Keep link styling consistent */
            .hero-slide[data-slide="1"] div[style*="margin-top: 20px"] a {
                font-size: 0.8rem !important;
                margin: 0 5px !important;
                display: inline-block !important;
            }

            .hero-slide[data-slide="1"] div[style*="margin: 25px auto"] {
                margin: 10px auto !important;
            }

            .hero-slide[data-slide="1"] div[style*="margin-top: 20px"] {
                margin-top: 15px !important;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 15px 25px 15px;
            }

            .header img {
                max-width: 250px;
                height: auto;
            }

            .header .subtitle {
                font-size: 0.6rem;
            }

            .header .phone-number {
                font-size: 1rem;
                margin-top: 12px;
            }

            .main-header-button {
                font-size: 1rem;
                padding: 12px 28px;
            }

            .header-cta-button {
                font-size: 0.8rem;
                padding: 6px 16px;
            }

            .status-indicators {
                gap: 6px;
                margin-left: 8px;
            }

            .status-dot {
                width: 8px;
                height: 8px;
            }

            .status-popup {
                min-width: 260px;
                padding: 15px;
                right: -10px;
            }

            .status-popup-header {
                font-size: 0.95rem;
            }

            .status-popup-text {
                font-size: 0.85rem;
            }

            .main-card {
                padding: 0;
                width: 100%;
            }

            .hero-full-width-bg {
                margin: -100px 0 0 0;
                padding: 100px 0 30px 0;
            }

            .hero-header-section {
                padding: 50px 30px 85px 30px;
                border-radius: 15px;
                margin-bottom: 0;
                min-height: 450px;
            }

            .hero-carousel-slides {
                height: 610px;
            }

            .carousel-content-slide {
                flex-direction: column;
                min-height: 450px;
            }

            .carousel-image {
                max-width: 100%;
                height: 250px;
            }

            .carousel-text {
                padding: 40px 25px 80px 25px;
            }

            .carousel-text h2 {
                font-size: 2rem;
            }

            .carousel-text p {
                font-size: 1.05rem;
            }

            .carousel-arrow {
                width: 45px;
                height: 45px;
                bottom: 12px;
            }

            .carousel-prev {
                left: 60px;
            }

            .carousel-next {
                right: 60px;
            }

            .benefits-carousel-section {
                padding: 40px 25px;
            }

            .benefits-carousel-slides {
                min-height: 600px;
            }

            .benefits-content-slide {
                flex-direction: column;
                min-height: 600px;
                padding: 30px 25px 80px 25px;
                gap: 30px;
            }

            .benefits-image {
                max-width: 100%;
                height: 280px;
                overflow: hidden;
            }

            /* Ensure ALL slide images match height on tablet */
            .benefits-slide .benefits-image {
                height: 280px;
                width: 100%;
                max-width: 100%;
                flex: none;
            }

            .benefits-slide .benefits-image img {
                object-fit: cover;
                object-position: center 10%;
                max-height: 280px;
                width: 100%;
                height: 100%;
                min-width: 100%;
            }

            /* First slide on tablet - landscape photo fills container */
            .benefits-slide[data-slide="0"] .benefits-image img {
                object-fit: cover;
                object-position: center center;
            }

            .benefits-text {
                max-width: 100%;
                padding: 0;
            }

            .benefits-text h3 {
                font-size: 1.7rem;
            }

            .benefits-text p {
                font-size: 1.05rem;
            }

            .benefits-arrow {
                width: 45px;
                height: 45px;
                bottom: 15px;
            }

            .benefits-prev {
                left: 60px;
            }

            .benefits-next {
                right: 60px;
            }

            /* How It Works Section Mobile */
            .how-it-works-section {
                padding: 35px 25px !important;
                margin: 0 auto 40px auto !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            .how-it-works-section h2 {
                font-size: 2rem !important;
                margin-bottom: 15px !important;
            }

            .how-it-works-section > p {
                font-size: 1rem !important;
            }

            .how-it-works-section .main-header-button {
                width: 100%;
                max-width: 100%;
                font-size: 1rem !important;
                padding: 14px 24px !important;
            }

            .main-card h2 {
                font-size: 2.2rem;
            }

            .main-card .subheader {
                font-size: 1.1rem;
            }

            .hero-image {
                border-radius: 12px;
                margin-bottom: 30px;
            }

            .benefit-card {
                padding: 15px;
                gap: 15px;
            }

            .benefit-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
            }

            .benefit-text {
                font-size: 0.95rem;
            }

            .cta-button {
                font-size: 1.1rem;
                padding: 15px 30px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 10px 10px 20px 10px;
            }

            .header img {
                max-width: 200px;
                height: auto;
            }

            .header .subtitle {
                font-size: 0.55rem;
            }

            .header .phone-number {
                font-size: 0.9rem;
                margin-top: 10px;
            }

            .main-header-button {
                font-size: 0.9rem;
                padding: 10px 24px;
                margin-top: 15px;
            }

            .header-cta-button {
                font-size: 0.7rem;
                padding: 6px 12px;
            }

            .status-indicators {
                gap: 5px;
                margin-left: 6px;
            }

            .status-dot {
                width: 7px;
                height: 7px;
            }

            .status-popup {
                min-width: 240px;
                padding: 12px;
                right: -20px;
                font-size: 0.85rem;
            }

            .status-popup-header {
                font-size: 0.9rem;
                margin-bottom: 12px;
            }

            .status-popup-item {
                padding: 8px 0;
                gap: 10px;
            }

            .status-popup-dot {
                width: 12px;
                height: 12px;
                min-width: 12px;
            }

            .status-popup-text {
                font-size: 0.8rem;
            }

            .hero-full-width-bg {
                margin: -100px 0 0 0;
                padding: 100px 0 25px 0;
            }

            .hero-header-section {
                padding: 40px 20px 80px 20px;
                border-radius: 12px;
                margin-bottom: 0;
                min-height: 400px;
            }

            .hero-carousel-slides {
                height: auto;
                min-height: 380px;
            }

            .carousel-content-slide {
                min-height: 380px;
                max-height: none;
            }

            .carousel-image {
                height: 140px;
                flex-shrink: 0;
            }

            .carousel-text {
                padding: 20px 15px 80px 15px;
                overflow-y: visible;
                max-height: none;
            }

            .carousel-text h2 {
                font-size: 1.4rem;
                margin-bottom: 10px;
                line-height: 1.2;
            }

            .carousel-text p {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 12px;
            }

            .carousel-text .main-header-button,
            .carousel-text a[class*="button"] {
                margin-top: 12px !important;
            }

            .carousel-back-btn {
                padding: 10px 24px;
                font-size: 0.9rem;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                bottom: 10px;
            }

            .carousel-prev {
                left: 50px;
            }

            .carousel-next {
                right: 50px;
            }

            .carousel-dots {
                bottom: 13px;
                gap: 8px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            .carousel-dot.active {
                width: 24px;
            }

            .benefits-carousel-section {
                padding: 30px 20px;
            }

            .benefits-carousel-slides {
                min-height: 550px;
            }

            .benefits-content-slide {
                flex-direction: column;
                min-height: 550px;
                padding: 25px 15px 75px 15px;
                gap: 25px;
            }

            .benefits-image {
                max-width: 100%;
                height: 220px;
                overflow: hidden;
            }

            /* Ensure ALL slide images match height on mobile */
            .benefits-slide .benefits-image {
                height: 220px;
                width: 100%;
                max-width: 100%;
                flex: none;
            }

            .benefits-slide .benefits-image img {
                object-fit: cover;
                object-position: center 15%;
                max-height: 220px;
                width: 100%;
                height: 100%;
                min-width: 100%;
            }

            /* First slide on mobile - landscape photo fills container */
            .benefits-slide[data-slide="0"] .benefits-image img {
                object-fit: cover;
                object-position: center center;
            }

            .benefits-text {
                max-width: 100%;
                padding: 0;
            }

            .benefits-text h3 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            .benefits-text p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .benefits-arrow {
                width: 40px;
                height: 40px;
                bottom: 12px;
            }

            .benefits-prev {
                left: 50px;
            }

            .benefits-next {
                right: 50px;
            }

            .benefits-dots {
                bottom: 15px;
                gap: 8px;
            }

            .benefits-dot {
                width: 10px;
                height: 10px;
            }

            .benefits-dot.active {
                width: 24px;
            }

            /* How It Works Section Small Mobile */
            .how-it-works-section {
                padding: 30px 20px !important;
                margin: 0 auto 40px auto !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            .how-it-works-section h2 {
                font-size: 1.8rem !important;
            }

            .how-it-works-section > p {
                font-size: 0.95rem !important;
                margin-bottom: 25px !important;
            }

            .main-card h2 {
                font-size: 1.75rem;
                margin-bottom: 15px;
            }

            .main-card .subheader {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .hero-image {
                border-radius: 10px;
                margin-bottom: 25px;
            }

            .benefit-card {
                padding: 12px;
                gap: 12px;
            }

            .benefit-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }

            .benefit-icon svg {
                width: 24px;
                height: 24px;
            }

            .benefit-text {
                font-size: 0.9rem;
            }
        }


        /* Loading animation for page load */
        @keyframes pageLoad {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        body {
            animation: pageLoad 0.5s ease;
        }

        .header, .main-card {
            position: relative;
            z-index: 2;
        }

        /* Contact Section Styles */
        .contact-section {
            background: white;
            border-radius: 20px;
            padding: 60px 20px;
            margin: 0 auto 40px auto;
            max-width: 1200px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e2e8f0;
        }

        .contact-card h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .contact-card p {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        .contact-card strong {
            color: #3b82f6;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 15px;
            }

            .contact-card {
                padding: 30px 25px;
            }

            .contact-card h2 {
                font-size: 1.8rem;
            }

            .contact-card p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-card {
                padding: 25px 20px;
            }

            .contact-card h2 {
                font-size: 1.6rem;
            }

            .contact-card p {
                font-size: 0.95rem;
            }
        }

        /* Team Section Styles */
        .team-section {
            background: white;
            border-radius: 20px;
            padding: 80px 20px;
            margin: 0 auto 40px auto;
            max-width: 1200px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .team-thumbnails-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .team-thumbnails-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .team-thumbnails-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .team-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .team-header p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .leadership-experience-box {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 16px;
            padding: 40px;
            margin: 40px auto 60px;
            max-width: 900px;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .leadership-experience-box h3 {
            color: #1e3a8a;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

        .leadership-experience-box p {
            color: #475569;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: center;
        }

        .leadership-experience-box .experience-intro {
            font-size: 1.15rem;
            margin-bottom: 25px;
        }

        .leadership-experience-box .experience-list-title {
            color: #334155;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .leadership-experience-box ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            display: grid;
            gap: 12px;
        }

        .leadership-experience-box li {
            color: #334155;
            font-size: 1.05rem;
            padding: 12px 20px;
            padding-left: 45px;
            position: relative;
            background: white;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .leadership-experience-box li:hover {
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
        }

        .leadership-experience-box li:before {
            content: "✓";
            position: absolute;
            left: 15px;
            color: #3b82f6;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .leadership-experience-box .closing-statement {
            margin-top: 25px;
            font-size: 1.1rem;
            color: #475569;
            font-style: italic;
            border-top: 2px solid #e2e8f0;
            padding-top: 25px;
        }

        .leadership-structure {
            max-width: 1200px;
            margin: 0 auto;
        }

        .leadership-category {
            background: white;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .category-photos {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .category-photos img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center top;
            border: 4px solid #e2e8f0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .category-photos img:hover {
            border-color: #3b82f6;
            transform: scale(1.05);
        }

        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3b82f6;
        }

        .leadership-role {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e2e8f0;
        }

        .leadership-role:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .role-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a3a52;
            margin-bottom: 12px;
        }

        .role-description {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .role-contact {
            font-size: 0.95rem;
            color: #333;
            margin: 0;
        }

        .role-contact a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .role-contact a:hover {
            color: #1e3a8a;
            text-decoration: underline;
        }

        .accountability-statement {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            border-radius: 16px;
            padding: 40px;
            border: 2px solid #d1e7ff;
        }

        .accountability-statement .category-title {
            border-bottom: 3px solid #3b82f6;
        }

        .accountability-statement p {
            font-size: 1.05rem;
            color: #333;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .team-section {
                padding: 60px 15px;
            }

            .team-header h2 {
                font-size: 2rem;
            }

            .team-header p {
                font-size: 1rem;
            }

            .leadership-experience-box {
                padding: 30px 20px;
                margin: 30px auto 40px;
            }

            .leadership-experience-box h3 {
                font-size: 1.5rem;
            }

            .leadership-experience-box p {
                font-size: 1rem;
            }

            .leadership-experience-box li {
                font-size: 0.95rem;
                padding: 10px 15px;
                padding-left: 40px;
            }

            .leadership-category {
                padding: 30px 25px;
            }

            .category-photos {
                gap: 15px;
                margin-bottom: 25px;
            }

            .category-photos img {
                width: 100px;
                height: 100px;
            }

            .category-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }

            .role-title {
                font-size: 1.15rem;
            }

            .role-description {
                font-size: 0.95rem;
            }

            .role-contact {
                font-size: 0.9rem;
            }

            .accountability-statement {
                padding: 30px 25px;
            }
        }

        /* Legal Team Photo - Base styles */
        .legal-team-photo {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border: 2px solid #e2e8f0;
        }
        
        /* Legal Team Photo - Desktop only sizing */
        @media (min-width: 769px) {
            .legal-team-photo {
                max-width: 700px;
            }
        }

        @media (max-width: 480px) {
            .team-section {
                padding: 40px 10px;
            }

            .team-header h2 {
                font-size: 1.75rem;
            }

            .team-header p {
                font-size: 0.95rem;
            }

            .leadership-experience-box {
                padding: 25px 15px;
                margin: 25px auto 35px;
            }

            .leadership-experience-box h3 {
                font-size: 1.3rem;
            }

            .leadership-experience-box p {
                font-size: 0.95rem;
            }

            .leadership-experience-box li {
                font-size: 0.9rem;
                padding: 8px 12px;
                padding-left: 35px;
            }

            .leadership-experience-box li:before {
                font-size: 1rem;
            }

            .leadership-category {
                padding: 25px 20px;
            }

            .category-photos {
                gap: 12px;
                margin-bottom: 20px;
            }

            .category-photos img {
                width: 85px;
                height: 85px;
            }

            .category-title {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }

            .leadership-role {
                margin-bottom: 25px;
                padding-bottom: 25px;
            }

            .role-title {
                font-size: 1.05rem;
            }

            .role-description {
                font-size: 0.9rem;
            }

            .role-contact {
                font-size: 0.85rem;
            }

            .accountability-statement {
                padding: 25px 20px;
            }

            .accountability-statement p {
                font-size: 0.95rem;
            }
        }

        /* Vertical Business Listing Section */
        .business-listing-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto 40px auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .business-listing-section h2 {
            font-size: 2rem;
            color: #1a3a52;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .business-list-container {
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        /* Desktop: Remove scrolling and show all in grid */
        @media (min-width: 1024px) {
            .business-list-container {
                max-height: none;
                overflow-y: visible;
            }
        }

        /* Custom Scrollbar */
        .business-list-container::-webkit-scrollbar {
            width: 8px;
        }

        .business-list-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .business-list-container::-webkit-scrollbar-thumb {
            background: #4a6fa5;
            border-radius: 10px;
        }

        .business-list-container::-webkit-scrollbar-thumb:hover {
            background: #2a4a62;
        }

        .business-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .business-card:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: #4a6fa5;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .business-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .business-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .business-info {
            flex: 1;
        }

        .business-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a3a52;
            margin-bottom: 4px;
        }

        .business-location {
            font-size: 0.9rem;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .business-location svg {
            width: 14px;
            height: 14px;
            fill: #4a6fa5;
        }

        .business-badge {
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .loading-spinner {
            text-align: center;
            padding: 40px;
            color: #6b7280;
        }

        .no-businesses {
            text-align: center;
            padding: 40px;
            color: #6b7280;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .business-listing-section {
                padding: 30px 25px;
                width: 100%;
                margin-bottom: 40px;
            }

            .business-listing-section h2 {
                font-size: 1.75rem;
            }

            .business-list-container {
                max-height: 500px;
            }

            .business-card {
                padding: 16px;
            }

            .business-name {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .business-listing-section {
                padding: 25px 20px;
            }

            .business-listing-section h2 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .business-list-container {
                max-height: 400px;
            }

            .business-card {
                padding: 14px;
            }

            .business-icon {
                width: 35px;
                height: 35px;
                min-width: 35px;
                font-size: 1rem;
            }

            .business-name {
                font-size: 0.95rem;
            }

            .business-location {
                font-size: 0.85rem;
            }
        }

        /* Webinar Section Styles */
        .webinar-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto 40px auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease 0.25s both;
        }

        .webinar-section h2 {
            font-size: 2rem;
            color: #1a3a52;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .webinar-intro {
            text-align: center;
            color: #6b7280;
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .webinar-info-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            border: 2px solid #d1e7ff;
        }

        .webinar-info-box h3 {
            color: #1a3a52;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .webinar-info-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .webinar-info-box li {
            color: #333;
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .webinar-info-box li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4a6fa5;
            font-weight: bold;
        }

        .webinar-table-container {
            overflow-x: auto;
            margin-bottom: 30px;
        }

        .webinar-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .webinar-table thead {
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            color: white;
        }

        .webinar-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
        }

        .webinar-table td {
            padding: 15px;
            border-bottom: 1px solid #e9ecef;
            color: #333;
        }

        .webinar-table tbody tr:hover {
            background: #f8f9fa;
        }

        .register-btn {
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .register-btn:hover {
            background: linear-gradient(135deg, #5b7ba6 0%, #4a6fa5 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 111, 165, 0.3);
        }

        /* Registration Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: calc(100% - 40px);
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .modal-header h2 {
            color: #1a3a52;
            font-size: 1.8rem;
            margin: 0;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 2rem;
            color: #6b7280;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #1a3a52;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #1a3a52;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4a6fa5;
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .consent-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 20px;
        }

        .consent-group input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .consent-group label {
            margin: 0;
            font-weight: 400;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, #5b7ba6 0%, #4a6fa5 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 111, 165, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-message {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.95rem;
            display: none;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        @media (max-width: 768px) {
            .webinar-section {
                padding: 30px 25px;
                width: 100%;
                margin-bottom: 40px;
            }

            .webinar-section h2 {
                font-size: 1.75rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .webinar-table th,
            .webinar-table td {
                padding: 10px;
                font-size: 0.9rem;
            }

            .modal-content {
                padding: 30px 20px;
            }
        }

        /* FAQ Section Styles */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto 40px auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease 0.35s both;
        }

        .faq-section h2 {
            font-size: 2rem;
            color: #1a3a52;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .faq-intro {
            text-align: center;
            color: #6b7280;
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .faq-search-container {
            max-width: 600px;
            margin: 0 auto 10px auto;
            position: relative;
        }

        .faq-search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .faq-search-input:focus {
            outline: none;
            border-color: #4a6fa5;
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .faq-search-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            pointer-events: none;
        }

        .search-helper-text {
            text-align: center;
            font-size: 0.85rem;
            color: #9ca3af;
            margin-bottom: 20px;
            font-style: italic;
        }

        .search-results-count {
            text-align: center;
            font-size: 0.9rem;
            color: #4a6fa5;
            margin-bottom: 15px;
            font-weight: 600;
            display: none;
        }

        .search-results-count.show {
            display: block;
        }

        .faq-item.search-highlight {
            border-color: #10b981;
            background: #f0fdf4;
        }

        .faq-answer mark {
            background: #fef08a;
            color: #1a3a52;
            padding: 2px 4px;
            border-radius: 3px;
        }

        .faq-categories {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .faq-category-btn {
            padding: 8px 20px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-category-btn:hover {
            background: #e9ecef;
            border-color: #4a6fa5;
            color: #4a6fa5;
        }

        .faq-category-btn.active {
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            border-color: #4a6fa5;
            color: white;
        }

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

        .faq-item {
            background: #f8f9fa;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
        }

        .faq-item.hidden {
            display: none;
        }

        .faq-item:hover {
            border-color: #4a6fa5;
        }

        .faq-question {
            width: 100%;
            padding: 20px;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 600;
            color: #1a3a52;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #4a6fa5;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .faq-icon svg {
            width: 12px;
            height: 12px;
            fill: white;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 20px 20px 20px;
        }

        .faq-answer p {
            color: #333;
            line-height: 1.7;
            font-size: 1rem;
            margin: 0;
        }

        .faq-answer ul {
            margin: 10px 0;
            padding-left: 25px;
        }

        .faq-answer li {
            color: #333;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .faq-answer strong {
            color: #1a3a52;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #6b7280;
            font-size: 1rem;
            display: none;
        }

        .no-results.show {
            display: block;
        }

        .faq-loading {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }

        .faq-loading.show {
            display: block;
        }

        .faq-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #e9ecef;
            border-top: 4px solid #4a6fa5;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 15px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .faq-loading-text {
            color: #6b7280;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 30px 25px;
                width: 100%;
                margin-bottom: 40px;
            }

            .faq-section h2 {
                font-size: 1.75rem;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 15px;
            }

            .faq-answer {
                font-size: 0.95rem;
            }

            .faq-categories {
                gap: 8px;
            }

            .faq-category-btn {
                font-size: 0.85rem;
                padding: 6px 15px;
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 25px 20px;
            }

            .faq-section h2 {
                font-size: 1.5rem;
            }

            .faq-search-input {
                padding: 12px 45px 12px 15px;
                font-size: 0.95rem;
            }

            .faq-question {
                font-size: 0.9rem;
                padding: 12px;
            }

            .faq-answer p {
                font-size: 0.9rem;
            }

            .faq-category-btn {
                font-size: 0.8rem;
                padding: 5px 12px;
            }
        }

        /* Client Rollout Map Section */
        /* {{STATE_NAME}} Onboarding Modal Styles */
        .{{STATE_CLASS}}-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        .{{STATE_CLASS}}-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .{{STATE_CLASS}}-modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: calc(100% - 40px);
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .{{STATE_CLASS}}-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 2rem;
            color: #6b7280;
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .{{STATE_CLASS}}-modal-close:hover {
            background: #f3f4f6;
            color: #1a3a52;
        }

        .modal-step {
            display: none;
        }

        .modal-step.active {
            display: block;
            animation: fadeInUp 0.4s ease;
        }

        .modal-step h2 {
            color: #1a3a52;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .modal-step > p {
            color: #6b7280;
            margin-bottom: 20px;
        }

        .modal-step label {
            display: block;
            color: #1a3a52;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .{{STATE_CLASS}}-btn-primary {
            width: 100%;
            background: linear-gradient(135deg, #4a6fa5 0%, #5b7ba6 100%);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .{{STATE_CLASS}}-btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 111, 165, 0.4);
        }

        .{{STATE_CLASS}}-btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .{{STATE_CLASS}}-btn-link {
            background: none;
            border: none;
            color: #4a6fa5;
            cursor: pointer;
            font-size: 0.9rem;
            padding: 8px 12px;
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .{{STATE_CLASS}}-btn-link:hover {
            color: #2a4a62;
        }

        .{{STATE_CLASS}}-btn-secondary {
            background: #f8f9fa;
            border: 2px solid #4a6fa5;
            color: #4a6fa5;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 5px;
        }

        .{{STATE_CLASS}}-btn-secondary:hover {
            background: #4a6fa5;
            color: white;
        }

        .modal-step input[type="tel"],
        .modal-step input[type="text"] {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            margin: 8px 0 15px 0;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .modal-step input[type="tel"]:focus,
        .modal-step input[type="text"]:focus {
            outline: none;
            border-color: #4a6fa5;
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .helper-text {
            font-size: 0.85rem;
            color: #6b7280;
            margin-top: -10px;
            margin-bottom: 15px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            margin: 0;
        }

        .checkbox-group .checkbox-label {
            margin: 0;
            font-weight: 400;
            font-size: 0.9rem;
            color: #6b7280;
            cursor: pointer;
        }

        .modal-step .error-message {
            display: none;
            background: #fee2e2;
            color: #991b1b;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            font-size: 0.95rem;
            border: 2px solid #fecaca;
            line-height: 1.5;
        }

        .modal-step .error-message.show {
            display: block;
            animation: shake 0.4s ease;
        }
        
        .modal-step .error-message.subscription-info {
            background: #e0f2fe;
            color: #0c4a6e;
            border: 2px solid #3b82f6;
        }
        
        .modal-step .error-message.subscription-info strong {
            color: #1e40af;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .code-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .call-options {
            text-align: center;
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .call-options.hidden {
            display: none;
        }

        .call-options p {
            margin-bottom: 10px;
            font-weight: 600;
            color: #1a3a52;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            margin: 0 auto 20px;
        }

        .success-message {
            text-align: center;
            color: #6b7280;
            line-height: 1.6;
            margin: 15px 0;
        }

        .business-info-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .business-info-card h3 {
            color: #1a3a52;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .business-info-card p {
            color: #333;
            margin: 8px 0;
            font-size: 0.95rem;
        }

        .payment-info {
            background: #f0f7ff;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 2px solid #d1e7ff;
        }

        .payment-info h3 {
            color: #1a3a52;
            margin-bottom: 10px;
        }

        .payment-info p {
            color: #6b7280;
            margin-bottom: 15px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefits-list li {
            padding: 8px 0;
            color: #333;
            font-size: 0.95rem;
        }

        .next-steps {
            background: #f0f7ff;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
        }

        .next-steps h3 {
            color: #1a3a52;
            margin-bottom: 15px;
        }

        .next-steps ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .next-steps li {
            padding: 8px 0;
            color: #333;
            font-size: 0.95rem;
        }

        #stripe-payment-element {
            margin: 20px 0;
        }

        /* Responsive modal styles */
        @media (max-width: 768px) {
            .{{STATE_CLASS}}-modal-content {
                padding: 30px 20px;
                max-width: calc(100% - 20px);
            }

            .modal-step h2 {
                font-size: 1.5rem;
            }

            .code-actions {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .{{STATE_CLASS}}-modal-content {
                padding: 25px 15px;
            }

            .modal-step h2 {
                font-size: 1.3rem;
            }

            .{{STATE_CLASS}}-btn-primary {
                font-size: 1rem;
                padding: 12px;
            }

            .success-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
        }
        
        /* Mobile fixes for iPhone (428px) and similar devices */
        /* Hero Button Group Mobile Styles */
        @media (max-width: 768px) {
            .hero-header-section div[style*="display: flex"] {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-header-section .main-header-button {
                width: 100%;
                text-align: center;
            }
        }
        
        /* SMS Reminder Section Mobile Styles */
        @media (max-width: 768px) {
            #smsReminderForm {
                padding: 0;
            }
            
            #smsReminderForm label {
                font-size: 0.9rem;
            }
            
            #smsReminderForm input[type="tel"] {
                font-size: 0.95rem;
            }
            
            #reminderSubmitBtn {
                font-size: 1rem !important;
                padding: 12px !important;
            }
        }
        
        @media (max-width: 427px) {
            /* Global container fixes */
            body {
                padding-top: 90px;
                overflow-x: hidden;
                width: 100%;
            }
            
            /* Override all calc() width constraints for full mobile utilization */
            .main-card {
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            .hero-carousel-container,
            .benefits-carousel-section,
            .how-it-works-section,
            .webinar-section,
            .faq-section {
                width: 100% !important;
                max-width: 100% !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                margin-bottom: 40px !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            .business-listing-section {
                width: 100% !important;
                max-width: 100% !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                margin-bottom: 40px !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            /* Ensure sections without inline backgrounds get white background */
            .business-listing-section:not([style*="background"]) {
                background: white !important;
            }
            .contact-section,
            .team-section {
                width: 100% !important;
                max-width: 100% !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                margin-bottom: 40px !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                background: white !important;
            }
            .hero-full-width-bg {
                margin: -90px 0 0 0 !important;
                padding: 90px 0 25px 0 !important;
            }
            .hero-header-section {
                width: 100% !important;
                max-width: 100% !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                margin-bottom: 0 !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            
            /* Carousel content padding optimization for mobile */
            .carousel-text {
                padding: 20px 15px 80px 15px !important;
            }
            
            /* All inline max-width containers - utilize full mobile space */
            div[style*="max-width: 1200px"],
            div[style*="max-width: 1000px"],
            div[style*="max-width: 900px"],
            div[style*="max-width: 800px"],
            div[style*="max-width: 700px"],
            div[style*="max-width: 600px"] {
                max-width: 100% !important;
                margin-left: 2px !important;
                margin-right: 2px !important;
                padding-left: 8px !important;
                padding-right: 8px !important;
            }
            
            /* Reduce all section padding to maximize mobile space */
            div[style*="padding: 50px"],
            div[style*="padding: 40px"],
            div[style*="padding: 35px"],
            div[style*="padding: 30px"],
            div[style*="padding: 25px"] {
                padding: 15px 10px !important;
            }
            
            /* Green CTA box in grants section */
            div[style*="background: linear-gradient(135deg, #10b981"] {
                padding: 20px 10px !important;
            }
            
            /* Ensure tables don't overflow */
            table {
                font-size: 0.8rem !important;
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                width: 100% !important;
            }
            
            table th,
            table td {
                padding: 8px 6px !important;
                font-size: 0.8rem !important;
                white-space: nowrap;
            }
            
            /* Photo galleries responsive - stack vertically */
            div[style*="grid-template-columns: repeat(auto-fit"],
            div[style*="grid-template-columns: repeat(3, 1fr)"],
            div[style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }
            
            /* Community engagement photos - reduce height */
            img[style*="height: 250px"] {
                height: 180px !important;
            }
            
            /* Button adjustments - fit mobile width */
            a[style*="padding: 18px"],
            a[style*="padding: 15px"],
            a[style*="padding: 40px"],
            button[style*="padding: 18px"],
            button[style*="padding: 15px"] {
                font-size: 0.85rem !important;
                padding: 10px 12px !important;
                white-space: normal !important;
                line-height: 1.4 !important;
                word-wrap: break-word !important;
                max-width: 95% !important;
                box-sizing: border-box !important;
            }
            
            /* Email links - make them wrap and fit mobile */
            a[href^="mailto"] {
                word-break: break-word !important;
                font-size: 0.8rem !important;
                padding: 10px 8px !important;
                max-width: 100% !important;
                display: inline-block !important;
                text-align: center !important;
                line-height: 1.4 !important;
            }
            
            /* Specific fix for grants email button */
            a[href="mailto:help@DLMPropertyGroup.com"] {
                font-size: 0.75rem !important;
                padding: 12px 10px !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                max-width: 95% !important;
            }
            
            /* Statistic numbers - reduce for mobile */
            div[style*="font-size: 3rem"] {
                font-size: 2rem !important;
                line-height: 1.2 !important;
            }
            
            /* Section headings */
            h2 {
                font-size: 1.4rem !important;
                line-height: 1.3 !important;
                margin-bottom: 15px !important;
            }
            
            h3 {
                font-size: 1.15rem !important;
                line-height: 1.3 !important;
            }
            
            h4 {
                font-size: 1rem !important;
            }
            
            /* Paragraphs */
            p {
                font-size: 0.9rem !important;
                line-height: 1.6 !important;
            }
            
            /* Grants badge */
            div[style*="💰"] {
                font-size: 0.85rem !important;
                padding: 6px 12px !important;
            }
            
            /* Image containers */
            img {
                max-width: 100% !important;
                height: auto !important;
            }
            
            /* Grid items - 4 column to 2 column */
            div[style*="minmax(280px"] {
                grid-template-columns: 1fr !important;
            }
            
            div[style*="minmax(200px"] {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
            
            /* Pilot program info boxes - remove borders on mobile */
            div[style*="border-left: 4px solid"] {
                border-left: none !important;
                padding: 12px 10px !important;
                margin-bottom: 15px !important;
                border-radius: 8px !important;
            }
            
            /* Hero header section */
            .hero-header-section {
                padding: 40px 20px !important;
            }
            
            /* Mobile: Smaller accreditation logo */
            .accreditation-logo {
                max-width: 220px !important;
            }
            
            /* Mobile: Larger badge for slide 2 accreditation */
            .hero-slide[data-slide="1"] img[src*="badge-lightblue"] {
                max-width: 110px !important;
            }
            
            /* Welcome card */
            .welcome-card {
                padding: 20px 15px !important;
            }
            
            /* Benefits grid */
            .benefits-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
            
            /* Benefit cards */
            .benefit-card {
                padding: 15px !important;
                margin-bottom: 0 !important;
            }
        }

        /* Support Link Hover Effect */
        .support-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(74, 111, 165, 0.4) !important;
        }

        /* In the News Section - Mobile Responsive */
        @media (max-width: 768px) {
            /* News section container - reduce padding */
            body > div.main-card > div[style*="In the News"] {
                padding: 35px 15px !important;
                margin: 30px auto !important;
            }
            
            /* News grid - show 2 columns on tablet */
            body > div.main-card > div[style*="In the News"] > div:last-child {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }
        }
        
        @media (max-width: 480px) {
            /* News section - tighter mobile spacing */
            body > div.main-card > div[style*="In the News"] {
                padding: 25px 10px !important;
                margin: 20px auto !important;
            }
            
            /* Featured AP box - reduce padding */
            body > div.main-card > div[style*="In the News"] > div:nth-child(2) {
                padding: 20px 12px !important;
                margin-bottom: 25px !important;
            }
            
            /* AP logo sizing */
            body > div.main-card > div[style*="In the News"] img[alt="Associated Press"] {
                width: 65px !important;
                height: auto !important;
            }
            
            /* Media logos - smaller on mobile */
            body > div.main-card > div[style*="In the News"] img {
                width: 45px !important;
                height: 45px !important;
            }
            
            /* Media text - smaller on mobile */
            body > div.main-card > div[style*="In the News"] span {
                font-size: 0.6rem !important;
            }
        }

        /* Benefits Modal Carousel Styles */
        .benefits-modal-carousel {
            position: relative;
            width: 100%;
            min-height: 350px;
            overflow: hidden;
        }

        .benefits-modal-slides {
            position: relative;
            width: 100%;
            min-height: 350px;
        }

        .benefits-modal-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            pointer-events: none;
            padding: 20px 60px 80px 60px;
        }

        .benefits-modal-slide.active {
            opacity: 1;
            visibility: visible;
            position: relative;
            pointer-events: auto;
        }

        .benefits-modal-slide-content {
            display: flex;
            align-items: center;
            gap: 20px;
            min-height: 280px;
        }

        .benefits-modal-icon {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .benefits-modal-icon svg {
            width: 40px;
            height: 40px;
            stroke-width: 2;
        }

        .benefits-modal-text {
            flex: 1;
            font-size: 1.15rem;
            color: #333;
            line-height: 1.8;
        }

        /* Modal Carousel Navigation Arrows */
        .benefits-modal-arrow {
            position: absolute;
            bottom: 20px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            border: 2px solid #3b82f6;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            color: #3b82f6;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        .benefits-modal-arrow:hover {
            background: #eff6ff;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
        }

        .benefits-modal-arrow:active {
            transform: scale(0.95);
        }

        .benefits-modal-prev {
            left: 50px;
        }

        .benefits-modal-next {
            right: 50px;
        }

        /* Modal Carousel Dots */
        .benefits-modal-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .benefits-modal-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .benefits-modal-dot:hover {
            background: rgba(59, 130, 246, 0.6);
            transform: scale(1.2);
        }

        .benefits-modal-dot.active {
            background: #3b82f6;
            width: 28px;
            border-radius: 6px;
        }

        /* Responsive for Benefits Modal */
        @media (max-width: 768px) {
            .benefits-modal-slide {
                padding: 15px 40px 70px 40px;
            }

            .benefits-modal-slide-content {
                flex-direction: column;
                text-align: center;
                min-height: 300px;
            }

            .benefits-modal-icon {
                width: 70px;
                height: 70px;
                min-width: 70px;
            }

            .benefits-modal-icon svg {
                width: 35px;
                height: 35px;
            }

            .benefits-modal-text {
                font-size: 1rem;
            }

            .benefits-modal-arrow {
                width: 40px;
                height: 40px;
                bottom: 15px;
            }

            .benefits-modal-prev {
                left: 30px;
            }

            .benefits-modal-next {
                right: 30px;
            }

            .benefits-modal-dots {
                bottom: 20px;
                gap: 8px;
            }

            .benefits-modal-dot {
                width: 8px;
                height: 8px;
            }

            .benefits-modal-dot.active {
                width: 22px;
            }
        }

        @media (max-width: 480px) {
            .benefits-modal-slide {
                padding: 15px 25px 65px 25px;
            }

            .benefits-modal-icon {
                width: 60px;
                height: 60px;
                min-width: 60px;
            }

            .benefits-modal-icon svg {
                width: 30px;
                height: 30px;
            }

            .benefits-modal-text {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .benefits-modal-arrow {
                width: 35px;
                height: 35px;
                bottom: 12px;
            }

            .benefits-modal-prev {
                left: 20px;
            }

            .benefits-modal-next {
                right: 20px;
            }
        }

        /* AI FAQ Chat Styles */
        .ai-chat-container {
            max-width: 900px;
            margin: 40px auto;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .ai-chat-welcome {
            padding: 40px 30px;
            background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
            border-bottom: 1px solid #bfdbfe;
            text-align: center;
        }

        .ai-chat-welcome-icon {
            margin: 0 auto 20px;
            width: 60px;
            height: 60px;
        }

        .ai-chat-welcome-icon svg {
            width: 100%;
            height: 100%;
        }

        .ai-chat-welcome h3 {
            color: #1a3a52;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .ai-chat-welcome p {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .ai-chat-suggestions {
            max-width: 700px;
            margin: 0 auto;
        }

        .ai-chat-suggestion-btn {
            display: inline-block;
            margin: 6px;
            padding: 10px 18px;
            background: white;
            border: 2px solid #4a6fa5;
            color: #4a6fa5;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .ai-chat-suggestion-btn:hover {
            background: #4a6fa5;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 111, 165, 0.3);
        }

        .ai-chat-messages {
            max-height: 500px;
            overflow-y: auto;
            padding: 0;
            min-height: 0;
            display: none;
        }

        .ai-chat-messages.has-messages {
            display: block;
            padding: 30px;
        }

        .ai-chat-message-wrapper {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .ai-chat-message-wrapper.user {
            justify-content: flex-end;
        }

        .ai-chat-message-wrapper.assistant {
            justify-content: flex-start;
        }

        .ai-chat-message {
            max-width: 75%;
            padding: 15px 20px;
            border-radius: 16px;
            line-height: 1.6;
            word-wrap: break-word;
        }

        .ai-chat-message-wrapper.user .ai-chat-message {
            background: #4a6fa5;
            color: white;
            border-bottom-right-radius: 4px;
        }

        .ai-chat-message-wrapper.assistant .ai-chat-message {
            background: #f3f4f6;
            color: #1f2937;
            border-bottom-left-radius: 4px;
        }

        .ai-chat-message-time {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-top: 5px;
            text-align: right;
        }

        .ai-chat-message-sources {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e5e7eb;
            font-size: 0.85rem;
            color: #6b7280;
        }

        .ai-chat-message-sources strong {
            display: block;
            margin-bottom: 8px;
            color: #374151;
        }

        .ai-chat-message-sources li {
            margin-bottom: 5px;
        }

        .ai-typing-dots {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ai-typing-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #6b7280;
            animation: typingDot 1.4s infinite;
        }

        .ai-typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .ai-typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingDot {
            0%, 60%, 100% {
                opacity: 0.3;
                transform: scale(0.8);
            }
            30% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .ai-chat-input-container {
            padding: 20px 30px;
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
        }

        .ai-chat-input-wrapper {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            background: white;
            border: 2px solid #d1d5db;
            border-radius: 12px;
            padding: 8px;
            transition: border-color 0.3s ease;
        }

        .ai-chat-input-wrapper:focus-within {
            border-color: #4a6fa5;
        }

        .ai-chat-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            font-family: inherit;
            resize: none;
            max-height: 120px;
            line-height: 1.5;
            padding: 8px;
        }

        .ai-chat-send-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: none;
            background: #4a6fa5;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .ai-chat-send-btn:hover:not(:disabled) {
            background: #3b5a85;
            transform: translateY(-2px);
        }

        .ai-chat-send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .ai-chat-send-btn svg {
            width: 20px;
            height: 20px;
        }

        .ai-chat-input-hint {
            margin-top: 8px;
            font-size: 0.8rem;
            color: #9ca3af;
            text-align: center;
        }

        .ai-chat-error {
            padding: 15px;
            background: #fee2e2;
            border: 1px solid #fca5a5;
            border-radius: 8px;
            color: #991b1b;
            margin: 20px 30px;
            text-align: center;
        }

        /* Responsive adjustments for AI chat */
        @media (max-width: 768px) {
            .ai-chat-container {
                margin: 20px 10px;
                border-radius: 12px;
            }

            .ai-chat-welcome {
                padding: 30px 20px;
            }

            .ai-chat-welcome h3 {
                font-size: 1.3rem;
            }

            .ai-chat-messages {
                padding: 20px;
                max-height: 400px;
            }

            .ai-chat-message {
                max-width: 85%;
            }

            .ai-chat-input-container {
                padding: 15px 20px;
            }

            .ai-chat-suggestion-btn {
                font-size: 0.85rem;
                padding: 8px 15px;
            }
        }
    