/* Why Choose Us Section */
.why-choose-us-section {
  background: white;
  padding: 80px 0;
  width: 100%;
}

.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.why-choose-us-section h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #333, #f7be16);
  margin: 20px auto 0;
  border-radius: 2px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #f7be16;
  background: white;
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f7be16, #ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 15px rgba(247, 190, 22, 0.3);
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.advantage-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .why-choose-us-section h2 {
    font-size: 1.8rem;
  }

  .advantage-card {
    padding: 25px 15px;
  }

  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .advantage-card h3 {
    font-size: 1.1rem;
  }

  .advantage-card p {
    font-size: 0.9rem;
  }
}
