/* Why Choose Aniston Section */
.why-choose-section {
  padding: 8rem 0;
  background: #ffffff;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 6rem;
}

.why-choose-title {
  font-size: 4rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 2rem;
}

.why-choose-subtitle {
  font-size: 2rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.advantage-item {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 2rem;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #212529;
  background: #ffffff;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: #212529;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon i {
  color: #ffffff;
  font-size: 2.4rem;
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.advantage-description {
  font-size: 1.6rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive Design for Why Choose Aniston Section */
@media (max-width: 1200px) {
  .why-choose-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-title {
    font-size: 3rem;
  }
  
  .why-choose-subtitle {
    font-size: 1.8rem;
  }
  
  .advantage-item {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-choose-container {
    padding: 0 1rem;
  }
  
  .why-choose-title {
    font-size: 2.5rem;
  }
} 