/******************** Why Choose Us Block Styles ********************/
.why-choose-us-section {
  padding: 2rem 0;
}

.why-choose-us-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.why-choose-us-title-wrapper .h2-sts {
  margin: 0;
  white-space: nowrap;
}

.why-choose-us-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-text-global, #603813);
  display: block;
  max-width: 200px;
}

.why-choose-us-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: stretch;
}

.why-choose-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}

.why-choose-us-icon-wrapper {
  width: 100%;
  max-width: 4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-us-icon {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.why-choose-us-headline {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .why-choose-us-grid {
    gap: 2rem;
  }

  .why-choose-us-icon-wrapper {
    max-width: 5rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .why-choose-us-section {
    padding: 1.5rem 0;
  }

  .why-choose-us-grid {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .why-choose-us-item {
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: calc(33.333% - 0.5rem);
  }

  .why-choose-us-icon-wrapper {
    max-width: 3rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us-grid {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }

  .why-choose-us-icon-wrapper {
    max-width: 2.5rem;
    margin-bottom: 0.5rem;
  }
}
/******************** End of Why Choose Us Block Styles ********************/
