.whyus {
  padding: 100px 0;
  background-color: #fff;
}

.whyus__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.whyus__title {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 0.5rem;
}

.whyus__desc {
  color: var(--color-gray, #555);
  line-height: 1.6;
}

.whyus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.whyus__point {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.whyus__icon img {
  width: 55px;
  height: auto;
  flex-shrink: 0;
}

.whyus__point-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--color-dark, #222);
}

.whyus__point-text {
  color: var(--color-gray, #555);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .whyus__grid {
    grid-template-columns: 1fr;
  }
  .whyus__point {
    display: block;
    max-width: 80%;
    margin: auto;
  }
}
