.hero-section {
  position: relative;
  min-height: 45vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
  background-color: #FFFFFF;
}

/* Ne pas mettre de couleur de background ni de filtre sur .hero-section-overlay ni d'effet */
.hero-section .hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-section .hero-section-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-section .hero-content {
  width: 100%;
  max-width: 64rem;
  z-index: 1000;
}

.hero-section .hero-text h1 {
  font-size: 3rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .hero-text h1 .highlight {
  color: #FE5716; 
}

.hero-section .hero-text p {
  font-size: 1.25rem;
  color: #000000;
  max-width: 40rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-section .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-section .hero-buttons {
    flex-direction: row;
  }
}

.hero-section .hero-buttons button {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-section .hero-buttons button:hover {
  transform: scale(1.05);
}

.hero-section .hero-buttons button:first-child {
  background-color: #10367A; 
  color: #D3D3D3;
  border: none;
}

.hero-section .hero-buttons button:first-child:hover {
  background-color: #0a2351;
}

.hero-section .hero-buttons button.outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #10367A;
}

.hero-section .hero-buttons button.outline:hover {
  background-color: #10367A;
  color: #D3D3D3;
}