.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('bg.jpg') center/cover;
  color: white;
  padding: 100px 0;
}
.feature-icon-img {
  max-width: 80px;
  margin-bottom: 1rem;
}
.pricing-card-title {
  font-size: 1.25rem;
  font-weight: bold;
}
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #000;
}
.list-unstyled a {
  text-decoration: underline;
}
.html-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  text-decoration: none !important;
  letter-spacing: -0.5px;
}
.html-logo-icon {
  background: #0d6efd;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
}
.stat-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s;
}
.stat-card:hover {
  transform: translateY(-5px);
}
.pricing-card-title {
  font-size: 1.25rem;
  font-weight: bold;
}
.requirement-card {
  border: none;
  border-radius: 8px;
  transition: transform 0.2s;
}
.requirement-card:hover {
  transform: translateY(-3px);
}
.feature-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}
.requirement-card {
  border: none;
  border-radius: 8px;
  transition: transform 0.2s;
}
.requirement-card:hover {
  transform: translateY(-3px);
}
.info-box {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  border-radius: 4px;
  padding: 1.5rem;
}
#thankYouMessage {
  border: none;
  border-left: 6px solid #198754 !important;
  background-color: #e8f5e9;
  color: #0f5132;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
  transition: opacity 0.4s ease;
  opacity: 0;
}
/* Restylage complet du Formulaire */
.custom-form-card {
  border: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.form-header-badge {
  background-color: #e8f0fe;
  color: #0d6efd;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
}
.custom-form-card .form-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #495057;
  font-weight: 700;
  margin-bottom: 6px;
}
.custom-form-card .form-control, .custom-form-card .form-select {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #f8f9fa;
}
.custom-form-card .form-control:focus, .custom-form-card .form-select:focus {
  background-color: #ffffff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
  outline: none;
}
.custom-form-card .input-group-text {
  background-color: #e9ecef;
  border: 1px solid #dee2e6;
  border-radius: 8px 0 0 8px;
  color: #6c757d;
  padding: 0 14px;
}
.custom-form-card .input-group > .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* Style des boutons radios (Genre) */
.gender-selector {
  display: flex;
  gap: 15px;
}
.gender-box {
  flex: 1;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background-color: #f8f9fa;
  transition: all 0.2s;
}
.gender-box:hover {
  background-color: #f1f3f5;
}
.gender-box input[type="radio"] {
  display: none;
}
.gender-box input[type="radio"]:checked + label {
  color: #0d6efd;
  font-weight: 700;
}
.gender-box:has(input[type="radio"]:checked) {
  border-color: #0d6efd;
  background-color: #e8f0fe;
}
.privacy-header {
	background: linear-gradient(rgba(13, 110, 253, 0.05), rgba(13, 110, 253, 0.05));
	padding: 80px 0 60px 0;
	border-bottom: 1px solid #dee2e6;
}
.policy-section {
  margin-bottom: 2.5rem;
}
.policy-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #212529;
  border-left: 4px solid #0d6efd;
  padding-left: 12px;
  margin-bottom: 1rem;
}
.policy-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}