
/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    display: inline-block;
    color: #fff;
    font-size: 24px;
}

nav ul {
    list-style: none;
    float: right;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    background: url('assets/hero.jpg') no-repeat center center/cover;
    height: 500px;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h2 {
    font-size: 48px;
}

#properties {
    padding: 20px 0;
}

.property-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.property {
    background: white;
    padding: 20px;
    margin: 20px 0;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

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

form input, form textarea {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}
