body {
  font-family: "MS Sans Serif", Geneva, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1rem);
  color: #3c3c3c;
  margin: 0;
}

a {
  color: #2a66a1;
  text-decoration: none;
}

.lease {
  font-style: italic;
  text-decoration: underline;
  font-weight: bold;
}

.intro_p {
  font-style: italic;
  margin: 0;
}

/* --- Greeting --- */
.greeting {
  width: 80%;
  margin: 0 auto 40px;
}

.greeting .lease,
.greeting .intro_p,
.greeting a {
  margin: 0;
}

@media (max-width: 1472px) {
  .greeting {
    width: 100%;
  }
}

/* --- Villas --- */
.vp_villas_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.vp_villas_info {
  padding: 0 20px 20px;
  box-sizing: border-box;
}

.vp_villas_info p {
  margin: 0;
}

.vp_villas_row img {
  width: 100%;
  height: auto;
}

@media (max-width: 1280px) {
  .vp_villas_row {
    grid-template-columns: 1fr;
  }
}