    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

html {
  scroll-behavior: smooth;
}
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #fff;
    }

    /* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* DEBUT HAMBURGER */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

/* NOUVEAU : Logo */
.logo {
  height: 40px;
  width: auto;
  max-width: 200px;
      transform: scale(1.5); /* Agrandit le logo de 50% */
    transform-origin: center; /* Centre le point d'origine de la transformation */
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}


/* NOUVEAU : Menu hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c5aa0;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Animations du hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu mobile overlay */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }
	
/* FIN HAMBURGER */

    nav a {
      text-decoration: none;
      color: #2c5aa0;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
	
    nav a:hover {
      background: #f0f4f8;
      color: #1a4480;
    }

.cta-nav {
      background: #28a745;
      color: white !important;
      border-radius: 5px;
    }

    .cta-nav:hover {
      background: #218838 !important;
      color: white !important;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .hero .subtitle {
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      margin-bottom: 2rem;
      opacity: 0.9;
      font-weight: 300;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #28a745;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }

    .cta-button:hover {
      background: #218838;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    }

    /* Sections */
    .section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
	  scroll-margin-top: 80px; /* Hauteur de votre navigation */
    }

    .section h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: #2c5aa0;
      margin-bottom: 2rem;
      text-align: center;
      position: relative;
    }

    .section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: #28a745;
      border-radius: 2px;
    }

    /* Motifs de consultation */
    .motifs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .motif-card {
      background: #fff;
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 1px solid #f0f4f8;
    }

    .motif-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }

    .motif-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    .motif-card h3 {
      color: #2c5aa0;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .motif-card p {
      color: #333333;
      line-height: 1.6;
    }

    /* Infos pratiques */
    .infos-pratiques {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 3rem 2rem;
      margin-top: 3rem;
    }

    .infos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .info-block {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    }

    .info-block h3 {
      color: #2c5aa0;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .info-block .icon {
      font-size: 1.5rem;
    }

    .horaires-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    .horaires-table td {
      padding: 0.5rem 0;
      border-bottom: 1px solid #eee;
    }

    .horaires-table td:first-child {
      font-weight: 500;
      color: #2c5aa0;
    }

    .paiement-list {
      list-style: none;
      margin-top: 1rem;
    }

    .paiement-list li {
      padding: 0.3rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .contact-info {
      margin-top: 1rem;
    }

    .contact-info p {
      margin: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .contact-info a {
      color: #2c5aa0;
      text-decoration: none;
      font-weight: 500;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    /* Footer */
    footer {
      background: #2c5aa0;
      color: white;
      text-align: center;
      padding: 2rem;
      margin-top: 4rem;
    }

    footer a {
      color: #b3d1ff;
	  text-decoration: underline; /* Toujours visible */
		border-bottom: 1px solid transparent;
		transition: all 0.3s ease;
    }

    footer a:hover {
      text-decoration: underline;
    }



	/* Styles pour le carousel d'avis Google */

.avis-section {
  background: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid #e8eaed;
}

.avis-carousel-container {
  max-width: 600px;
  margin: 0 auto;
}

.avis-carousel {
  position: relative;
  overflow: hidden;
}

.avis-card {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 20px;
  display: none;
  box-shadow: 0 1px 6px rgba(32,33,36,.28);
  transition: all 0.3s ease;
}

.avis-card.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.avis-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4285f4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 500;
  color: #202124;
  font-size: 14px;
  line-height: 20px;
}

.avis-date {
  color: #5f6368;
  font-size: 12px;
  line-height: 16px;
}

.avis-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.star {
  color: #fbbc04;
  font-size: 16px;
  line-height: 1;
}

.star.filled {
  color: #fbbc04;
}

.avis-content {
  margin-top: 8px;
}

.avis-text {
  color: #202124;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.nav-btn {
  background: #fff;
  border: 1px solid #dadce0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
}

.nav-btn:hover {
  background: #f8f9fa;
  border-color: #dadce0;
  box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.nav-btn:active {
  background: #f1f3f4;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: #4285f4;
}

.dot:hover {
  background: #5f6368;
}

.avis-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e8eaed;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-text {
  color: #5f6368;
  font-size: 14px;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.google-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  text-decoration: none;
}


/* Styles pour la section présentation */
.presentation-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  margin: 2rem auto;
}

.presentation-container {
  max-width: 1000px;
  margin: 0 auto;
}

.presentation-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.presentation-text h3 {
  color: #2c5aa0;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.presentation-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

.qualifications {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qualification-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.qualification-item h4 {
  color: #2c5aa0;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.qualification-item p {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.formation-link {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.formation-link p {
  margin: 0 0 1rem 0;
  font-weight: 500;
  color: #2c5aa0;
}

.idheo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #2c5aa0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.idheo-link:hover {
  color: #1a4480;
  text-decoration: underline;
}

.idheo-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.presentation-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.presentation-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.presentation-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
  background: white;
  padding: 1rem;
  transition: all 0.3s ease;
}

.presentation-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 90, 160, 0.2);
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(8px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Styles pour la section FAQ */
.faq-section {
  background: #f8f9fa;
  border-radius: 20px;
  margin: 2rem auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5aa0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question:focus {
  outline: 2px solid #2c5aa0;
  outline-offset: -2px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #28a745;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-content {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: #2c5aa0;
  font-weight: 600;
}

.faq-answer-content a {
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer-content a:hover {
  text-decoration: underline;
}

/* Animation d'entrée */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* Responsive */
    @media (max-width: 1045px) {

/* DEBUT HALBURGER */
  .nav-container {
    padding: 0,75rem;
  }
  
  .logo {
    height: 35px;
  }

  /* NOUVEAU : Affichage du hamburger */
  .hamburger {
    display: flex;
  }

  /* NOUVEAU : Navigation mobile coulissante */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
	
  nav.active {
    right: 0;
  }

  /* NOUVEAU : Liste verticale */
  nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 0;
    gap: 0;
    margin-top: 80px;
	display: flex; /* Ajouté */
  }

  /* NOUVEAU : Items de menu mobile */
  nav li {
    border-bottom: 1px solid #f0f4f8;
  }
	
nav a {
    display: block;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background: #f0f4f8;
    padding-left: 2.5rem;
  }
  
  /* Réorganise l'ordre sans changer l'HTML */
  nav li:nth-child(1) { order: 2; } 
  nav li:nth-child(2) { order: 3; } 
  nav li:nth-child(3) { order: 4; } 
  nav li:nth-child(4) { order: 5; } 
  nav li:nth-child(5) { order: 6; } 
  nav li:nth-child(6) { order: 7; } 
  nav li:nth-child(7) { order: 1; } /* Rdv en premier */
  nav li:nth-child(8) { order: 8; } 
  
  /* Style spécial pour le premier élément affiché */
  nav li:nth-child(7) .cta-nav {
    margin: 0 2rem 1rem 2rem;
    padding: 1.2rem 2rem;
  }
  
/* FIN HAMBURGER */

  /* NOUVEAU : Bouton CTA mobile */
  .cta-nav {
    margin: 1rem 2rem;
    border-radius: 5px !important;
    text-align: center;
  }
  
	
	.faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
  
  .faq-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
      nav ul {
        padding: 1rem;
        font-size: 0.9rem;
      }

      .hero {
        padding: 3rem 1rem;
      }

      .section {
        padding: 3rem 1rem;
      }

      .infos-pratiques {
        padding: 2rem 1rem;
      }
	  
	  .avis-section {
    padding: 3rem 1rem;
  }
  
  .avis-carousel-container {
    max-width: 100%;
  }
  
  .avis-card {
    padding: 16px;
    margin: 0 8px;
  }
  
  .avis-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .user-info {
    width: 100%;
  }
  
  .avis-stars {
    align-self: flex-start;
  }
  
  .avis-footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .carousel-nav {
    gap: 12px;
  }
  
  .presentation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .qualification-item {
    text-align: left;
  }
  
  .presentation-logo {
    width: 150px;
    height: 150px;
  }
  
    }
	
@media (max-width: 480px) {


 /* NOUVEAU : Menu pleine largeur sur très petit écran */
  nav {
    width: 100%;
    right: -100%;
  }

.logo {
    height: 30px;
  }

.faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
  
  .faq-answer-content {
    font-size: 0.9rem;
  }
  
  .avis-header {
    gap: 8px;
  }
  
  .user-avatar {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .carousel-dots {
    gap: 6px;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .presentation-section {
    margin: 1rem auto;
    border-radius: 15px;
  }
  
  .qualifications {
    gap: 1rem;
  }
  
  .qualification-item {
    padding: 1rem;
  }
  
  .presentation-logo {
    width: 120px;
    height: 120px;
  }

}

  </style>
  
  <style>
  /* OPTION 1 : Bouton style principal (recommandé) */
.motifs-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2c5aa0;
  color: white !important;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(44, 90, 160, 0.3);
  margin-top: 1rem;
}

.motifs-cta-button:hover {
  background: #1a4480;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(44, 90, 160, 0.4);
  color: white !important;
}
  </style>

<style>
.avis-authenticity-notice {
  text-align: center;
  margin: 1.5rem auto 3rem auto;
  max-width: 500px;
}

.avis-authenticity-notice p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 768px) {
  .avis-authenticity-notice {
    margin: 1rem auto 2rem auto;
  }
  
  .avis-authenticity-notice p {
    font-size: 0.85rem;
  }
}
</style>

<!-- Styles Google Maps -->
<style>
  .map-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
  }

  .map-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
  }

  


  .map-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    cursor: pointer;
  }

  .map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.load-map-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2c5aa0;
  color: white;
  text-decoration: none; /* Pas de soulignement */
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.load-map-button:hover {
  background-color: #234a80;
  transform: translate(-50%, -50%) scale(1.05);
  text-decoration: none; /* Toujours pas de soulignement au survol */
}

  #map-iframe-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
  }

  .map-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
  }

  .info-item {
    text-align: center;
    color: #555;
  }

  .info-item a {
    color: #4285f4;
    text-decoration: none;
  }

  .info-item a:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .map-section {
      padding: 40px 15px;
    }

    .map-section h2 {
      font-size: 1.5rem;
    }

    .map-placeholder {
      height: 350px;
    }

    #map-iframe-container iframe {
      height: 350px;
    }

    .load-map-button {
      font-size: 14px;
      padding: 12px 24px;
    }

    .map-info {
      flex-direction: column;
      text-align: center;
    }
  }
  
  /* Carte Google Maps pleine largeur */
.map-wrapper {
  margin-top: 2rem;
  grid-column: 1 / -1; /* Au cas où elle reste dans la grid */
  width: 100%;
}

.map-wrapper .map-placeholder {
  position: relative;
  width: 100%;
  height: 450px;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
}

.map-wrapper .map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-wrapper .load-map-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2c5aa0; /* Même couleur que vos titres */
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
  transition: all 0.3s ease;
}

.map-wrapper .load-map-button:hover {
  background-color: #234a80;
  transform: translate(-50%, -50%) scale(1.05);
}

.map-wrapper #map-iframe-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .map-wrapper .map-placeholder,
  .map-wrapper #map-iframe-container iframe {
    height: 350px;
  }
}