/* Section Notre Expertise */
.notre-expertise-section {
  padding: 5rem 2rem 2rem;
  background: white;
  overflow: hidden;
}
.notre-expertise-section .container {
  max-width: 1400px;
  margin: 0 auto;
}
.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.expertise-text-box {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.expertise-text-box.animate {
  opacity: 1;
  transform: translateX(0);
}
.expertise-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Styling pour les mots en gras - en bleu */
.expertise-intro strong,
.expertise-intro b {
  color: #026ea7;
  font-weight: 700;
}

.expertise-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}
.expertise-image-left {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(2, 110, 167, 0.15);
  transition: transform 0.3s ease;
}
.expertise-image-left:hover {
  transform: translateY(-5px);
}
.expertise-image-left img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.expertise-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.expertise-right.animate {
  opacity: 1;
  transform: translateX(0);
}
.expertise-right h2 {
  font-size: 1.8rem;
  color: #1C2A33;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}
.expertise-highlight {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

/* Styling pour les mots en gras dans expertise-highlight - en bleu */
.expertise-highlight strong,
.expertise-highlight b {
  color: #026ea7;
  font-weight: 700;
}

.expertise-image-right {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(2, 110, 167, 0.15);
  transition: transform 0.3s ease;
}
.expertise-image-right:hover {
  transform: translateY(-5px);
}
.expertise-image-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .expertise-content {
    gap: 3rem;
  }
  .expertise-image-left img,
  .expertise-image-right img {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .notre-expertise-section {
    padding: 3rem 1.5rem;
  }
  .expertise-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  .expertise-text-box,
  .expertise-right {
    transform: none;
  }
  .expertise-text-box.animate,
  .expertise-right.animate {
    transform: none;
  }
  .expertise-right {
    order: 1;
  }
  .expertise-text-box {
    order: 2;
  }
  .expertise-right h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .expertise-intro,
  .expertise-description,
  .expertise-highlight {
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .expertise-image-left,
  .expertise-image-right {
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
    width: 100%;
  }
  .expertise-image-left img,
  .expertise-image-right img {
    height: 300px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
  }
}