
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #fceabb, #f8b500);
    color: #333;
}
header {
    text-align: center;
    background-color: #ffffffcc;
    padding: 20px;
}
.logo {
    width: 100px;
}
.slogan {
    font-size: 1.2em;
    color: #555;
}
.packages {
    padding: 20px;
}
.destination {
    background-color: #fff6e5;
    border-radius: 10px;
    padding: 15px;
    margin: 20px auto;
    box-shadow: 0 2px 10px #ccc;
    max-width: 800px;
}
.destination img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.destination button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #ff8000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}
.destination button:hover {
    background-color: #e07000;
}
footer {
    background-color: #444;
    color: white;
    text-align: center;
    padding: 15px;
}
footer a {
    color: #ffdf70;
    text-decoration: none;
}

.contact-form {
    background-color: #fff5e0;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    background-color: #ff8000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

.contact-form button:hover {
    background-color: #e07000;
}
