/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Navbar */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background-color: #5c6bc0;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

#hero h1 {
    font-size: 3rem;
}

#hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Properties Section */
#properties {
    padding: 40px 20px;
    text-align: center;
}

#properties h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.property-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.property-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    margin-bottom: 20px;
    text-align: center;
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.property-card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.property-card p {
    color: #333;
}

.property-card button {
    background-color: #5c6bc0;
    color: white;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.property-card button:hover {
    background-color: #3f4b8f;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #5c6bc0;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #3f4b8f;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}
