body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #333;
}

header nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #ff7f32;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: url('assets/images/hero.jpg') center/cover no-repeat;
    color: white;
}

.btn {
    padding: 10px 20px;
    background: #ff7f32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.tour-list {
    display: flex;
    gap: 20px;
    padding: 40px;
}

.tour-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 0 10px #ddd;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 40px;
}

.contact-form {
    padding: 40px;
    display: flex;
    justify-content: center;
}

form {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}
