.solar-header13 {
  position: relative;
  height: 45vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

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

.solar-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16,54,122,0.7), rgba(16,54,122,0.4));
  z-index: 1;
}

.solar-header-content {
  position: relative;
  z-index: 100;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.solar-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FFFFFF; /* Couleur d'accent a garder blanc ou une couleur vive */
}

.solar-header-content p {
  font-size: 1.25rem;
  color: #D3D3D3; /* Garder en blanc ou en tout cas une couleur vive*/
  margin-bottom: 2rem;
}

.solar-btn {
  padding: 0.9rem 2rem;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.solar-btn:hover {
  background-color: #FFFFFF;
  color: #10367A;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .solar-header-content h1 {
    font-size: 2rem;
  }
  .solar-header-content p {
    font-size: 1rem;
  }
}