#why-us {
  background-color: var(--color-surface, #fff);
}

#why-container {
    width: 100%;
    justify-content: space-between;
    margin-top: 5rem;
}

#why-item-container {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.why-item {
  font-size: 1.9rem;
  padding: 1.8rem 1.6rem;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-lg, 1.6rem);
  justify-content: flex-start;
  width: 48%;
  align-items: flex-start;
  background: var(--color-muted-bg, #f0f2f4);
  border: 0.1rem solid rgba(23, 28, 30, 0.06);
  box-shadow: 0 0.2rem 1rem rgba(23, 28, 30, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.why-item:hover {
  box-shadow: var(--shadow-card, 0 0.4rem 2.4rem rgba(23, 28, 30, 0.08));
  transform: translateY(-0.2rem);
}

.why-item-header {
  height: 8rem;
  width: 8rem;
  flex-shrink: 0;
  background: linear-gradient(
    145deg,
    var(--color-dark, #171c1e),
    var(--color-dark-soft, #2a3236)
  );
  margin-right: 1.5rem;
  border-radius: var(--radius-md, 1.2rem);
}

.why-item-header i {
    font-size: 3.5rem;
    color: white;
}

.why-item-title {
  font-weight: 700;
  font-family: var(--font-heading, inherit);
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  text-align: justify;
  color: var(--color-dark, #171c1e);
}

.why-item-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.why-item-description {
    text-align: justify;
}

@media screen and (max-width: 1200px) {
    .why-item {
        width: 49%;
        font-size: 2rem;
        line-height: 2.8rem;
    }
}


@media screen and (max-width: 576px) {
    .why-item {
        width: 100%;
    }
}