.WhyChooseUsSectionContainer {
  width: 100%;
  max-width: 1160px;
  margin: 3.5rem auto 3rem auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 5;
}

.WhyChooseUsHeaderWrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}

.WhyChooseUsSectionTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--PureWhiteColor);
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
  text-transform: none;
}

.WhyChooseUsSectionSubtitleDescription {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--SubtleSecondaryTextColor);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
  text-transform: none;
}

.WhyChooseUsGridContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.25rem;
}

.WhyChooseUsCardItem {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 7, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 1.6rem 1.6rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.WhyChooseUsCardItem:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
  background-color: rgba(16, 16, 18, 0.88);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.64), 0 0 20px rgba(255, 255, 255, 0.08);
}

.WhyChooseUsCardIconWrapper {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--PureWhiteColor);
}

.WhyChooseUsCardIconSvg {
  width: 22px;
  height: 22px;
  stroke: var(--PureWhiteColor);
  stroke-width: 2;
  fill: none;
}

.WhyChooseUsCardTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
  letter-spacing: 0;
  text-transform: none;
}

.WhyChooseUsCardDescriptionParagraph {
  font-size: 0.92rem;
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.6;
  text-transform: none;
}
