body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff0f5;
  color: #333;
}

header {
  background: linear-gradient(to right, #ffafbd, #ffc3a0);
  color: white;
  padding: 30px;
  text-align: center;
}

.hero {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
  height: 250px;
}

section {
  padding: 40px 20px;
}

h2 {
  color: #c2185b;
  margin-bottom: 10px;
}

.properties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.property {
  background: white;
  border: 1px solid #ffc3a0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact {
  background: #fff8f0;
  text-align: center;
}

a.whatsapp,
a.facebook {
  display: inline-block;
  background: #e91e63;
  color: white;
  padding: 10px 25px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

a.whatsapp:hover,
a.facebook:hover {
  background: #c2185b;
}
