/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: linear-gradient(135deg, #f4b400, #e67e22);
  color: white;
  text-align: center;
  padding: 120px 20px; /* Augmente le padding pour donner plus de hauteur */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.header h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem; /* Augmente la taille pour bien mettre en avant le titre */
  margin-bottom: 20px;
}

.header .tagline {
  font-size: 1.8rem; /* Légèrement plus grande pour accompagner le titre */
  margin-bottom: 30px;
}

.header .button {
  display: inline-block; /* Assure que le bouton est traité comme un élément aligné */
  padding: 15px 40px;
  background: white;
  color: #f4b400;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
  margin-top: 20px; /* Ajoute un espace constant entre la tagline et le bouton */
  margin-left: auto;
  margin-right: auto;
}

.header .button:hover {
  background: #e67e22;
  color: white;
}


/* About Section */
.about {
  background: white;
  padding: 40px 20px; /* Moins de padding pour un design compact */
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.about h2 {
  text-align: center;
  font-size: 2rem; /* Taille ajustée */
  color: #f4b400;
  margin-bottom: 20px;
}

.features {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.feature {
  text-align: center;
  flex: 1;
  padding: 15px;
  border: 1px solid #f4b400;
  border-radius: 10px;
  min-width: 250px; /* Garde une taille minimale pour les petits écrans */
}

.feature h3 {
  font-size: 1.3rem;
  color: #f4b400;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* CTA Section */
.cta {
  text-align: center;
  background: #f4b400;
  color: white;
  padding: 40px 20px;
  margin: 20px 0;
  border-radius: 10px;
}

.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta .button {
  padding: 10px 25px; /* Compacte mais lisible */
  background: white;
  color: #f4b400;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.cta .button:hover {
  background: #e67e22;
  color: white;
}

/* Contact Section */
.contact {
  background: white;
  padding: 40px 20px;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #f4b400;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  width: 100%;
  padding: 12px;
  background: #f4b400;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.contact button:hover {
  background: #e67e22;
}

/* Footer */
.footer {
  background: white;
  color: black;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header .tagline {
    font-size: 1rem;
  }
}



/* Guarantees Section */
.guarantees {
  background: #fff;
  padding: 50px 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guarantees h2 {
  text-align: center;
  font-size: 2rem;
  color: #f4b400;
  margin-bottom: 20px;
}

.guarantees p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.guarantees-list {
  list-style-type: none; /* Supprime les puces */
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
}

.guarantees-list li {
  margin-bottom: 15px;
  padding: 10px 15px;
  background: #f9f9f9;
  border-left: 5px solid #f4b400; /* Accent pour chaque point */
  border-radius: 5px;
  color: #333;
}

.guarantees-list li strong {
  color: black;
}


/* Testimonials Section */
.testimonials {
  background: #f9f9f9;
  padding: 50px 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #f4b400;
  margin-bottom: 30px;
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap; /* Permet une mise en page responsive */
  gap: 20px;
  justify-content: space-between;
}

.testimonial {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 20px;
  border: 1px solid #f4b400;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre les éléments horizontalement */
  justify-content: space-between; /* Égalise l'espacement vertical */
}

.emoji {
  font-size: 2rem; /* Taille uniforme pour les émojis */
  margin-top: 10px; /* Espacement entre le texte et l'émoji */
  line-height: 1; /* Assure que l'émoji n'a pas d'espacement vertical supplémentaire */
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    flex-direction: column; /* Arrange les éléments verticalement */
    align-items: stretch; /* Étire les éléments pour utiliser tout l'espace */
  }

  .header {
    padding: 60px 20px; /* Réduit le padding pour les petits écrans */
  }

  .header h1 {
    font-size: 2.5rem; /* Taille réduite pour s'adapter */
  }

  .header .tagline {
    font-size: 1.2rem;
    margin-bottom: 15px; /* Ajuste l'espacement */
  }

  .header .button {
    padding: 10px 20px; /* Boutons plus petits */
    font-size: 1rem;
  }

  .about {
    padding: 20px 15px; /* Réduit le padding */
  }

  .guarantees-list li {
    font-size: 0.9rem; /* Réduit légèrement la taille des éléments */
    padding: 8px 10px;
  }

  .cta {
    padding: 20px 15px; /* Compacte la section CTA */
  }

  .cta h2 {
    font-size: 1.5rem; /* Réduit la taille des titres */
  }

  .cta p {
    font-size: 1rem;
  }

  .contact {
    padding: 20px 15px; /* Compacte la section Contact */
  }

  .contact h2 {
    font-size: 1.8rem;
  }

  .contact p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 2rem; /* Encore plus petit pour les très petits écrans */
  }

  .header .tagline {
    font-size: 1rem; /* Adapte encore davantage */
  }

  .features {
    gap: 10px; /* Réduit l'espacement entre les features */
  }

  .feature {
    min-width: auto; /* Supprime la contrainte de min-width */
    padding: 10px; /* Rend les features plus compactes */
  }

  .testimonials-list {
    flex-direction: column; /* Colonne pour éviter les débordements */
  }

  .cta .button {
    padding: 8px 20px;
    font-size: 0.9rem; /* Ajuste la taille du bouton */
  }

  .contact h2 {
    font-size: 1.5rem; /* Taille encore plus petite */
  }

  .contact p {
    font-size: 0.9rem;
  }

  .footer {
    font-size: 0.8rem; /* Réduit légèrement la taille de police */
  }
}


