/* Sections légales (CGU, CGV, Privacy) */
.back-container {
  margin-bottom: 15px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.back-btn i {
  font-size: 16px;
}

.back-btn .back-btn-text {
  font-size: 14px;
  line-height: 1;
}

.back-btn:hover {
  background: rgba(255,255,255,0.04);
}

@media (max-width: 900px) {
  .back-btn {
    padding: 8px 10px;
    gap: 8px;
  }
  .back-btn .back-btn-text {
    font-size: 13px;
  }
}
.legal-content {
  width: 100%;
}

.legal-body {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(230, 0, 126, 0.3);
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 10px 0;
}

.legal-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 12px 0 12px 24px;
  color: var(--text-muted);
}

.legal-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.legal-section a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.legal-section strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 900px) {
  .legal-body {
    padding: 20px;
  }
  
  .legal-section h2 {
    font-size: 20px;
  }
  
  .legal-section h3 {
    font-size: 16px;
  }
}
