* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: #2d3e3a;
      background-color: #fafbfa;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    header {
      width: 100%;
      padding: 28px 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
      background: #fff;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      transition: all 0.3s ease;
    }

  .logo-text {
      font-family: 'Dancing Script', cursive;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
      position: relative;
      padding: 8px 16px;
      background: linear-gradient(135deg, #A8E6CF, #BFF2D6);
      border-radius: 50px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(5px);
    }

    .logo-text:hover {
      transform: scale(1.05);
      text-shadow: 0 4px 12px rgba(72, 197, 182, 0.6);
      border-color: rgba(255, 255, 255, 0.5);
    }

    header.scrolled .logo-text {
      color: #48C5B6;
      text-shadow: 0 2px 4px rgba(72, 197, 182, 0.2);
      background: linear-gradient(135deg, rgba(72, 197, 182, 0.1), rgba(92, 200, 200, 0.15));
      border-color: rgba(72, 197, 182, 0.3);
    }

    .logo-text a {
      text-decoration: none;
      color: white;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 42px;
    }

    nav a {
      text-decoration: none;
      color: #2d3e3a;
      font-weight: 500;
      font-size: 1.02rem;
      transition: all 0.3s ease;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #5CC8C8;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: #5CC8C8;
    }

    .contact-btn {
      background: linear-gradient(135deg, #48C5B6 0%, #3aa297 100%);
      color: #fff;
      padding: 11px 26px;
      border-radius: 28px;
      font-weight: 600;
      font-size: 0.98rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(72, 197, 182, 0.35);
      border: 2px solid rgba(255,255,255,0.2);
    }

    .contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(72, 197, 182, 0.5);
    }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101; /* AJOUTEZ cette ligne */
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #2d3e3a;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* AJOUTEZ cette règle */
.menu-toggle.active span {
  background: #fff;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.back-link {
  position: fixed;
  top: 150px;
  left: 70px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #48C5B6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 25px;
  box-shadow: 0 3px 15px rgba(72, 197, 182, 0.2);
  transition: all 0.3s ease;
  z-index: 90;
  border: 2px solid rgba(72, 197, 182, 0.2);
}

.back-link:hover {
  background: #48C5B6;
  color: white;
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(72, 197, 182, 0.35);
}

.back-link i {
  font-size: 1rem;
}

    .pro-hero {
      padding: 120px 70px 80px;
      background: linear-gradient(135deg, #f5f8f7 0%, #fafbfa 100%);
    }

    .pro-hero-content {
      display: flex;
      align-items: center;
      gap: 80px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pro-photo {
      flex: 0 0 auto;
    }

    .pro-photo img {
      width: 280px;
      height: 280px;
      object-fit: cover;
      border-radius: 50%;
      border: 6px solid rgba(72,197,182,0.2);
      box-shadow: 0 15px 50px rgba(72, 197, 182, 0.15);
      transition: transform 0.3s ease;
    }

    .pro-photo img:hover {
      transform: scale(1.03);
    }

    .pro-intro {
      flex: 1;
      min-width: 300px;
    }

    .pro-intro h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 3rem;
      color: #1f3f32;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .pro-intro h2 {
      font-size: 1.4rem;
      color: #48C5B6;
      margin-bottom: 24px;
      font-weight: 600;
    }

    .pro-intro p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #4a5955;
    }

    .pro-details {
      padding: 100px 70px;
      background: #fff;
      max-width: 1000px;
      margin: 0 auto;
    }

    .pro-details h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      color: #1f3f32;
      margin-bottom: 20px;
      margin-top: 50px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
      padding-left: 20px;
    }

    .pro-details h2:first-of-type {
      margin-top: 0;
    }

    .pro-details h2::before {
      content: '';
      position: absolute;
      left: 0;
      display: inline-block;
      width: 6px;
      height: 45px;
      background: linear-gradient(135deg, #48C5B6, #5CC8C8);
      border-radius: 3px;
    }

    .pro-details h2.reflexologie::after {
      content: '';
      display: inline-block;
      width: 35px;
      height: 35px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348C5B6"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>') center/contain no-repeat;
      margin-left: 5px;
    }

    .pro-details h2.naturopathie::after {
      content: '';
      display: inline-block;
      width: 35px;
      height: 35px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348C5B6"><path d="M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66c.67-2.17 2.04-6.81 3.79-9.65C11 14 12.5 15.5 14 17c2-2.5 2-5.5 2-5.5s5-1.5 6-3c-1 1-7 0-7 0zm-1.99-2.5s3.74-1.43 6.25-4.5c-1.75 1.58-6.63 2.19-6.63 2.19C14.46 1.16 13.24 0 12 0c-1.23 0-2.46 1.16-2.62 3.19 0 0-4.88-.61-6.63-2.19 2.5 3.07 6.25 4.5 6.25 4.5S7.43 9 5.5 9C7 10 10.5 10 12 10s5-.5 6.5-1.5c-2 0-3.49-3-3.49-3z"/></svg>') center/contain no-repeat;
      margin-left: 5px;
    }

    .pro-details h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      color: #2d3e3a;
      margin-top: 40px;
      margin-bottom: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      padding-left: 20px;
    }

    .pro-details h3::before {
      content: '';
      position: absolute;
      left: 0;
      display: inline-block;
      width: 5px;
      height: 35px;
      background: linear-gradient(135deg, #48C5B6, #5CC8C8);
      border-radius: 3px;
      opacity: 0.7;
    }

    .pro-details h3.enfants::after {
      content: '';
      display: inline-block;
      width: 28px;
      height: 28px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348C5B6"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>') center/contain no-repeat;
      margin-left: 5px;
    }

    .pro-details h3.adultes::after {
      content: '';
      display: inline-block;
      width: 28px;
      height: 28px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348C5B6"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') center/contain no-repeat;
      margin-left: 5px;
    }

    .pro-details p {
      font-size: 1.08rem;
      line-height: 1.8;
      color: #4a5955;
      margin-bottom: 20px;
    }

    .pro-details ul {
      list-style: none;
      margin: 30px 0;
      padding: 0;
    }

    .pro-details ul li {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #4a5955;
      margin-bottom: 12px;
      padding-left: 35px;
      position: relative;
    }

    .pro-details ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #48C5B6;
      font-weight: bold;
      font-size: 1.3rem;
    }

    .btn-secondary {
      background: linear-gradient(135deg, #48C5B6 0%, #3aa297 100%);
      color: white;
      padding: 8px 30px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.05rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: 0 5px 20px rgba(72, 197, 182, 0.3);
      border: 2px solid rgba(72, 197, 182, 0.2);
      margin-top: 40px;
    }

    .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(72, 197, 182, 0.45);
    }

    /* === Footer === */
    .footer {
      background: #ffffff;
      border-top: 1px solid #e5e5e5;
      padding: 60px 70px 20px;
      color: #333;
      font-family: 'Montserrat', sans-serif;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #48C5B6;
      margin-bottom: 12px;
    }

    .footer h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 14px;
      color: #333;
    }

    .footer p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 8px;
    }

    .footer ul li a {
      text-decoration: none;
      color: #555;
      transition: color 0.3s;
    }

    .footer ul li a:hover {
      color: #48C5B6;
    }

    .footer-social .social-icons {
      display: flex;
      margin-top: 10px;
      flex-wrap: wrap;
      margin-left: 100px;
    }

    .footer-social .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      width: 46px;
      height: 46px;
      color: #48C5B6;
      background: rgba(72,197,182,0.1);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .footer-social .social-icons a:hover {
      background: #48C5B6;
      color: #fff;
      transform: translateY(-4px);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #eee;
      margin-top: 50px;
      padding-top: 18px;
      font-size: 0.9rem;
      color: #777;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .mentions-link {
      color: #48C5B6;
      text-decoration: none;
      transition: color 0.3s;
    }

    .mentions-link:hover {
      color: #3aa297;
    }

    /* === RESPONSIVE === */
    @media (max-width: 1024px) {
      header {
        padding: 20px 40px;
      }

      .pro-hero {
        padding: 100px 40px 60px;
      }

      .pro-hero-content {
        gap: 60px;
      }

      .pro-intro h1 {
        font-size: 2.5rem;
      }

      .pro-details {
        padding: 80px 40px;
      }

      .pro-details h2 {
        font-size: 1.8rem;
      }

      .footer {
        padding: 50px 40px 20px;
      }
    }

    @media (max-width: 768px) {

    .logo-text {
    font-size: 1.6rem;
    padding: 6px 14px;
  }

      header {
        padding: 18px 25px;
      }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: #808080;
        backdrop-filter: blur(10px);
        transition: right 0.4s ease;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 99;
      }

      nav.active {
        right: 0;
      }

      nav ul {
        flex-direction: column;
        gap: 30px;
      }

      nav a {
        font-size: 1.1rem;
        color: white;
      }

      .menu-toggle {
        display: flex;
      }

      .contact-btn {
        display: none;
      }

      .back-link {
       top: 100px;
       left: 25px;
       padding: 8px 16px;
       font-size: 0.9rem;
     }

      .pro-hero {
        padding: 80px 25px 50px;
      }

      .pro-hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
      }

      .pro-photo img {
        width: 220px;
        height: 220px;
      }

      .pro-intro {
        min-width: 100%;
      }

      .pro-intro h1 {
        font-size: 2rem;
      }

      .pro-intro h2 {
        font-size: 1.2rem;
      }

      .pro-details {
        padding: 60px 25px;
      }

      .pro-details h2 {
        font-size: 1.6rem;
      }

      .pro-details h3 {
        font-size: 1.3rem;
      }

      .footer {
        padding: 40px 25px 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
      }

      .footer-social .social-icons {
        margin-left: 120px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {

  .back-link {
    top: 90px;
    left: 15px;
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .back-link span {
    display: none;
  }

  .back-link {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

    .logo-text {
    font-size: 1.4rem;
    padding: 5px 12px;
  }

      .pro-photo img {
        width: 180px;
        height: 180px;
      }

      .pro-intro h1 {
        font-size: 1.7rem;
      }

      .pro-intro h2 {
        font-size: 1.05rem;
      }

      .pro-intro p {
        font-size: 1rem;
      }

      .pro-details h2 {
        font-size: 1.4rem;
      }

      .pro-details h3 {
        font-size: 1.2rem;
      }

      .pro-details p {
        font-size: 1rem;
      }

      .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
      }
    }