.why-choose {
  padding: 6rem 2rem;
  text-align: center;
  background: #faf8f5;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #5c4033;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.reason {
  max-width: 100%;
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8e0d8;
}

.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.reason h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #5c4033;
  font-weight: 600;
}

.reason p {
  font-size: 0.95rem;
  color: #6b7560;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-choose {
    padding: 3rem 1.5rem;
  }

  .why-choose h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .reasons {
    gap: 2rem;
  }
}
