/* Général */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  color: #333;
}

p {
  color: #666;
}

/* Hero Section */
.hero-section {
  background-image: url("../assets/image/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-section .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section .hero-content p {
  font-size: 1.2rem;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Values Section */
.values-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.values-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.values {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.value {
  background-color: #e9ecef;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  text-align: center;
}

.value h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

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

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.faq .question {
  background-color: #ffffff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
}

.faq .question h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.faq .question p {
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonials {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial span {
  font-size: 1rem;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-section .hero-content p {
    font-size: 1rem;
  }

  .about-section {
    padding: 40px 20px;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .values-section {
    padding: 40px 20px;
  }

  .values-section h2 {
    font-size: 2rem;
  }

  .values {
    flex-direction: column;
    gap: 20px;
  }

  .value {
    flex: none;
    max-width: 100%;
  }

  .faq-section {
    padding: 40px 20px;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .testimonials-section {
    padding: 40px 20px;
  }

  .testimonials-section h2 {
    font-size: 2rem;
  }

  .testimonials {
    flex-direction: column;
  }

  .testimonial {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }

  .hero-section .hero-content p {
    font-size: 0.9rem;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .values-section h2 {
    font-size: 1.8rem;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .testimonials-section h2 {
    font-size: 1.8rem;
  }
}
