body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ebeaea;
    color: #363434;
}

header {
    background-color: #4CAF50;
    color: #088F8F;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 400px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Section Styles */
section {
    padding: 20px;
    text-align: center;
}

#properties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.property-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    width: 300px;
}

.property-card img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}