* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #e3f2fd;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: #1976d2;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1976d2;
  font-weight: 600;
}

.hero {
  background: rgb(246, 212, 169);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.btn {
  background: #1976d2;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 1.2rem;
}

.listings,
.about,
.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.property-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.property-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.property-card img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.about ul {
  list-style: none;
  margin-top: 1.5rem;
}

.about li {
  margin: 0.6rem 0;
  font-weight: bold;
}

footer {
  background: #e3f2fd;
  padding: 2rem;
  text-align: center;
}

.socials a {
  margin: 0 0.5rem;
  color: #1976d2;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .property-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
