/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    text-align: center;
}

/* Navigation Bar */
header {
    background: #0073e6;
    padding: 15px 0;
    color: white;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
.cta-button {
    background: gold;
    padding: 10px 15px;
    color: black;
    border-radius: 5px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px black;
}
.hero-content h2 {
    font-size: 2.5rem;
}
.hero .cta-button {
    margin-top: 20px;
}

/* Why Choose Us */
.why-choose {
    padding: 40px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.feature {
    width: 30%;
}

/* Travel Packages */
.packages {
    background: #f9f9f9;
    padding: 40px;
}
.package-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.package {
    width: 30%;
}
.package img {
    width: 100%;
    border-radius: 5px;
}

/* Testimonials */
.testimonials {
    padding: 40px;
    background: #0073e6;
    color: white;
}

/* Subscription */
.subscribe {
    padding: 40px;
}
.subscribe input {
    padding: 10px;
    width: 200px;
    margin-right: 10px;
}
.subscribe button {
    padding: 10px;
    background: gold;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px;
}
footer a {
    color: gold;
}
