
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #1e293b;
            background-color: #fefce8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #eab308;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: #fbbf24;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            color: #fefce8;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #eab308;
        }

/* Banner Placeholder */
.banner-placeholder {
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;         /* Vertically center */
    justify-content: center;     /* Horizontally center */
    padding: 150px 0;            /* Increased top and bottom padding */
    color: #fefce8;
    font-size: 18px;
    border: 2px dashed #64748b;
    text-align: center;
padding-bottom: 20rem;
}

.banner-placeholder .banner-image {
    max-width: 20%;              /* Smaller image */
    height: auto;                /* Keeps aspect ratio */
    display: block;
    border-radius: 8px;          /* Optional: smooth edges */
}


        /* Hero Section */
        .hero {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(135deg, #1e293b, #334155);
            color: #fefce8;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .disclaimer {
            background: #eab308;
            color: #1e293b;
            padding: 16px;
            text-align: center;
            font-weight: bold;
            margin-bottom: 48px;
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section h2 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 48px;
            color: #1e293b;
            line-height: 1.2;
        }

        /* City Cards */
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .city-card {
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .city-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            border-color: #eab308;
        }

        .city-card h3 {
            font-size: 28px;
            color: #1e293b;
            margin-bottom: 16px;
        }

        .city-feature {
            margin-bottom: 16px;
        }

        .city-feature strong {
            color: #eab308;
            display: block;
            margin-bottom: 4px;
        }

        .cta-button {
            background: #eab308;
            color: #1e293b;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 16px;
        }

        .cta-button:hover {
            background: #fbbf24;
            transform: translateY(-2px);
        }

        /* Compare Table */
        .compare-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin: 48px 0;
        }

        .compare-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .compare-table th,
        .compare-table td {
            padding: 16px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }

        .compare-table th {
            background: #1e293b;
            color: #fefce8;
            font-weight: bold;
        }

        .compare-table tr:hover {
            background: #f8fafc;
        }

        /* FAQ Accordion */
        .faq-item {
            background: white;
            margin-bottom: 16px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background: #1e293b;
            color: #fefce8;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #334155;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }

        .faq-toggle {
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        /* Form Styles */
        .plan-form {
            background: white;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #1e293b;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #eab308;
        }

        /* Exclusive Experiences */
        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .experience-card {
            background: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .experience-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .experience-card h4 {
            color: #eab308;
            margin-bottom: 12px;
            font-size: 20px;
        }

        /* Footer */
        .footer {
            background: #1e293b;
            color: #fefce8;
            padding: 48px 0 24px;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #fefce8;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #eab308;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #334155;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .cities-grid {
                grid-template-columns: 1fr;
            }

            .compare-table {
                overflow-x: auto;
            }

            .footer-nav {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Latest Updates */
        .updates-list {
            background: white;
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .update-item {
            padding: 16px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .update-item:last-child {
            border-bottom: none;
        }

        .update-date {
            color: #eab308;
            font-weight: bold;
            font-size: 14px;
        }



