/* Général */
body {
  font-family: 'avenir-lt-w01_35-light1475496, sans-serif';
  background: whitesmoke;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2 {
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

/* Main content */
main {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro Text */
.intro-text {
  text-align: center;
  margin-bottom: 2rem;
  margin-left: 20%;
  margin-right: 20%;
}

/* Expertise Section */
.expertise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.expertise-item img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .expertise {
    grid-template-columns: 1fr;
  }

  .expertise-item img {
    max-width: 150px;
  }
}


/* Style global pour la section International */
.international-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Conteneur flex pour aligner image et texte côte à côte */
.international-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem; /* Ajout d'un padding autour du texte et des images */
  background-color: #ffffff; /* Couleur de blanc */
  border-radius: 8px; /* Arrondi des bords pour un effet plus doux */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombre légère pour les blocs */
}

/* Style pour les images */
.international-img {
  width: 30%; /* Rétrécissement de l'image à 30% de la largeur */
  max-width: 300px; /* Limitation de la largeur maximale des images */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-right: 2rem;
}

/* Style pour le texte */
.text-content {
  width: 60%;
}

/* Style des h2 */
h2 {
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Style spécifique pour les h2 dans les sections */
.expertise-item h2 {
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #333;
}

.international-content h2 {
  text-transform: uppercase;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

#international-title {
  text-transform: uppercase;
  font-size: 2.8rem;
  text-align: center;
  color: #333;
  margin: 2rem 0;
}

/* Mise en page des paragraphes */
p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #666;
  text-align: center;
}

/* Responsivité pour les petits écrans */
@media (max-width: 768px) {
  .international-section {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  .international-img {
    width: 80%; /* Les images occupent 80% de la largeur sur mobile */
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .international-content {
    flex-direction: column;
    align-items: center;
  }

  .text-content {
    width: 100%;
  }
}
