* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #FFA726; /* Soft Orange */
            --secondary-color: #FF9800; /* Warm Orange */
            --accent-color: #3F51B5; /* Indigo Blue */
            --accent-hover: #303F9F; /* Darker Blue for hover */
            --text-light: #FFFFFF;
            --text-dark: #2C3E50;
            --bg-light: #FDFEFE;
            --bg-dark: #1B2631;
            --card-bg: #FFFFFF;
            --section-bg: #F8F9FA;
            --transition: all 0.3s ease;
        }

        body {
            background-color: var(--section-bg);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            background-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Navigation Styles */
        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            color: var(--text-light);
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            padding: 12px 18px;
            display: block;
            font-weight: 600;
            transition: var(--transition);
            border-radius: 6px;
            margin: 0 4px;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .nav-links .active {
            background-color: rgba(255, 255, 255, 0.25);
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--card-bg);
            min-width: 240px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            z-index: 100;
            border-top: 4px solid var(--accent-color);
        }

        .dropdown li {
            width: 100%;
        }

        .dropdown a {
            color: var(--text-dark);
            padding: 14px 20px;
            border-bottom: 1px solid #EAEDED;
            margin: 0;
            font-weight: 500;
        }

        .dropdown a:hover {
            background-color: var(--accent-color);
            color: var(--text-light);
            transform: none;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        /* Mobile Menu Styles */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            border-radius: 4px;
            transition: var(--transition);
        }

        .menu-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background-color: var(--text-light);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1593693397692-8d5963858f51?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero-content h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* Content Section */
        .content {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--text-dark);
            font-size: 2.2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            margin: 15px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .tour-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .tour-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            z-index: 1;
        }

        .tour-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
        }

        .tour-card:hover .tour-img {
            transform: scale(1.05);
        }

        .tour-content {
            padding: 25px;
        }

        .tour-content h3 {
            margin-bottom: 12px;
            color: var(--primary-color);
            font-size: 1.4rem;
        }

        .tour-content p {
            color: #566573;
            margin-bottom: 20px;
        }

        .tour-price {
            font-weight: bold;
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .tour-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Booking Section */
        .booking-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            text-align: center;
            color: white;
            margin: 60px 0;
        }

        .booking-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .booking-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .booking-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--section-bg);
            padding: 80px 0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ddd;
            margin-right: 15px;
            overflow: hidden;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: var(--primary-color);
                flex-direction: column;
                padding-top: 80px;
                transition: var(--transition);
                z-index: 100;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                padding: 16px 25px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                margin: 0;
                border-radius: 0;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(0, 0, 0, 0.1);
                display: none;
                transition: none;
                border-radius: 0;
                border-top: none;
                width: 100%;
            }

            .dropdown.active {
                display: block;
            }

            .dropdown a {
                padding-left: 40px;
                color: var(--text-light);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .dropdown a:hover {
                background-color: rgba(255, 255, 255, 0.15);
                color: var(--text-light);
            }

            .menu-toggle {
                display: flex;
                z-index: 101;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -7px);
            }

            .hero-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h2 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }
            
            .logo h1 {
                font-size: 1.6rem;
            }
        }