.brand-section {
  width: 100%;
  background-image: url('background.jpg'); /* 🔁 Remplace par ton image */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background-color: black;
  margin-top: 3px;
}

.brand-section h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: 800;
  color: white;
  text-align: center;
  text-transform: uppercase;
}

.brand-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
  color: white;
}

.brand-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: white;
  text-align: center;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.logos a {
  display: inline-block;
}

.logos img {
  height: 60px;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos img:hover {
  transform: scale(1.1);
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #333;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
  color: white;
}

@media (max-width: 768px) {
  .brand-section h1 {
    font-size: 2rem;
  }

  .brand-section p {
    font-size: 1rem;
  }

  .logos img {
    height: 50px;
    max-width: 80px;
  }
}


.multi-step-form {
  max-width: 600px;
  margin: 40px auto;
  background-color: black;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-step h2 {
  text-align: center;
  color: white;
  margin-bottom: 25px;
  font-weight: 800;
}

.form-step p{
    text-align: center;
    color: white;
    font-size: 10pt;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: white;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: #e4381c;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background-color 0.3s;
}

button:hover {
  background-color: black;
}

/* Responsive */
@media (max-width: 600px) {
  .multi-step-form {
    margin: 20px;
    padding: 20px;
  }
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.button-group button {
  flex: 1;
}
