.why-us {
  background-color: #F5F3EE;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FAF8F3;
}

.why-us__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.why-us__header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us__heading {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.3691px;
  color: #1a1f3a;
  margin-bottom: 0;
}

.why-us__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #64748b;
  margin-top: 16px;
  margin-bottom: 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-us__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-us__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: rgba(14, 165, 233, 0.1);
  border-radius: 8px;
  color: #0ea5e9;
}

.why-us__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.why-us__content {
  flex: 1;
  min-width: 0;
}

.why-us__title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #1a1f3a;
  margin-bottom: 0;
}

.why-us__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #64748b;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .why-us {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-us__heading {
    font-size: 40px;
  }
}