/* Styles pour les domaines génériques */
.domains-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 3rem;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.domain-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.domain-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.domain-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.domain-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.domain-desc {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.domain-percentage {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
}

/* Responsive pour les domaines */
@media (max-width: 768px) {
  .domains-grid,
  .acp-domains {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .domain-item,
  .acp-domain {
    padding: 1.5rem;
  }
}
