* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.7;
        }

        /* Simple Hero Section */
        .hero {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/api/placeholder/1600/600') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* Main Content */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Section Styling */
        .section {
            margin-bottom: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
        }

        .section-title {
            font-size: 1.8rem;
            color: #0066cc;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #0066cc, #33bbff);
        }

        h3 {
            font-size: 1.5rem;
            color: #0066cc;
            margin: 25px 0 15px;
        }

        h4 {
            font-size: 1.2rem;
            color: #333;
            margin: 20px 0 10px;
        }

        p {
            margin-bottom: 15px;
            color: #444;
        }

        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        /* Destination Cards */
        .destinations {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }

        .destination-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .card-img {
            height: 180px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover .card-img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #0066cc;
        }

        .card-price {
            color: #28a745;
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .card-details {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .book-btn {
            display: block;
            background: linear-gradient(to right, #0066cc, #33bbff);
            color: white;
            text-align: center;
            padding: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            background: linear-gradient(to right, #005bb7, #28a7e9);
            box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
        }

        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .faq-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .faq-item h4 {
            position: relative;
            cursor: pointer;
            padding-right: 30px;
            color: #0066cc;
        }

        .faq-item h4::after {
            content: '+';
            position: absolute;
            right: 5px;
            top: 0;
            font-size: 1.2rem;
            color: #0066cc;
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .feature {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 15px;
        }

        .feature h4 {
            margin-bottom: 10px;
        }

        /* Images Grid */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }

        .grid-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .grid-img:hover {
            transform: scale(1.05);
        }

        /* Testimonials */
        .testimonials {
            margin-top: 25px;
        }

        .testimonial {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 3rem;
            color: #ddd;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            padding-left: 30px;
            font-style: italic;
        }

        .testimonial-author {
            text-align: right;
            font-weight: bold;
            color: #0066cc;
            margin-top: 10px;
        }
        
        
        
         
        
        
        

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero {
                height: 300px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 20px;
            }

            .destinations {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .features {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .destinations {
                grid-template-columns: 1fr;
            }
        }