        :root {
            --primary: #1c4a8a;
            --primary-soft: #2a5fa6;
            --secondary: #8ecae6;
            --white: #ffffff;
            --bg-light: #f8fafc;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* Navbar */
        header {
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img { height: 40px; }

        /* Menu Icon (Hidden by default) */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        nav ul li a:hover { color: var(--primary); }

        .btn-outline {
            border: 1.5px solid var(--primary);
            color: var(--primary) !important;
            padding: 10px 24px;
            border-radius: 12px;
            font-weight: 700 !important;
        }

        .btn-outline:hover { background: var(--primary); color: white !important; }

        /* Hero Section - Steel Blue Gradient */
        .hero {
            background: linear-gradient(135deg, #cbdce6 0%, #f1f5f9 100%);
            padding: 120px 0 100px;
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .hero h1 span { color: var(--primary-soft); }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #475569;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* Responsive Search Bar */
        .search-bar {
            background: white;
            padding: 8px;
            border-radius: 20px;
            display: flex;
            box-shadow: var(--shadow-md);
            width: 100%;
            max-width: 850px;
            margin: 0 auto;
            border: 1px solid var(--border);
        }

        .input-group {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-right: 1px solid var(--border);
        }

        .input-group:last-of-type { border-right: none; }

        .input-group i { color: var(--primary); margin-right: 12px; font-size: 1rem; opacity: 0.8; }

        .input-group input {
            border: none;
            outline: none;
            padding: 14px 0;
            width: 100%;
            font-size: 0.95rem;
            color: var(--text-main);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 36px;
            border-radius: 14px;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .btn-primary:hover { transform: translateY(-1px); background: var(--primary-soft); }

        /* Modern Listings Section */
        .featured { padding: 100px 0; background: var(--bg-light); }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-header h2 { font-size: 2rem; color: var(--primary); font-weight: 800; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .provider-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .provider-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

        .card-img-wrapper { position: relative; height: 210px; }

        .provider-card img { width: 100%; height: 100%; object-fit: cover; }

        .verified-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: white;
            color: #10b981;
            padding: 6px 14px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: var(--shadow-sm);
        }

        .provider-info { padding: 24px; }

        .category-tag {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary-soft);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
            display: block;
        }

        .provider-info h4 { font-size: 1.3rem; margin-bottom: 6px; font-weight: 700; }

        .rating-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .stars { color: #f59e0b; font-weight: 700; }

        .card-footer {
            padding-top: 20px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price { font-weight: 800; color: var(--primary); font-size: 1.1rem; }

        .view-link { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.9rem; }

        /* Full Container App Section - UI IMPROVED */
        .app-download-section { padding: 80px 0; background: white; }

        .app-card {
            background: linear-gradient(145deg, var(--primary) 0%, #153a6d 100%);
            color: white;
            padding: 80px 40px;
            border-radius: 40px;
            text-align: center;
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(28, 74, 138, 0.25);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .app-card h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
        .app-card p { opacity: 0.9; font-size: 1.15rem; margin-bottom: 40px; max-width: 600px; margin: 0 auto 40px; }

        .store-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .store-btn {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            padding: 14px 30px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.15);
            min-width: 200px;
            text-align: left;
        }

        .store-btn:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

        .store-btn i { font-size: 1.8rem; }
        .store-btn div small { font-size: 0.7rem; display: block; opacity: 0.8; }
        .store-btn div strong { font-size: 1rem; }

        /* Improved Professional Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 100px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-logo img { height: 35px; filter: brightness(0) invert(1); margin-bottom: 24px; }

        .footer-about p { font-size: 0.95rem; line-height: 1.7; }

        .footer-nav h4 { color: white; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }

        .footer-links { list-style: none; }

        .footer-links li { margin-bottom: 14px; }

        .footer-links li a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }

        .footer-links li a:hover { color: var(--secondary); padding-left: 4px; }

        .newsletter h4 { color: white; margin-bottom: 12px; font-size: 1rem; }
        .newsletter input {
            width: 100%;
            background: #1e293b;
            border: 1px solid #334155;
            padding: 12px 16px;
            border-radius: 10px;
            color: white;
            margin-bottom: 12px;
            outline: none;
        }

        /* Policy & Bottom Bar */
        .bottom-bar {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .legal-links { display: flex; gap: 24px; }
        .legal-links a { color: #64748b; font-size: 0.8rem; text-decoration: none; transition: 0.3s; }
        .legal-links a:hover { color: white; }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .hero { padding: 80px 0; }
        }

        @media (max-width: 768px) {
            header { padding: 12px 0; }
            .navbar { flex-direction: row; }
            
            /* Mobile Navigation Toggle */
            .menu-toggle { display: block; }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                border-bottom: 1px solid var(--border);
                display: none; /* Toggle via JS */
                padding: 20px 0;
            }
            
            nav.active { display: block; }

            nav ul {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .search-bar { 
                flex-direction: column; 
                padding: 15px; 
                border-radius: 24px;
                gap: 10px;
            }
            .input-group { 
                border-right: none; 
                border-bottom: 1px solid var(--border); 
                padding: 10px 5px;
            }
            .btn-primary { 
                padding: 16px; 
                width: 100%;
            }

            .featured { padding: 60px 0; }
            .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }

            .app-card { padding: 50px 20px; border-radius: 30px; }
            .store-btns { flex-direction: column; align-items: center; }
            .store-btn { width: 100%; max-width: 280px; }

            .bottom-bar { flex-direction: column-reverse; text-align: center; gap: 20px; }
            .legal-links { justify-content: center; flex-wrap: wrap; gap: 15px; }
        }
