body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9f8;
  color: #222;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0b3d2e;
  padding: 10px 30px;
  color: white;
}

.logo {
  height: 50px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #eaf3ef;
}

.hero h1 {
  font-size: 2em;
  color: #0b3d2e;
}

.properties {
  padding: 40px 20px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

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

.property-card h3 {
  margin: 10px;
  color: #0b3d2e;
}

.property-card p {
  margin: 0 10px 20px;
  color: #555;
}

.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #0b3d2e;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0b3d2e;
  color: white;
  margin-top: 40px;
}
