.why-us {
  background: #f7f3ef;
  padding: 120px 8%;
}

.why-container {
  max-width: 1300px;
  margin: auto;
}

.why-content {
  max-width: 760px;
  margin-bottom: 60px;
}

.why-tag {
  color: #e5091b;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.why-content h2 {
  color: #061f20;
  font-size: 40px;
  font-family: 'Inter', sans-serif;
  line-height: 1.05;
  margin: 18px 0 20px;
}

.why-content p {
  color: #5f6f72;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  padding: 38px 30px;
  border-radius: 22px;
  border: 1px solid rgba(6, 31, 32, 0.08);
  box-shadow: 0 18px 40px rgba(6, 31, 32, 0.06);
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(6, 31, 32, 0.12);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(229, 9, 27, 0.08);
  color: #e5091b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 26px;
}

.why-card h3 {
  color: #061f20;
  font-size: 26px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 14px;
}

.why-card p {
  color: #5f6f72;
  font-size: 15.5px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .why-us {
    padding: 90px 6%;
  }

  .why-content h2 {
    font-size: 38px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}