* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f9f5f0;
            color: #333;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #ff6b00;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #0047ab;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #0047ab;
        }
        .btn {
            padding: 8px 18px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: #0047ab;
            color: white;
            margin-right: 10px;
        }
        .btn-download:hover {
            background-color: #003580;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #ffffff;
            color: #ff6b00;
        }
        .btn-login:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://host.com/images/mumbai-hero.jpg') center/cover no-repeat;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin: 20px 0;
            border-radius: 10px;
        }
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ff6b00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        section {
            margin: 40px 0;
        }
        h2 {
            font-size: 2rem;
            color: #0047ab;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff6b00;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff6b00;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 700;
            color: #0047ab;
        }
        .desi-note {
            background-color: #fff3e0;
            border-left: 4px solid #ff6b00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        .card-content {
            padding: 20px;
        }
        .card h4 {
            color: #0047ab;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #0047ab;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 0 5px 8px 0;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #bbdefb;
        }
        .category-link {
            color: #ff6b00;
            text-decoration: none;
            font-weight: 500;
            margin-right: 15px;
        }
        .category-link:hover {
            text-decoration: underline;
        }
        .testimonial {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        .author-info h5 {
            color: #0047ab;
            font-size: 1.1rem;
        }
        .author-info p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ff6b00;
        }
        .footer-section p {
            color: #ccc;
            font-size: 0.95rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ff6b00;
        }
        .daman-recommendation {
            background-color: #444;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        .daman-recommendation h4 {
            color: #ff6b00;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #ccc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff6b00;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                display: none;
            }
            .mobile-btn-group {
                display: flex;
                justify-content: center;
                gap: 10px;
                margin: 15px 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (min-width: 769px) {
            .mobile-btn-group {
                display: none;
            }
        }
