/* Styles pour la page des services */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.services-overview {
  padding: 5rem 0;
  background: #f8f9fa;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-category {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.category-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-10px);
  border-color: #3498db;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-item p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-item li {
  padding: 0.5rem 0;
  color: #27ae60;
  font-size: 0.9rem;
}

.service-cta {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.advantages-section {
  padding: 5rem 0;
  background: white;
}

.advantages-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.advantages-section h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.advantages-section .section-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.advantage-item h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.advantage-item p {
  color: #7f8c8d;
  line-height: 1.6;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .service-category {
    padding: 2rem;
  }

  .service-items {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }

  .service-items {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .category-header h2 {
    font-size: 1.8rem;
  }
}
