/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav h1 {
    margin: 0;
    font-size: 2rem;
}

header ul {
    list-style: none;
}

header ul li {
    display: inline-block;
    margin: 0 15px;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.hero {
    background: url('images/kkkk.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero button {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
}

#packages {
    padding: 50px;
    text-align: center;
}

.package-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.package {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.package img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-info {
    padding: 20px;
}

.package-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-info p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.package-info span {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff6b6b;
}

#contact {
    background-color: #ded2d2;
    padding: 50px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form label {
    margin: 10px 0 5px;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

#contact-form button {
    padding: 10px;
    font-size: 1.2rem;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
