body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
header {
    background: #1c1c1c;
    color: #fff;
    padding: 20px 0;
}
header h1 {
    float: left;
    margin-left: 20px;
}
header nav ul {
    list-style: none;
    float: right;
    margin-right: 20px;
}
header nav ul li {
    display: inline;
    margin-left: 20px;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.hero-text h2 {
    font-size: 3em;
}
.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #f7941e;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}
section {
    padding: 60px 0;
}
section h2 {
    text-align: center;
    margin-bottom: 40px;
}
.villa-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.villa-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    text-align: center;
}
.villa-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.villa-card h3 {
    margin: 10px 0;
}
.villa-card p {
    padding: 0 10px 10px;
}
form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}
form input, form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}
form button {
    padding: 10px;
    background: #f7941e;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}
form button:hover {
    background: #e67e22;
}
footer {
    background: #1c1c1c;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}