/* Why Choose Us block: light teal container, items in a row (icon, title, description) */

.why-choose-us {
  width: 100%;
  margin-bottom: 2rem;
}

.why-choose-us__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
  background: #ccfbf1;
  border-radius: 12px;
  justify-content: center;
  align-items: stretch;
}

.why-choose-us__item {
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 320px;
  text-align: center;
  padding: 0.5rem;
}

.why-choose-us__icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.why-choose-us__icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  color: #0d9488;
}

.why-choose-us__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.why-choose-us__description {
  font-size: 0.9375rem;
  color: #334155;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-choose-us__inner {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }

  .why-choose-us__item {
    max-width: 100%;
  }
}
