/* =========================
   Style général
========================= */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #edbf1e;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.pret-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
}

.pret-container {
  background: rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  max-width: 650px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

input, 
select, 
button {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  box-sizing: border-box;
}

button {
  background: #242935;
  color: #edbf1e;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

button:hover {
  transform: scale(1.05);
  background: #111622;
}

.step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.step.active {
  display: block;
}

.engagement {
  font-size: 0.95rem;
  text-align: left;
  margin: 20px 0;
}

#preuveSection {
  margin-top: 15px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Cartes de simulation
========================= */
.simu-cards {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.simu-cards .card {
  flex: 1 1 30%;
  background: rgba(36, 41, 53, 0.8);
  color: #edbf1e;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}

.simu-cards .card:hover {
  transform: translateY(-5px);
  background: rgba(36, 41, 53, 0.95);
}

.simu-cards .card .label {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 8px;
}

/* =========================
   Logos de paiement
========================= */
.paiement-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.paiement-logos img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  opacity: 0.9;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
}

.paiement-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .pret-container {
    padding: 30px 20px;
    border-radius: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .simu-cards {
    flex-direction: column;
    gap: 15px;
  }

  .simu-cards .card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .pret-container {
    padding: 20px 15px;
    max-width: 100%;
  }

  input, 
  select, 
  button {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  button {
    font-size: 1rem;
    padding: 12px;
  }
}

@media(max-width:600px){
  .paiement-logos {
    gap: 10px;
    margin-bottom: 25px;
  }
  .paiement-logos img {
    width: 36px;
    height: 36px;
    padding: 3px;
  }
}
.notice-box {
  background-color: #f8f9fa;
  border-left: 6px solid #ff4d4f; /* rouge avertissement */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.notice-box p {
  margin: 10px 0;
  color: #333;
  font-size: 16px;
}

.consentement {
  margin: 15px 0;
  font-size: 15px;
}

.consentement input[type="checkbox"] {
  margin-right: 10px;
}
