/* Partie présentation */
.presentation-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  padding-bottom: 0;
  max-width: 90%;
  color: #fff;
}

.presentation-text h1 {
  color: #fff;
  font-size: 110px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.presentation-text p {
  font-size: 25px;
  margin-bottom: 2rem;
  color: #e9e9e9;
}

.register-btn {
  background-color: #344D59;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 100px;
  font-size: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #2f434d;
}

.presentation-image img {
  max-width: 1000px;
  opacity: 0.8;
  display:flex;
}

/* Les 3 étapes */ 
.steps {
  text-align: center;
  background-color: #f4f5f6;
  padding: 50px;
}

/* Titre : Comment ça marche ? */
.steps h2 {
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: 800;
  color: #344D59;
  margin-bottom: 100px;
}

.steps-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Largeur maximum des étapes */
.step {
  max-width: 280px;
}

/* Etape 1/2/3 */
.step h3 {
  font-size: 40px;
  color: #5d7a85;
  margin-bottom: 10px;
}

.step img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Paragraphe des étapes */
.step p {
  color: #333;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* --- Section principale --- */
.create-section {
  display: flex;
  align-items: center;
  background-color: #344D59;
  border-radius: 12px;
  width: 90%;
}

.ready-text {
  flex: 1;
  padding: 40px;
  color: #fff;
}

.create-section h2 {
  font-size: 60px;
  margin-bottom: 15px;
}

.create-section p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.create-btn {
  background-color: #709CA7;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 100px;
  font-size: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.create-btn:hover {
  background-color: #3b8c8c;
}

.create-image {
  flex: 1;
}

.create-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
