* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff6200;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content {
            background: rgba(0, 0, 0, 0.6);
            padding: 3rem;
            border-radius: 10px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            background-color: #ff6200;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #e65500;
        }

        /* Section Styles */
        section {
            padding: 3rem 20px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 2.5rem;
            color: #004aad;
        }

        /* Highlights */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            text-align: center;
            margin-bottom: 10px;
        }

        .highlight {
            padding: 1.5rem;
            background: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .highlight:hover {
            transform: translateY(-5px);
        }

        .highlight img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .highlight h3 {
            font-size: 1.5rem;
            color: #004aad;
            margin-bottom: 0.5rem;
        }

        /* Itinerary */
        .itinerary-day {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #fff;
            border-left: 5px solid #ff6200;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        .itinerary-day h3 {
            font-size: 1.8rem;
            color: #004aad;
            margin-bottom: 1rem;
        }

        .itinerary-day ul {
            list-style-type: disc;
            margin-left: 20px;
        }

        .itinerary-day img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .pricing {
            text-align: center;
            background: #f9f9f9;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .pricing h3 {
            font-size: 2.2rem;
            color: #ff6200;
            margin-bottom: 1.5rem;
        }

        .pricing ul {
            list-style-type: disc;
            margin: 1rem auto;
            text-align: left;
            max-width: 600px;
        }

        /* Contact Form */
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form button {
            background-color: #004aad;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .contact-form button:hover {
            background-color: #003a8c;
        }

        /* Footer */
        footer {
            background-color: #004aad;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .cuoi{
            display: flex;
        }
        .cuoi1{
            width: 70%;
        }
        .cuoi2{
            width: 30%;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .nav-links a {
                margin-left: 10px;
                font-size: 0.9rem;
            }

            h2 {
                font-size: 2rem;
            }

            .highlight img {
                height: 150px;
            }

            .itinerary-day img {
                height: 100px;
            }
            .cuoi{
                display: block;
            }
            .cuoi1{
                width: 100%;
            }
            .cuoi2{
                width: 100%;
            }
        }