body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f8f9fb;
  color: #282828;
}
nav {
  background: #fff;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 2;
}
.logo { font-weight: 700; font-size: 1.2rem; color: #005890; text-decoration: none; }
h1, h2 { color: #093052; }
.properties-preview {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0;
}
.property-card {
  flex: 1 0 220px; 
  max-width: 300px;
  background: #fff;
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;
}
.property-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.property-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.property-card h2 { margin: 0.5rem 0 0.2rem; font-size: 1.15rem; }
.property-card p { margin: 0 0 0.5rem; color: #666; }

.swiper, .swiper-slide img { width:100%; border-radius:12px; }
.swiper { max-width: 700px; margin: 32px auto 16px; }
.swiper-button-next, .swiper-button-prev { color: #005890; }

ul { padding-left: 1.5em; }
.contact-btn {
  display: inline-block; padding: 0.65em 2em; background: #005890; color: #fff;
  text-decoration: none; border-radius: 20px; margin: 1em 0; font-weight: 500;
  transition: background 0.2s;
}
.contact-btn:hover { background: #003E6B; }

@media (max-width: 768px) {
  .properties-preview { flex-direction: column; align-items: center; }
  .swiper { max-width: 98vw; }
  nav, header { text-align: center; }
}