body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px;
  background: #003366;
  color: white;
}

.property-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.property-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 280px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  text-align: center;
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.property-card a {
  display: inline-block;
  margin-top: 10px;
  background: #003366;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
}

.property-card a:hover {
  background: #0055aa;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: #777;
}

.media-gallery {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.media-gallery img, 
.media-gallery video {
  border-radius: 10px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}
