body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

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

header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #008080; /* Teal color */
    text-decoration: none;
    float: left;
}

header nav {
    float: right;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://via.placeholder.com/1600x900');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 200px 0;
}

.hero-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary {
    background-color: #008080; /* Teal color */
    color: #fff;
}

.btn-secondary {
    background-color: #f4f4f4;
    color: #333;
}

.properties-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.properties-section h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.featured-properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.property-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.property-card img {
    margin-bottom: 20px;
}

.property-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.property-card p {
    margin-bottom: 10px;
    font-size: 14px;
}

.property-card .price {
    font-weight: bold;
    color: #008080; /* Teal color */
}

.property-card .location {
    color: #888;
}

.about-section {
    padding: 100px 0;
}

.about-section h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    text-align: center;
}

.icon-item {
    padding: 20px;
}

.icon-item img {
    margin-bottom: 20px;
}

.icon-item h4 {
    margin: 0;
    font-size: 16px;
}

.map-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.map-section h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

#map {
    margin-bottom: 50px;
}

.map-filter {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    align-items: center;
}

.map-filter input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

footer .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

footer .footer-links {
    float: left;
    margin-left: 50px;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

footer .footer-social {
    float: right;
}

footer .footer-social a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

footer .copyright {
    clear: both;
    text-align: center;
    padding-top: 50px;
    font-size: 12px;
    color: #888;
}