.why-us-section {
  padding: 80px 0;
/*  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);*/
}

.why-us-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1651a0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-us-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b7a90;
  margin-bottom: 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-us-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-us-card:hover {
  transform: translateY(-4px);
  border-color: #1651a0;
  box-shadow: 0 8px 24px rgba(22, 81, 160, 0.12);
}

.why-us-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1651a0 0%, #2d6fc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 81, 160, 0.2);
  transition: transform 0.3s ease;
}

.why-us-card:hover .why-us-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-us-card__icon i {
  font-size: 20px;
  color: #ffffff;
}

.why-us-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Tablet */
@media (max-width: 991.98px) {
  .why-us-section {
    padding: 60px 0;
  }

  .why-us-title {
    text-align: center;
  }

  .why-us-desc {
    text-align: center;
    margin-bottom: 2rem;
  }

  .why-us-grid {
    gap: 14px;
  }

  .why-us-card {
    padding: 18px 16px;
  }

  .why-us-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .why-us-card__icon i {
    font-size: 18px;
  }

  .why-us-card__title {
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .why-us-section {
    padding: 48px 0;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-us-card {
    padding: 16px 14px;
  }

  .why-us-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .why-us-card__icon i {
    font-size: 16px;
  }

  .why-us-card__title {
    font-size: 0.85rem;
  }
}
