* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Arial', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.landing-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.image-section {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Affiche le haut de l'image */
}

.text-section {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1E3A5F; /* Bleu complémentaire à l’orange */
  color: #fff;
}

.text-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.text-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #FFA500;
  color: #1E3A5F;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e69500;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
    height: auto;
  }

  .text-section {
    order: 1;
    padding: 2rem;
    text-align: center;
  }

  .image-section {
    order: 2;
    height: 50vh;
  }

  .image-section img {
    height: 100%;
  }
}