/* Section Hero About */
.about-hero-section {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 73px 0;
}

/* Bloc principal avec fond blanc */
.about-main-block {
  background: white;
  border-radius: 30px;
  padding: 20px 20px 20px 50px;
  margin-bottom: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 196px;
}

/* Partie gauche */
.about-left {
  flex: 1;
  max-width: 600px;
}

.about-intro {
  font-size: 16px;
  line-height: 28px;
  color: #1D252B;
  margin-bottom: 25px;
  font-weight: 400;
}

.about-title {
  font-size: 22px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 5px 0;
  line-height: 50px;
}

.about-description {
  font-size: 15px;
  line-height: 28px;
  color: #1D252B;
  margin: 0;
  font-weight: 400;
}

/* Partie droite */
.about-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  max-width: 100%;
  height: auto;
}

/* Section Nos Valeurs */
.values-section {
  margin-bottom: 65px;
}

.values-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D252B;
  text-align: center;
  margin: 0 0 50px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: white;
  border-radius: 25px;
  padding: 26px 34px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #F90;
  margin: 0;
}

.value-card-text {
  font-size: 14px;
  line-height: 26px;
  color: #223245;
  margin: 0;
  font-weight: 400;
}

/* Section Notre Parcours */

.journey-decoration {
  margin-bottom: 31px;
  display: flex;
  justify-content: center;
}

.journey-deco-img {
  width: 111px;
  height: auto;
}

.journey-title {
  font-size: 40px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 62px 0;
  line-height: 1.2;
}

.journey-title span {
  font-weight: 400;
  font-style: italic;
}


.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  align-items: start;
}

.journey-card {
  background: #F8F8F9;
  border-radius: 25px;
  padding: 39px 35px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #E2E7EA;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

/* Contenu par défaut */
.journey-content-default {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Contenu au survol */
.journey-content-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 39px 35px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
}

/* État au survol */
.journey-card:hover .journey-content-default {
  opacity: 0;
  transform: translateY(-20px);
}

.journey-card:hover .journey-content-hover {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------
   Responsive (mobile)
   -------------------- */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 24px;
  }
  .about-main-block {
    padding: 20px;
  }
  .about-title {
    font-size: 24px;
    line-height: 32px;
  }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .journey-title {
    font-size: 28px;
    line-height: 36px;
  }
  .team-block,
  .saint-louis-main-block,
  .career-main-block {
    padding: 20px;
  }
  .team-content,
  .saint-louis-team-content {
    flex-direction: column;
    gap: 16px;
  }
  .team-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .saint-louis-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .saint-louis-spaces-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-image,
  .team-image,
  .saint-louis-team-image {
    max-width: 100%;
    height: auto;
  }
}

.journey-card:hover {
  min-height: 350px;
  height: auto;
  z-index: 10;
}

.journey-period {
  font-size: 20px;
  font-weight: 700;
  color: #F90;
  font-style: italic;
  margin-bottom: 84px;
  line-height: 26px;
}

.journey-content-hover .journey-period {
  margin-bottom: 25px;
}

.journey-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1D252B;
  margin-bottom: 23px;
}

/* Nouveaux éléments de contenu au survol */
.journey-card-highlight {
  font-size: 14px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 26px;
}

.journey-card-description {
  font-size: 14px;
  line-height: 26px;
  color: #1D252B;
  margin: 0;
  font-weight: 400;
  flex-grow: 1;
}

/* Animations au scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des éléments enfants */
.about-main-block,
.values-title,
.value-card,
.journey-title,
.journey-card,
.journey-decoration {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-main-block.animate-in,
.values-title.animate-in,
.value-card.animate-in,
.journey-title.animate-in,
.journey-card.animate-in,
.journey-decoration.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation des textes */
.about-intro,
.about-title,
.about-description,
.value-card-title,
.value-card-text,
.journey-period,
.journey-card-title {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .about-intro,
.animate-in .about-title,
.animate-in .about-description,
.animate-in .value-card-title,
.animate-in .value-card-text,
.animate-in .journey-period,
.animate-in .journey-card-title {
  opacity: 1;
  transform: translateY(0);
}

/* Animation de l'image */
.about-image {
  opacity: 0;
  transform: scale(0.9) rotate(2deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .about-image {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .about-left {
    max-width: 100%;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .values-title,
  .journey-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 30px 0;
  }
  
  .about-main-block {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
  
  .journey-card {
    min-height: 180px;
    padding: 30px 25px;
  }
  
  .journey-card:hover {
    min-height: 300px;
  }
  
  .journey-content-hover {
    padding: 30px 25px;
  }
  
  .journey-card-highlight {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .journey-card-description {
    font-size: 13px;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .about-intro {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .about-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .about-description {
    font-size: 20px;
  }
  
  .values-section {
    margin-bottom: 50px;
  }
  
  .values-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .value-card-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .value-card-text {
    font-size: 14px;
  }
  
  .journey-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .journey-card {
    padding: 30px 20px;
  }
  
  .journey-period {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .journey-card-title {
    font-size: 20px;
  }
  
  .journey-deco-img {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .about-main-block {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .journey-card {
    min-height: 160px;
    padding: 25px 20px;
  }
  
  .journey-card:hover {
    min-height: 280px;
  }
  
  .journey-content-hover {
    padding: 25px 20px;
  }
  
  .journey-card-highlight {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .journey-card-description {
    font-size: 12px;
  }
  
  .about-intro {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .about-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .about-description {
    font-size: 18px;
  }
  
  .values-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .value-card {
    padding: 25px 15px;
  }
  
  .value-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .value-card-text {
    font-size: 13px;
  }
  
  .journey-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .journey-card {
    padding: 25px 15px;
  }
  
  .journey-period {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .journey-card-title {
    font-size: 18px;
  }
  
  .journey-deco-img {
    width: 60px;
  }
}

/* Animation du titre principal avec effet de typewriter */
.about-title.title-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Styles pour les transitions fluides */
.value-card,
.journey-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation spéciale pour les titres de cards */
.value-card-title,
.journey-card-title {
  transition: all 0.3s ease;
}

/* Animation spéciale pour les périodes */
.journey-period {
  transition: all 0.3s ease;
}

/* Effet de focus pour l'accessibilité */
.value-card:focus,
.journey-card:focus {
  outline: 2px solid #F90;
  outline-offset: 2px;
}

/* Section Notre Méthode SACA */
.saca-section {
  background: white;
  padding: 42px 0;
  margin: 0;
}

.saca-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.saca-header-content {
  display: flex;
  flex-direction: column;
}

.saca-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D252B;
  line-height: 54px;
  margin: 0;
}

.method-title {
  font-size: 24px;
  font-weight: 400;
  color: #1D252B;
  line-height: 54px;
  font-style: italic;
  margin: 0;
}

.saca-deco {
  width: 166px;
  height: auto;
}

.saca-content {
  display: flex;
  align-items: stretch;
}

.saca-tabs-section {
  flex: 0 0 278px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.saca-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  background: transparent;
  border-radius: 20px;
  padding: 0 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #E2E7EA;
}

.saca-tab-item:hover {
  transform: translateX(5px);
}

.saca-tab-item.active {
  border: 1px solid #1D252B;
}

.saca-tab-label {
  font-size: 20px;
  font-weight: 500;
  color: #6E7F93;
  transition: all 0.3s ease;
}

.saca-tab-item.active .saca-tab-label {
  color: #1D252B;
  font-weight: 700;
}

.saca-content-divider {
  width: 2px;
  background: #DFE5EC;
  margin: 0 29px;
  align-self: stretch;
}

.saca-content-section {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.saca-content-block {
  background-image: url(/assets/bg-saca-6e24fe5afe1918680a55197f581c2bc026fb93b1f3997c857a1fb3c7d6034ebd.svg);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 42px 59px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.saca-content-block > * {
  position: relative;
  z-index: 2;
}

.saca-content-block.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.saca-content-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 25px 0;
  line-height: 39px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.1s;
}

.saca-content-block.active .saca-content-title {
  opacity: 1;
  transform: translateY(0);
}

.saca-content-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 39px;
  color: #FFF;
  margin: 0 0 57px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}

.saca-content-block.active .saca-content-description {
  opacity: 1;
  transform: translateY(0);
}

.saca-content-illustration {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.saca-content-block.active .saca-content-illustration {
  opacity: 1;
  transform: scale(1);
}

/* Animations pour la section SACA */
.saca-section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.saca-header,
.saca-content,
.saca-tabs-section,
.saca-content-section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.saca-section.animate-in,
.saca-header.animate-in,
.saca-content.animate-in,
.saca-tabs-section.animate-in,
.saca-content-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.saca-tab-item {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.saca-tab-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.saca-content-block {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.saca-content-block.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive pour la section SACA */
@media (max-width: 1024px) {
  .saca-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .saca-header-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .saca-title,
  .method-title {
    font-size: 36px;
  }
  
  .saca-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .saca-tabs-section {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .saca-tab-item {
    flex-shrink: 0;
    min-width: 150px;
    height: 80px;
    padding: 0 20px;
  }
  
  .saca-content-divider {
    width: 100%;
    height: 2px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .saca-section {
    padding: 50px 0;
  }
  
  .saca-title,
  .method-title {
    font-size: 28px;
  }
  
  .saca-deco {
    width: 80px;
  }
  
  .saca-tab-item {
    min-width: 120px;
    height: 60px;
    padding: 0 15px;
  }
  
  .saca-tab-label {
    font-size: 16px;
  }
  
  .saca-content-block {
    padding: 25px 20px;
  }
  
  .saca-content-title {
    font-size: 20px;
  }
  
  .saca-content-description {
    font-size: 16px;
  }
  
  .saca-content-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .saca-title,
  .method-title {
    font-size: 24px;
  }
  
  .saca-deco {
    width: 60px;
  }
  
  .saca-tab-item {
    min-width: 100px;
    height: 50px;
    padding: 0 10px;
  }
  
  .saca-tab-label {
    font-size: 14px;
  }
  
  .saca-content-block {
    padding: 20px 15px;
  }
  
  .saca-content-title {
    font-size: 18px;
  }
  
  .saca-content-description {
    font-size: 14px;
  }
  
  .saca-content-img {
    max-width: 120px;
  }
}

/* Section Notre engagement: Optimize 2034 */
.optimize-section {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  padding: 44px 0;
  margin: 0;
}

.optimize-title {
  font-size: 40px;
  font-weight: 700;
  color: #1D252B;
  text-align: center;
  margin: 0 0 40px 0;
}

.optimize-highlight {
  color: #F90;
}

.optimize-content {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* Partie gauche avec image */
.optimize-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.optimize-image {
  width: 100%;
  height: auto;
}

/* Partie droite avec 4 blocs */
.optimize-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.optimize-block {
  background: white;
  border-radius: 25px;
  padding: 22px 35px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.optimize-block:hover {
  transform: translateX(10px);
}

.optimize-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.optimize-block-title {
  font-size: 20px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 40px;
}

/* Animations pour la section Optimize */
.optimize-section,
.optimize-title,
.optimize-content,
.optimize-left,
.optimize-right {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.optimize-section.animate-in,
.optimize-title.animate-in,
.optimize-content.animate-in,
.optimize-left.animate-in,
.optimize-right.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.optimize-block {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.optimize-block.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.optimize-image {
  opacity: 0;
  transform: scale(0.9) rotate(2deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .optimize-image {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Responsive pour la section Optimize */
@media (max-width: 1024px) {
  .optimize-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .optimize-title {
    font-size: 36px;
  }
  
  .optimize-block {
    padding: 25px 20px;
  }
  
  .optimize-block-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .optimize-section {
    padding: 50px 0;
  }
  
  .optimize-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .optimize-content {
    gap: 30px;
  }
  
  .optimize-block {
    padding: 20px 15px;
    gap: 15px;
  }
  
  .optimize-icon {
    width: 40px;
    height: 40px;
  }
  
  .fleche-icon {
    width: 20px;
    height: 20px;
  }
  
  .optimize-block-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .optimize-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .optimize-content {
    gap: 25px;
  }
  
  .optimize-block {
    padding: 15px 12px;
    gap: 12px;
  }
  
  .optimize-icon {
    width: 35px;
    height: 35px;
  }
  
  .fleche-icon {
    width: 18px;
    height: 18px;
  }
  
  .optimize-block-title {
    font-size: 14px;
  }
}

/* Section Équipe */
.team-section {
  padding: 58px 0;
  margin: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-block {
  background: radial-gradient(50% 50% at 50% 50%, #263038 0%, #1D252B 100%);
  border-radius: 30px;
  padding: 46px 43px;
  color: white;
}

.team-content {
  display: flex;
  align-items: center;
  gap: 104px;
}

/* Partie gauche */
.team-left {
  flex: 1;
  max-width: 600px;
}

.team-badge {
  display: inline-block;
  background: transparent;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 26px;
  border-radius: 20px;
  margin-bottom: 27px;
  border: 1px solid #FFF;
}

.team-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 18px 0;
}

.team-description {
  font-size: 14px;
  line-height: 28px;
  color: white;
  margin: 0 0 36px 0;
}

.team-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  border: 1px solid white;
  border-radius: 30px;
  padding: 8px 71px;
  color: white;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-btn:hover {
  background: white;
  color: #1D252B;
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 600;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.team-btn:hover .arrow-icon {
  filter: brightness(0) invert(0);
  transform: translateX(5px);
}

/* Partie droite */
.team-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  width: 100%;
  height: auto;
}

/* Animations pour la section Équipe */
.team-section,
.team-block,
.team-content,
.team-left,
.team-right {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-section.animate-in,
.team-block.animate-in,
.team-content.animate-in,
.team-left.animate-in,
.team-right.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-badge,
.team-title,
.team-description,
.team-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .team-badge,
.animate-in .team-title,
.animate-in .team-description,
.animate-in .team-btn {
  opacity: 1;
  transform: translateY(0);
}

.team-image {
  opacity: 0;
  transform: scale(0.9) rotate(2deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .team-image {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Responsive pour la section Équipe */
@media (max-width: 1024px) {
  .team-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .team-left {
    max-width: 100%;
  }
  
  .team-title {
    font-size: 36px;
  }
  
  .team-block {
    padding: 50px 40px;
  }
  
  .team-section.expanded .team-hidden-block {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 50px 0;
  }
  
  .team-block {
    padding: 40px 30px;
  }
  
  .team-section.expanded .team-hidden-block {
    margin-top: 30px;
  }
  
  .team-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .team-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .team-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .arrow-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .team-block {
    padding: 30px 20px;
  }
  
  .team-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .team-description {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .team-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 15px;
  }
  
  .team-btn {
    padding: 10px 20px;
    font-size: 14px;
    gap: 10px;
  }
  
  .arrow-icon {
    width: 16px;
    height: 16px;
  }
}

/* Cards de l'équipe */
.team-cards-section {
  margin-top: 50px;
}

/* Bloc masqué par défaut pour les cards d'équipe */
.team-hidden-block {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
  transform: translateY(-20px);
}

/* Bloc visible quand la section équipe est étendue */
.team-section.expanded .team-hidden-block {
  opacity: 1;
  max-height: 2000px;
  overflow: visible;
  margin-top: 50px;
  transform: translateY(0);
}

/* Animation d'apparition pour les cards d'équipe */
@keyframes slideInTeamCards {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-section.expanded .team-cards-section {
  animation: slideInTeamCards 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.team-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  border-radius: 25px;
  padding: 0 42px;
  height: 292px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E2E7EA;
}

/* Masquer les membres supplémentaires par défaut */
.team-card-hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Afficher les membres supplémentaires quand on clique sur "Voir plus" */
.team-cards-grid.show-all .team-card-hidden {
  display: flex !important;
  animation: slideInTeamCard 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Animation d'apparition pour chaque carte avec délai progressif */
@keyframes slideInTeamCard {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Délai progressif pour chaque carte supplémentaire */
.team-cards-grid.show-all .team-card-hidden:nth-child(5) {
  animation-delay: 0.1s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(6) {
  animation-delay: 0.15s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(7) {
  animation-delay: 0.2s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(8) {
  animation-delay: 0.25s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(9) {
  animation-delay: 0.3s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(10) {
  animation-delay: 0.35s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(11) {
  animation-delay: 0.4s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(12) {
  animation-delay: 0.45s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(13) {
  animation-delay: 0.5s;
}

.team-cards-grid.show-all .team-card-hidden:nth-child(14) {
  animation-delay: 0.55s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.team-card-photo {
  margin-bottom: 29px;
  display: flex;
  justify-content: center;
}

.member-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.team-card:hover .member-photo {
  transform: scale(1.1);
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 20px 0;
  line-height: 20px;
}

.member-function {
  font-size: 12px;
  color: #F90;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

.team-cards-button {
  display: flex;
  justify-content: center;
}

.team-see-more-btn {
  background: transparent;
  border: 1px solid #1D252B;
  border-radius: 30px;
  padding: 2px 91px;
  color: #172735;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-see-more-btn:hover {
  background: #172735;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 39, 53, 0.3);
}

/* Animations pour les cards de l'équipe */
.team-cards-section,
.team-cards-grid,
.team-cards-button {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-cards-section.animate-in,
.team-cards-grid.animate-in,
.team-cards-button.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-card-photo,
.member-name,
.member-function {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in .team-card-photo,
.animate-in .member-name,
.animate-in .member-function {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive pour les cards de l'équipe */
@media (max-width: 1024px) {
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .team-cards-section {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .team-cards-section {
    margin-top: 40px;
  }
  
  .team-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-card {
    padding: 25px 20px;
  }
  
  .member-photo {
    width: 100px;
    height: 100px;
  }
  
  .member-name {
    font-size: 18px;
  }
  
  .member-function {
    font-size: 13px;
  }
  
  .team-see-more-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .team-cards-section {
    margin-top: 30px;
  }
  
  .team-cards-grid {
    gap: 15px;
  }
  
  .team-card {
    padding: 20px 15px;
  }
  
  .member-photo {
    width: 80px;
    height: 80px;
  }
  
  .member-name {
    font-size: 16px;
  }
  
  .member-function {
    font-size: 12px;
  }
  
  .team-see-more-btn {
    padding: 10px 20px;
    font-size: 14px;
    gap: 10px;
  }
  
  .team-see-more-btn .arrow-icon {
    width: 16px;
    height: 16px;
  }
}

/* Section Concree Saint-louis */
.saint-louis-section {
  padding: 51px 0;
  margin: 0;
}

/* En-tête de la section */
.saint-louis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.saint-louis-header-content {
  flex: 1;
}

.saint-louis-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 8px 0;
}

.saint-louis-subtitle {
  font-size: 20px;
  color: #1D252B;
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

.saint-louis-decoration {
  flex-shrink: 0;
}

.saint-louis-deco {
  width: 166px;
  height: auto;
}

/* Bloc principal avec fond dégradé */
.saint-louis-main-block {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  border-radius: 30px;
  padding: 51px 61px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 400px; /* Hauteur minimale pour le bloc équipe */
}

/* Blocs masqués par défaut */
.saint-louis-hidden-block {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0;
  padding: 0;
  transform: translateY(-20px);
}

/* Blocs visibles quand la section est étendue */
.saint-louis-main-block.expanded .saint-louis-hidden-block {
  opacity: 1;
  max-height: 2000px; /* Hauteur suffisante pour tous les blocs */
  overflow: visible;
  margin: 0;
  padding: 0;
  transform: translateY(0);
}

/* Animation d'apparition progressive des blocs */
@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation progressive pour chaque bloc */
.saint-louis-main-block.expanded .saint-louis-impact-block {
  animation: slideInFromTop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.saint-louis-main-block.expanded .saint-louis-spaces-block {
  animation: slideInFromTop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.saint-louis-main-block.expanded .saint-louis-coverage-block {
  animation: slideInFromTop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.saint-louis-main-block.expanded .saint-louis-services-block {
  animation: slideInFromTop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

/* 1er bloc : Équipe */
.saint-louis-team-block {
  padding-bottom: 50px;
}

.saint-louis-team-content {
  display: flex;
  align-items: center;
  gap: 106px;
}

.saint-louis-team-left {
  flex: 1;
}

.saint-louis-team-badge {
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #6E7F93;
  background: rgba(29, 37, 43, 0.06);
  color: #1D252B;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 28px;
  margin-bottom: 32px;
  line-height: 25px;
}

.saint-louis-team-description {
  font-size: 16px;
  line-height: 32px;
  color: #1D252B;
  margin: 0 0 32px 0;
  font-weight: 400;
}

.saint-louis-team-btn {
  background: #F90;
  border: 1px solid #F90;
  border-radius: 30px;
  padding: 8px 39px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.saint-louis-team-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 39, 53, 0.3);
}

.saint-louis-team-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saint-louis-team-image {
  width: 100%;
  height: auto;
}

/* 2e bloc : Impact Local */
.saint-louis-impact-block {
  text-align: center;
  padding-top: 64px;
  margin-bottom: 60px;
}

.saint-louis-hidden-block.saint-louis-impact-block {
  padding-top: 0;
  margin-bottom: 0;
}

.saint-louis-main-block.expanded .saint-louis-impact-block {
  padding-top: 64px;
  margin-bottom: 60px;
  border-top: 1px solid #FFF;
}

.saint-louis-impact-title {
  font-size: 48px;
  font-weight: 700;
  color: #172735;
  margin: 0 0 35px 0;
}

.saint-louis-impact-subtitle {
  font-size: 16px;
  color: #1D252B;
  margin: 0 0 43px 0;
  font-weight: 400;
}

.saint-louis-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.saint-louis-stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: white;
  border-radius: 20px;
  padding: 33px 27px;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.saint-louis-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #F90;
  line-height: 32px;
}

.stat-title {
  font-size: 14px;
  font-weight: 600;
  color: #1D252B;
  line-height: 22px;
  text-align: left;
}

/* 3e bloc : Les espaces */
.saint-louis-spaces-block {
  margin-bottom: 52px;
}

.saint-louis-hidden-block.saint-louis-spaces-block {
  margin-bottom: 0;
}

.saint-louis-main-block.expanded .saint-louis-spaces-block {
  margin-bottom: 52px;
}

.saint-louis-spaces-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 35px 0;
  text-align: left;
}

.saint-louis-spaces-subtitle {
  font-size: 16px;
  color: #1D252B;
  margin: 0 0 35px 0;
  font-weight: 500;
  font-style: italic;
}

.saint-louis-spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin-bottom: 22px;
}

.saint-louis-space-card {
  background: white;
  border-radius: 20px;
  padding: 25px 31px;
  min-height: 160px;
  border: 1px solid #E2E7EA;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #E2E7EA;
}

.saint-louis-space-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.space-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 26px;
}

.space-card-description {
  font-size: 14px;
  line-height: 26px;
  color: #1D252B;
  margin: 0;
  font-weight: 400;
}

.saint-louis-scroll-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.scroll-arrow {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #E2E7EA;
}

.scroll-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.scroll-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.scroll-arrow.disabled:hover {
  transform: scale(1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-arrow.left .arrow-icon {
  transform: rotate(180deg);
}

.scroll-arrow .arrow-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(0);
}

/* 4e bloc : Couverture Territoriale */
.saint-louis-coverage-block {
  text-align: center;
  margin-bottom: 72px;
}

.saint-louis-hidden-block.saint-louis-coverage-block {
  margin-bottom: 0;
}

.saint-louis-main-block.expanded .saint-louis-coverage-block {
  margin-bottom: 72px;
}

.saint-louis-coverage-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 45px 0;
}

.saint-louis-coverage-images {
  display: flex;
  gap: 26px;
  justify-content: center;
}

.coverage-image-container {
  position: relative;
  flex: 1;
  background: radial-gradient(50% 50% at 50% 50%, #263038 0%, #1D252B 100%);
  border-radius: 20px;
  padding: 28px 62px;
  min-height: 389px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
/* Contenu par défaut */
.coverage-content-default {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Contenu au survol */
.coverage-content-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* État au survol */
.coverage-image-container:hover .coverage-content-default {
  opacity: 0;
  transform: translateY(-20px);
}

.coverage-image-container:hover .coverage-content-hover {
  opacity: 1;
  transform: translateY(0);
}

.coverage-overlay-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 49px 0;
  line-height: 58px;
}

/* Grille des communes */
.communes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  justify-content: left;
  align-items: center;
}

.commune-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 27px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  width: fit-content;
  white-space: nowrap;
}

.commune-item:hover {
  transform: translateY(-2px);
}

.commune-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.commune-label {
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
  line-height: 30px;
}

/* Responsive pour la section Saint-Louis */
@media (max-width: 1024px) {
  .saint-louis-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .saint-louis-title {
    font-size: 36px;
  }
  
  .saint-louis-main-block {
    padding: 50px 40px;
  }
  
  .saint-louis-team-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .saint-louis-team-left {
    max-width: 100%;
  }
  
  .saint-louis-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .saint-louis-spaces-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .saint-louis-coverage-images {
    flex-direction: column;
    gap: 30px;
  }
  
  .coverage-image-container {
    min-height: 250px;
    padding: 25px;
  }
  
  .communes-grid {
    gap: 12px;
    max-width: 250px;
  }
  
  .commune-item {
    padding: 6px 10px;
  }
  
  .commune-label {
    font-size: 11px;
  }
  
  .coverage-content-hover {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .saint-louis-section {
    padding: 50px 0;
  }
  
  .saint-louis-title {
    font-size: 28px;
  }
  
  .saint-louis-subtitle {
    font-size: 18px;
  }
  
  .saint-louis-deco {
    width: 80px;
  }
  
  .saint-louis-main-block {
    padding: 40px 30px;
  }
  
  .saint-louis-impact-title,
  .saint-louis-spaces-title,
  .saint-louis-coverage-title,
  .saint-louis-services-title {
    font-size: 28px;
  }
  
  .saint-louis-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .saint-louis-spaces-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .saint-louis-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .saint-louis-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .saint-louis-team-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .saint-louis-title {
    font-size: 24px;
  }
  
  .coverage-image-container {
    min-height: 200px;
    padding: 20px;
  }
  
  .communes-grid {
    gap: 10px;
    max-width: 200px;
  }
  
  .commune-item {
    padding: 5px 8px;
  }
  
  .commune-label {
    font-size: 10px;
  }
  
  .coverage-content-hover {
    padding: 20px;
  }
  
  .saint-louis-subtitle {
    font-size: 16px;
  }
  
  .saint-louis-deco {
    width: 60px;
  }
  
  .saint-louis-main-block {
    padding: 30px 20px;
  }
  
  .saint-louis-impact-title,
  .saint-louis-spaces-title,
  .saint-louis-coverage-title,
  .saint-louis-services-title {
    font-size: 24px;
  }
  
  .saint-louis-team-btn {
    padding: 10px 20px;
    font-size: 14px;
    gap: 10px;
  }
  
  .scroll-arrow {
    width: 40px;
    height: 40px;
  }
  
  .scroll-arrow .arrow-icon {
    width: 16px;
    height: 16px;
  }
}

/* 5e bloc : Services Spécifiques */
.saint-louis-services-block {
  margin-bottom: 39px;
}

.saint-louis-hidden-block.saint-louis-services-block {
  margin-bottom: 0;
}

.saint-louis-main-block.expanded .saint-louis-services-block {
  margin-bottom: 39px;
}

.saint-louis-services-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D252B;
  margin: 0 0 60px 0;
  text-align: left;
}

/* 3 blocs de services sur la même ligne */
.saint-louis-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin-bottom: 30px;
}

.saint-louis-service-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #E2E7EA;
  padding: 23px 25px;
  display: flex;
  align-items: center;
  gap: 27px;
  transition: all 0.3s ease;
}

.saint-louis-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 26px;
}

/* 2 blocs sur la même ligne (le second plus large) */
.saint-louis-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 30px;
}

.saint-louis-member-card {
  background: white;
  border-radius: 25px;
  padding: 27px 56px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #DFE5EC;
}

.saint-louis-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.member-avatar {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.member-avatar-img {
  width: 93px;
  height: 93px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #DFE5EC;
}

.member-name-sl {
  font-size: 20px;
  font-weight: 700;
  color: #F90;
  margin: 0 0 6px 0;
  line-height: 28px;
}

.member-role {
  font-size: 14px;
  color: #172735;
  font-style: italic;
  margin: 0;
  font-weight: 400;
  line-height: 26px;
}

.saint-louis-description-card {
  background: white;
  border-radius: 20px;
  padding: 29px 52px;
  transition: all 0.3s ease;
  border: 1px solid #E2E7EA;
  display: flex;
  align-items: center;
}

.saint-louis-description-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.description-text {
  font-size: 14px;
  line-height: 28px;
  color: #1D252B;
  margin: 0;
  font-weight: 400;
}

/* Bloc de contact occupant toute la largeur */
.saint-louis-contact-block {
  background: white;
  border-radius: 20px;
  padding: 17px 45px;
  border: 1px solid #DFE5EC;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 125px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-label {
  font-size: 14px;
  font-weight: 700;
  color: #1D252B;
  line-height: 32px;
}

/* Section Carrière */
.career-section {
  padding-bottom: 93px;
  margin: 0;
}

/* 1er bloc : Fond bg-carriere.svg */
.career-main-block {
  background-image: url(/assets/bg-carriere-f00e0b6e7e0b79c14e5fb3405737528e1bbb710efc0270d5f7629e48e45c741e.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 40px 39px;
  margin-bottom: 54px;
  position: relative;
}

.career-content {
  display: flex;
  align-items: center;
  gap: 93px;
  position: relative;
  z-index: 2;
}

/* Partie gauche */
.career-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-image {
  width: 100%;
  height: auto;
}

/* Partie droite */
.career-right {
  flex: 1;
  max-width: 500px;
}

.career-badge {
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 29px;
  margin-bottom: 40px;
  line-height: 20px;
}

.career-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 40px 0;
  line-height: 45px;
}

.career-btn {
  background: #F90;
  border: 1px solid #F90;
  border-radius: 30px;
  padding: 10px 44px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.career-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 37, 43, 0.3);
}

/* 2e bloc : Fond gris avec newsletter */
.career-newsletter-block {
  background: #F8F8F9;
  border-radius: 25px;
  padding: 44px 47px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-left {
  flex: 1;
  max-width: 400px;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 36px;
}

.newsletter-right {
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  gap: 20px;
  align-items: center;
}

.newsletter-input {
  padding: 13px 29px;
  border: 1px solid #DFE5EC;
  border-radius: 25px;
  font-size: 16px;
  color: #1D252B;
  background: white;
  outline: none;
  transition: all 0.3s ease;
  min-width: 380px;
}

.newsletter-input:focus {
  border-color: #F90;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.newsletter-input::placeholder {
  color: #5B6878;
}

.newsletter-btn {
  background: #F90;
  border: 1px solid #F90;
  border-radius: 30px;
  padding: 8px 45px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #E68500;
  border-color: #E68500;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

/* Responsive pour la section Carrière */
@media (max-width: 1024px) {
  .career-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .career-right {
    max-width: 100%;
  }
  
  .career-title {
    font-size: 32px;
  }
  
  .newsletter-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .career-section {
    padding: 50px 0;
  }
  
  .career-main-block {
    padding: 40px 30px;
  }
  
  .career-title {
    font-size: 28px;
  }
  
  .career-newsletter-block {
    padding: 30px 30px;
  }
  
  .newsletter-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .career-main-block {
    padding: 30px 20px;
  }
  
  .career-title {
    font-size: 24px;
  }
  
  .career-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .career-newsletter-block {
    padding: 25px 20px;
  }
  
  .newsletter-title {
    font-size: 20px;
  }
  
  .newsletter-input {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .newsletter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
