/* Style global */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f4f4f4;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #007bff;
}

/* Section Présentation de l'Entreprise */
.presentation {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: #fff;
}

.presentation .content {
  flex: 1;
  padding: 20px;
}

.presentation h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.presentation p {
  font-size: 18px;
  line-height: 1.5;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.presentation-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Mission et Vision */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.mission-vision .content {
  flex: 1;
  padding: 20px;
}

.mission-vision h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.mission-vision p {
  font-size: 18px;
  line-height: 1.5;
}

/* Section Valeurs */
.valeurs {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.valeurs h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.valeurs-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.valeurs-list li {
  flex: 1;
  max-width: 300px;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.valeurs-list li:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.valeur-icon {
  text-align: center;
  margin-bottom: 20px;
}

.valeur-icon img {
  width: 50px;
  height: 50px;
}

.valeur-content {
  font-size: 16px;
  line-height: 1.5;
}

/* Section Équipe */
.equipe {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.equipe h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.equipe-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.equipe-membre {
  flex: 1;
  max-width: 250px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.equipe-membre:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.equipe-image {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 20px;
}

.equipe h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.equipe p {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .presentation,
  .mission-vision,
  .valeurs-list,
  .equipe-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Partenaires */
.partenaires {
  padding: 50px 20px;
  background-color: #f1f1f1;
  text-align: center;
}

.partenaires h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-slide img {
  min-width: 200px;
  margin: 0 15px;
  object-fit: contain;
  max-height: 100px;
}

/* Responsivité */
@media (max-width: 768px) {
  .carousel-slide img {
    min-width: 150px;
    max-height: 80px;
  }
}
