.why-section {
  background: #fbf5ea;
  padding: 80px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-container h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 60px;
  color: #6b5b45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  border: 3px solid #6b5b45;
  border-radius: 24px;
  padding: 30px;
  background: transparent;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #6b5b45;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5145;
}