.whychooseus-section {
  background: #fff;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  color: #00264d;
  margin-bottom: 38px;
  letter-spacing: 0.5px;
  position: relative;
}
.section-title .section-underline {
  display: block;
  margin: 12px auto 0 auto;
  width: 60px;
  height: 5px;
  background: #96071a;
  border-radius: 2px;
  content: '';
}
.vm-title-red {
  color: #96071a;
}

.whychooseus-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid for feature cards */
.whychooseus-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 48px;
  width: 100%;
  margin-bottom: 40px;
  align-items: stretch;
}
.whychooseus-features-grid.second-row {
  margin-top: 40px;
}

/* Images row - 3 images aligned with cards */
.whychooseus-images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto 40px auto;
}
.whychooseus-images-row img {
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  border: none;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,89,135,0.13);
  transition: box-shadow 0.22s, transform 0.22s;
  display: block;
  margin: 0 auto;
  aspect-ratio: 4/3;
}
.whychooseus-images-row img:hover {
  box-shadow: 0 16px 40px rgba(0,89,135,0.22);
  transform: translateY(-4px) scale(1.04);
}

/* Card layout: icon above, heading, then description centered */
.why-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #eaf6fe;
  border-radius: 24px;
  box-shadow: 0 8px 26px rgba(0,89,135,0.10);
  padding: 32px 30px 32px 30px;
  gap: 18px;
  min-height: 190px;
  width: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
  justify-content: flex-start;
  text-align: center;
}

.why-feature-badge {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,89,135,0.12);
  margin-bottom: 12px;
  margin-top: 2px;
  letter-spacing: 0;
  background: #005987;
}
.why-feature-badge.red {
  background: #96071a;
  color: #fff;
}
.why-feature-badge.blue {
  background: #00264d;
  color: #fff;
}

.why-feature-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why-feature-details strong {
  font-size: 1.15rem;
  color: #00264d;
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.2px;
  text-align: center;
}
.why-feature-details p {
  color: #00264d;
  font-size: 1.01rem;
  margin: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 1100px) {
  .whychooseus-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
    padding: 0 3vw;
  }
  .whychooseus-images-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 28px auto 28px auto;
  }
  .whychooseus-images-row img {
    max-width: 95vw;
    width: 100%;
    height: 180px;
    border-radius: 14px;
  }
}

@media (max-width: 900px) {
  .whychooseus-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4vw;
  }
  .why-feature-card {
    min-height: 0;
    padding: 22px 12px 22px 12px;
    border-radius: 13px;
  }
  .why-feature-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    font-size: 1.5rem;
    border-radius: 9px;
    margin-bottom: 10px;
  }
  .whychooseus-images-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 10px auto 10px auto;
  }
}

@media (max-width: 600px) {
  .whychooseus-section {
    padding: 18px 0;
  }
  .section-title {
    font-size: 1.18rem;
    margin-bottom: 18px;
  }
  .whychooseus-features-grid {
    gap: 14px;
    margin-bottom: 16px;
    padding: 0 2vw;
  }
  .why-feature-card {
    border-radius: 12px;
    gap: 10px;
    padding: 12px 3vw 12px 3vw;
    box-shadow: 0 2px 14px rgba(0,89,135,0.09);
  }
  .why-feature-badge {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
    font-size: 1.1rem;
    border-radius: 5px;
    margin-bottom: 6px;
  }
  .whychooseus-images-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 8px auto 8px auto;
  }
  .whychooseus-images-row img {
    width: 100vw;
    max-width: 96vw;
    min-width: 0;
    height: auto;
    aspect-ratio: 4/3;
    min-height: 130px;
    border-radius: 12px;
    margin: 0 auto;
  }
}