
    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: #fefaf6;
        color: #333;
    }

    header {
        background: #3e2614;
        padding: 15px 30px;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        font-size: 28px;
        font-weight: 700;
        color: #f4c86a;
        text-decoration: none;
    }

    .nav-menu {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .nav-menu li a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-menu li a:hover {
        color: #f4c86a;
    }

    .hero {
        background: linear-gradient(rgba(62,38,20,0.6), rgba(62,38,20,0.6)), url('dubai-sightseeing-banner.jpg') center/cover no-repeat;
        color: #fff;
        text-align: center;
        padding: 120px 20px;
    }

    .hero h1 {
        font-size: 50px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .hero p {
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .about, .features, .itinerary, .pricing, .faqs {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        text-align: center;
    }

    .about h2, .features h2, .itinerary h2, .pricing h2, .faqs h2 {
        font-size: 36px;
        color: #3e2614;
        margin-bottom: 20px;
        position: relative;
    }

    .about h2::after, .features h2::after, .itinerary h2::after, .pricing h2::after, .faqs h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: #f4c86a;
        margin: 10px auto 0;
    }

    .about p {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

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

    .feature-item {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-8px);
    }

    .feature-item h4 {
        color: #3e2614;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .feature-item p {
        font-size: 16px;
        color: #555;
    }

    .itinerary ul, .faqs p {
        text-align: left;
        max-width: 800px;
        margin: 0 auto;
        font-size: 18px;
        color: #555;
        line-height: 1.6;
    }

    .itinerary ul li {
        margin: 10px 0;
    }

    .pricing-table {
        max-width: 800px;
        margin: 0 auto;
        border-collapse: collapse;
        width: 100%;
    }

    .pricing-table th, .pricing-table td {
        border: 1px solid #ddd;
        padding: 15px;
        font-size: 18px;
    }

    .pricing-table th {
        background: #3e2614;
        color: #fff;
    }

    .cta {
        background: #3e2614;
        color: #fff;
        text-align: center;
        padding: 50px 20px;
    }

    .cta h3 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .cta a {
        display: inline-block;
        background: #f4c86a;
        color: #3e2614;
        text-decoration: none;
        padding: 14px 30px;
        border-radius: 30px;
        font-weight: bold;
        transition: background 0.3s ease;
    }

    .cta a:hover {
        background: #d8a84a;
    }

    footer {
        background: #3e2614;
        color: #fff;
        text-align: center;
        padding: 18px 10px;
        font-size: 15px;
    }

    footer a {
        color: #f4c86a;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25d366;
        padding: 12px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }

    .whatsapp-chat-bubble {
        position: fixed;
        bottom: 20px;
        right: 80px;
        background: #3e2614;
        color: #fff;
        padding: 12px 20px;
        border-radius: 20px;
        font-size: 14px;
        text-decoration: none;
    }

    @media(max-width:768px){
        .hero h1 { font-size: 36px; }
        .about h2, .features h2, .itinerary h2, .pricing h2, .faqs h2 { font-size: 26px; }
    }
