
        :root {
            --primary-color: #0066cc;
            --accent-color: #ff9900;
            --bg-color: #f4f7f6;
            --card-bg: #ffffff;
            --text-color: #333333;
            --text-secondary: #666666;
            --gradient-bg: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
            --modal-bg: rgba(0, 0, 0, 0.6);
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Dark Mode Variables */
        body.dark-mode {
            --bg-color: #1a1a1a;
            --card-bg: #2c2c2c;
            --text-color: #f0f0f0;
            --text-secondary: #cccccc;
            --gradient-bg: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            --modal-bg: rgba(255, 255, 255, 0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif; transition: background 0.3s, color 0.3s; }

        body {
            background: var(--gradient-bg);
            color: var(--text-color);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            font-size: 16px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        /* Navigation Bar */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: var(--card-bg);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .logo { 
            font-size: 1.5rem; 
            font-weight: bold; 
            color: var(--primary-color); 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            flex-shrink: 0;
        }
        .logo span { color: var(--accent-color); }

        .header-call-btn {
            background: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        .header-call-btn:hover {
            background: #0052a3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .nav-controls { 
            display: none;
        }
        
        /* Navigation Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-menu a:hover {
            background: var(--bg-color);
            color: var(--primary-color);
        }
        
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--card-bg);
            min-width: 600px;
            max-width: 800px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 8px;
            padding: 15px;
            margin-top: 5px;
            z-index: 1000;
            list-style: none;
            column-count: 5;
            column-gap: 10px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .dropdown:hover .dropdown-content,
        .dropdown:focus-within .dropdown-content,
        .dropdown.active .dropdown-content {
            display: block;
        }
        
        .dropdown-content li {
            margin: 0;
            break-inside: avoid;
            page-break-inside: avoid;
        }
        
        .dropdown-content a {
            display: block;
            padding: 8px 12px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .dropdown-content a:hover {
            background: var(--bg-color);
            color: var(--primary-color);
            padding-left: 15px;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
            padding: 5px;
        }
        
        /* Mobile Menu Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--card-bg);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
                gap: 0;
                width: 100%;
                z-index: 999;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-menu a {
                width: 100%;
                padding: 12px;
            }
            
            .dropdown-content {
                position: static;
                display: none;
                box-shadow: none;
                background: var(--bg-color);
                margin-top: 0;
                padding: 15px;
                min-width: 100%;
                max-width: 100%;
                column-count: 2;
                max-height: none;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            nav {
                position: relative;
            }
        }
        
        /* Floating Action Button (FAB) */
        .fab-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .fab-main {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }
        
        .fab-main:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        
        .fab-main.active {
            transform: rotate(90deg);
            background: var(--accent-color);
        }
        
        .fab-buttons {
            position: absolute;
            bottom: 70px;
            right: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .fab-buttons.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: all;
        }
        
        .fab-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            color: white;
            position: relative;
        }
        
        .fab-button:hover {
            transform: scale(1.15);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .fab-button.music {
            background: var(--bg-color);
            color: var(--text-color);
            border: 2px solid var(--text-secondary);
        }
        
        .fab-button.voice {
            background: var(--accent-color);
        }
        
        .fab-button.theme {
            background: var(--bg-color);
            color: var(--text-color);
            border: 2px solid var(--text-secondary);
        }
        
        .fab-button-title {
            position: absolute;
            right: 60px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .fab-button:hover .fab-button-title {
            opacity: 1;
        }


        /* Buttons */
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-primary { background: var(--primary-color); color: white; text-decoration: none; animation: pulse 2s infinite; }
        .btn-icon { background: transparent; color: var(--text-color); font-size: 1rem; padding: 6px 10px; border: 1px solid var(--text-secondary); }
        .btn-voice { background: var(--accent-color); color: white; font-size: 0.75rem; padding: 6px 10px; }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 102, 204, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
        .highlight-city { color: var(--primary-color); text-decoration: underline; text-decoration-color: var(--accent-color); }
        
        .hero p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }

        .hero-img-container {
            width: 100%;
            max-width: 800px;
            height: 400px;
            margin: 0 auto 30px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .hero-slideshow {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-slideshow img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slideshow img.active {
            opacity: 1;
        }

        .slideshow-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* Call Banner */
        .call-banner {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin: 20px 0;
            border-radius: 10px;
            word-wrap: break-word;
        }

        .call-banner span {
            display: block;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .call-number { 
            font-size: 2.5rem; 
            font-weight: 900; 
            display: block; 
            margin-top: 10px; 
            text-decoration: none; 
            color: white; 
            word-break: break-word;
        }
        .call-number:hover { color: var(--accent-color); }

        /* Features Grid */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 40px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .feature-card:hover { transform: translateY(-5px); }
        .emoji-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
        
        .feature-card h3 {
            margin-bottom: 12px;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .feature-card p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #222;
            color: #888;
            padding: 40px 20px;
            margin-top: auto;
            text-align: center;
            font-size: 0.8rem;
        }

        .footer-links { 
            margin-bottom: 20px; 
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        .footer-links button { 
            background: none; 
            border: none; 
            color: white; 
            text-decoration: underline; 
            cursor: pointer; 
            margin: 0 10px; 
            font-size: 0.9rem; 
        }
        
        .disclaimer { max-width: 900px; margin: 0 auto; line-height: 1.4; border-top: 1px solid #444; padding-top: 20px; font-size: 10px; }
        
        .footer-copyright {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #444;
            text-align: center;
        }
        
        .footer-copyright p {
            color: #888;
            font-size: 0.85rem;
            margin: 0;
        }

        /* Modal/Widget Styles */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--modal-bg);
            backdrop-filter: blur(5px);
            display: none; justify-content: center; align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .close-modal {
            position: absolute; top: 15px; right: 20px;
            font-size: 1.5rem; cursor: pointer; color: var(--text-color);
            background: none; border: none;
        }

        /* Content Sections */
        .content-section {
            padding: 60px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .about-content {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .about-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--card-bg);
            padding: 35px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid var(--primary-color);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .process-step {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .why-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .why-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

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

        .faq-item {
            background: var(--card-bg);
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 20px;
            background: var(--primary-color);
            color: white;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 20px;
            display: none;
            line-height: 1.8;
        }

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

        .stats-section {
            background: #0066cc;
            color: white;
            padding: 60px 5%;
            margin: 40px 0;
            position: relative;
        }
        
        body.dark-mode .stats-section {
            background: #0052a3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            color: white;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: #ff9900;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stat-item p {
            font-size: 1.1rem;
            color: #ffffff;
            opacity: 1;
            font-weight: 500;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .dropdown-content {
                column-count: 4;
                min-width: 500px;
                max-width: 700px;
            }
        }
        
        @media (max-width: 1024px) {
            .features {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
            }
            
            .dropdown-content {
                column-count: 3;
                min-width: 400px;
                max-width: 600px;
            }
            
            .dropdown-content {
                column-count: 3;
                min-width: 400px;
                max-width: 600px;
            }
        }
        
        @media (max-width: 900px) {
            .dropdown-content {
                column-count: 3;
                min-width: 350px;
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            /* Navigation */
            nav {
                padding: 12px 3%;
                gap: 8px;
                flex-wrap: nowrap;
                position: relative;
            }

            .logo {
                font-size: 1.2rem;
                gap: 6px;
                flex: 1;
            }
            
            .header-call-btn {
                padding: 8px 15px;
                font-size: 0.8rem;
                gap: 6px;
            }

            /* FAB responsive adjustments */
            .fab-container {
                bottom: 20px;
                right: 20px;
            }
            
            .fab-main {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .fab-button {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .fab-buttons {
                bottom: 65px;
                gap: 12px;
            }

            .btn {
                padding: 6px 10px;
                font-size: 0.7rem;
            }

            .btn-icon {
                padding: 5px 8px;
                font-size: 0.9rem;
            }
            
            .btn-voice {
                padding: 5px 8px;
                font-size: 0.65rem;
            }

            /* Hero Section */
            .hero {
                padding: 40px 15px;
            }

            .hero h1 { 
                font-size: 1.5rem; 
                line-height: 1.3;
                margin-bottom: 15px;
                padding: 0 10px;
            }
            
            .highlight-city {
                display: inline-block;
                word-break: break-word;
            }

            .hero p { 
                font-size: 0.95rem; 
                margin-bottom: 20px;
                padding: 0 10px;
            }

            .hero-img-container { 
                height: 200px; 
                margin-bottom: 20px;
                border-radius: 15px;
            }
            
            .hero-slideshow img {
                object-fit: cover;
            }
            
            .slideshow-indicators {
                bottom: 10px;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
            }

            /* Call Banner */
            .call-banner {
                padding: 20px 15px;
                margin: 15px 0;
            }

            .call-banner span {
                font-size: 0.7rem;
                line-height: 1.4;
                padding: 0 5px;
            }

            .call-number { 
                font-size: 1.5rem; 
                margin-top: 8px;
                padding: 5px;
            }

            .call-banner p {
                font-size: 0.75rem !important;
                margin-top: 8px !important;
                padding: 0 5px;
            }

            /* Sections */
            .section-title { 
                font-size: 1.75rem; 
                margin-bottom: 30px;
            }

            .content-section { 
                padding: 40px 3%; 
            }

            .about-content {
                padding: 25px 20px;
            }

            /* Features */
            .features {
                padding: 30px 3%;
                gap: 15px;
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-card {
                padding: 20px 12px;
                width: 100%;
            }
            
            .emoji-icon {
                font-size: 2rem;
            }
            
            .feature-card h3 {
                font-size: 1rem;
                margin-bottom: 8px;
            }
            
            .feature-card p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            /* Stats */
            .stats-section {
                padding: 40px 3%;
                margin: 30px 0;
                background: #0066cc !important;
            }
            
            body.dark-mode .stats-section {
                background: #0052a3 !important;
            }

            .stats-grid {
                gap: 25px;
            }

            .stat-item {
                color: white;
            }

            .stat-item h3 {
                font-size: 2rem;
                color: #ff9900;
                font-weight: 900;
            }

            .stat-item p {
                font-size: 0.95rem;
                color: #ffffff;
                opacity: 1;
                font-weight: 500;
            }

            /* Services Grid */
            .services-grid {
                gap: 20px;
            }

            .service-card {
                padding: 25px 20px;
            }

            /* Process Steps */
            .process-steps {
                gap: 30px 20px;
            }

            .process-step {
                padding: 25px 20px;
                margin-top: 20px;
            }

            /* Why Choose */
            .why-choose-grid {
                gap: 20px;
            }

            .why-card {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }

            .why-icon {
                font-size: 2rem;
            }

            /* FAQ */
            .faq-question {
                padding: 15px;
                font-size: 0.9rem;
            }

            .faq-answer {
                padding: 15px;
                font-size: 0.9rem;
            }

            /* Modal */
            .modal-content {
                padding: 30px 20px;
                width: 95%;
                max-height: 90vh;
            }

            .close-modal {
                top: 10px;
                right: 15px;
                font-size: 1.3rem;
            }

            /* Footer */
            footer {
                padding: 30px 15px;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 10px;
            }

            .footer-links button {
                margin: 5px;
                font-size: 0.8rem;
            }

            .disclaimer {
                font-size: 9px;
                padding: 15px 10px 0;
            }
        }

        @media (max-width: 480px) {
            /* Extra small devices */
            nav {
                padding: 10px 2%;
            }

            .logo {
                font-size: 1rem;
            }
            
            .header-call-btn {
                padding: 6px 12px;
                font-size: 0.7rem;
                gap: 4px;
            }


            .btn {
                padding: 6px 10px;
                font-size: 0.7rem;
            }

            .btn-icon {
                padding: 5px 8px;
                font-size: 0.9rem;
            }

            .hero {
                padding: 25px 10px;
            }

            .hero h1 {
                font-size: 1.3rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 0.85rem;
            }
            
            .hero-img-container {
                height: 180px;
                border-radius: 12px;
            }
            
            .slideshow-indicators {
                bottom: 8px;
                gap: 8px;
            }
            
            .indicator {
                width: 8px;
                height: 8px;
            }
            
            .call-banner {
                padding: 18px 12px;
                margin: 15px 0;
            }
            
            .call-banner span {
                font-size: 0.65rem;
            }
            
            .call-number {
                font-size: 1.3rem;
            }
            
            .call-banner p {
                font-size: 0.7rem !important;
            }

            .call-banner span {
                font-size: 0.7rem;
            }

            .call-number {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-item h3 {
                font-size: 1.75rem;
                color: #ff9900;
                font-weight: 900;
            }
            
            .stat-item p {
                color: #ffffff;
                opacity: 1;
                font-weight: 500;
            }
            
            .stats-section {
                background: #0066cc !important;
            }
            
            body.dark-mode .stats-section {
                background: #0052a3 !important;
            }

            /* Modal */
            .modal-content {
                padding: 25px 15px;
                width: 98%;
            }

            /* Footer */
            .footer-links button {
                display: block;
                margin: 8px auto;
                width: 100%;
            }
        }

        /* Cities We Cover Section */
        .cities-section {
            padding: 60px 5%;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
            /* Chrome-specific fix: ensure proper container width */
            min-width: 0;
        }

        .cities-search-container {
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cities-search-box {
            position: relative;
        }

        .cities-search-box input {
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            background: var(--card-bg);
            color: var(--text-color);
            transition: all 0.3s;
        }

        .cities-search-box input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .search-results-count {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            font-size: 14px;
            display: none;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 30px;
            width: 100%;
            grid-auto-flow: row;
            /* Chrome-specific fix: ensure proper grid container sizing */
            min-width: 0;
            box-sizing: border-box;
            /* Chrome fix: prevent grid overflow and rendering issues */
            overflow: visible;
        }

        .city-link {
            display: block;
            padding: 12px 18px;
            background: var(--card-bg);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid #e0e0e0;
            transition: all 0.2s;
            text-align: center;
            font-weight: 500;
            /* Chrome-specific fix: ensure proper grid item sizing */
            min-width: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .city-link:hover {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
        }

        .cities-no-results {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
        }

        /* Dark mode for cities section */
        body.dark-mode .cities-search-box input {
            border-color: #444;
            background: var(--card-bg);
        }

        body.dark-mode .city-link {
            border-color: #444;
        }

        body.dark-mode .city-link:hover {
            background: var(--primary-color);
        }

        /* Responsive cities grid */
        @media (max-width: 768px) {
            .cities-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 10px;
            }

            .city-link {
                padding: 10px 14px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .cities-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 8px;
            }

            .city-link {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
    