    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      max-width: 100%;
    }

    html, body {
     max-width: 100%;
     overflow-x: hidden;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: #2d3e3a;
      background-color: #fafbfa;
      overflow-x: hidden;
      position: relative;
    }

    header {
      width: 100%;
      padding: 28px 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
      background: transparent;
      position: absolute;
      top: 0;
      transition: all 0.3s ease;
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
      backdrop-filter: blur(10px);
    }

    header.scrolled nav a {
      color: #2d3e3a;
      text-shadow: none;
    }

    header.scrolled nav a:hover {
      color: #48C5B6;
    }

  .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: #fff;
      font-weight: 500;
      font-size: 1.02rem;
      transition: all 0.3s ease;
      text-shadow: 0 2px 6px rgba(0,0,0,0.25);
      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: 8px 30px;
      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);
      border-color: rgba(255,255,255,0.4);
    }

    /* Menu Mobile */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 101;
    }

    .menu-toggle span {
      width: 28px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    header.scrolled .menu-toggle span {
      background: #2d3e3a;
    }

    .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);
    }

    .hero {
      height: 100vh;
      min-height: 600px;
      background: linear-gradient(135deg, rgba(72, 197, 182, 0.7), rgba(58, 162, 151, 0.8)), 
                  url('../images/hero.webp') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 0 20px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      color: #fff;
      animation: fadeInUp 0.8s ease;
      max-width: 900px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-family: 'Dancing Script', cursive;
      font-size: 3.5rem;
      line-height: 1.3;
      text-shadow: 0 4px 20px rgba(0,0,0,0.4);
      font-weight: 600;
    }

    .btn {
      background: linear-gradient(135deg, #48C5B6 0%, #3aa297 100%);
      color: #fff;
      padding: 8px 30px;
      border-radius: 32px;
      font-weight: 600;
      font-size: 1.02rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(72, 197, 182, 0.4);
      border: 2px solid rgba(255,255,255,0.2);
      cursor: pointer;
      display: inline-block;
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 32px rgba(72, 197, 182, 0.55);
      border-color: rgba(255,255,255,0.4);
    }

    /* === Section Accueil === */
    .intro {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 90px;
      padding: 120px 70px;
      background: linear-gradient(135deg, #fafbfa 0%, #f5f8f7 100%);
      flex-wrap: wrap;
    }

    .intro-text {
      flex: 1;
      min-width: 300px;
      max-width: 540px;
    }

    .intro-text h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.6rem;
      margin-bottom: 24px;
      color: #1f3f32;
      line-height: 1.2;
      font-weight: 700;
      position: relative;
      padding-bottom: 18px;
    }

    .intro-text h1::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #48C5B6, #5CC8C8);
      border-radius: 2px;
    }

    .intro-text p {
      color: #4a5955;
      line-height: 1.8;
      font-size: 1.08rem;
      margin-bottom: 34px;
      font-weight: 400;
    }

    .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);
      border-color: rgba(72, 197, 182, 0.4);
    }

    .intro-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
    }

    .intro-image img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(72, 197, 182, 0.2);
      transition: transform 0.3s ease;
    }

    .intro-image img:hover {
      transform: scale(1.02);
    }

    /* === Section Prestations === */
    .prestations {
      padding: 120px 70px;
      font-family: "Poppins", sans-serif;
      color: #2d3e3a;
      background: #fff;
    }

    .container {
      max-width: 1250px;
      margin: 0 auto;
      text-align: center;
    }

    .prestations h2, .professionnels h2, .contact-section h2 {
      color: #1f3f32;
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .prestations h2::after, .professionnels h2::after, .contact-section h2::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #48C5B6, #5CC8C8);
      border-radius: 2px;
    }

    .prestations .intro, .professionnels .intro, .contact-section .intro {
      color: #4a5955;
      font-size: 1.08rem;
      line-height: 1.8;
      max-width: 720px;
      margin: 30px auto 70px auto;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 34px;
      max-width: 1100px;
      margin: 70px auto 0 auto;
    }

    .card {
      background: linear-gradient(135deg, #ffffff 0%, #fafbfa 100%);
      border-radius: 18px;
      padding: 40px 34px;
      box-shadow: 0 8px 28px rgba(72, 197, 182, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(72, 197, 182, 0.2);
    }

    .card h3 {
      font-size: 1.4rem;
      color: #1f3f32;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .card p {
      color: #5a6663;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* === Nos Professionnels === */
    .professionnels {
      background: linear-gradient(135deg, #f5f8f7 0%, #fafbfa 100%);
      padding: 120px 70px;
      text-align: center;
      font-family: "Poppins", sans-serif;
    }

    .pro-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      justify-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pro-card {
      background: #fff;
      border-radius: 20px;
      padding: 35px 25px;
      box-shadow: 0 8px 28px rgba(72, 197, 182, 0.08);
      text-align: center;
      transition: all 0.3s ease;
      width: 100%;
      max-width: 300px;
    }

    .pro-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 14px 40px rgba(72, 197, 182, 0.2);
    }

    .pro-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 20px;
      border: 4px solid rgba(72,197,182,0.2);
    }

    .pro-card h3 {
      font-size: 1.2rem;
      color: #1f3f32;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .pro-card p {
      font-size: 0.98rem;
      color: #5a6663;
      font-weight: 500;
    }

    .location-section {
      padding: 120px 70px;
      background: linear-gradient(135deg, #fafbfa 0%, #f5f8f7 100%);
      font-family: "Poppins", sans-serif;
      color: #2d3e3a;
    }

    .container {
      max-width: 1250px;
      margin: 0 auto;
      text-align: center;
    }

    .location-section h2 {
      color: #1f3f32;
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .location-section h2::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #48C5B6, #5CC8C8);
      border-radius: 2px;
    }

    .location-section .intro {
      color: #4a5955;
      font-size: 1.08rem;
      line-height: 1.8;
      max-width: 720px;
      margin: 30px auto 70px auto;
    }

    .location-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 50px;
      max-width: 1100px;
      margin: 70px auto 0 auto;
    }

    .location-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(72, 197, 182, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .location-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(72, 197, 182, 0.2);
    }

    .location-card-image {
      width: 100%;
      height: 280px;
      overflow: hidden;
      position: relative;
    }

    .location-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .location-card:hover .location-card-image img {
      transform: scale(1.08);
    }

    .location-card-content {
      padding: 35px 30px;
      text-align: left;
    }

    .location-card-content h3 {
      font-size: 1.5rem;
      color: #1f3f32;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .location-card-content .features {
      list-style: none;
      margin-bottom: 24px;
      padding: 0;
    }

    .location-card-content .features li {
      color: #5a6663;
      font-size: 1rem;
      line-height: 1.8;
      padding-left: 24px;
      position: relative;
      margin-bottom: 10px;
    }

    .location-card-content .features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #48C5B6;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .location-card-content p {
      color: #4a5955;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .location-cta {
      margin-top: 60px;
      padding: 40px;
      background: linear-gradient(135deg, rgba(72, 197, 182, 0.08) 0%, rgba(92, 200, 200, 0.05) 100%);
      border-radius: 18px;
    }

    .location-cta h3 {
      font-size: 1.8rem;
      color: #1f3f32;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .location-cta p {
      color: #4a5955;
      font-size: 1.08rem;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .btn-contact {
      background: linear-gradient(135deg, #48C5B6 0%, #3aa297 100%);
      color: #fff;
      padding: 8px 30px;
      border-radius: 32px;
      font-weight: 600;
      font-size: 1.05rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(72, 197, 182, 0.4);
      border: 2px solid rgba(255,255,255,0.2);
      cursor: pointer;
      display: inline-block;
    }

    .btn-contact:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 32px rgba(72, 197, 182, 0.55);
      border-color: rgba(255,255,255,0.4);
    }

    .voir_plus {
      background: linear-gradient(135deg, #48C5B6 0%, #3aa297 100%);
      color: #fff;
      padding: 8px 30px;
      border-radius: 32px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(72, 197, 182, 0.4);
      border: none;
      margin-top: 50px;
      cursor: pointer;
      display: inline-block;
    }

    .voir_plus:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(72, 197, 182, 0.5);
    }

    /* === Contact Section === */
    .contact-section {
      padding: 120px 70px;
      background: #fff;
      font-family: "Poppins", sans-serif;
      color: #2d3e3a;
    }

    .contact-grid {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      margin-top: 60px;
    }

    .contact-info {
      text-align: left;
      font-size: 1.05rem;
      line-height: 2.2;
      flex: 1;
      min-width: 280px;
      max-width: 400px;
    }

    .contact-info p {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .contact-info strong {
      color: #1f3f32;
      min-width: 100px;
    }

    .map-container {
      flex: 1;
      min-width: 300px;
      max-width: 550px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(72, 197, 182, 0.15);
      transition: transform 0.3s ease;
    }

    .map-container:hover {
      transform: translateY(-6px);
    }

    .map-container iframe {
      width: 100%;
      height: 350px;
      border: 0;
    }

    .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;
      }

      .hero h1 {
        font-size: 2.8rem;
      }

      .intro, .prestations, .professionnels, .contact-section {
        padding: 80px 40px;
      }

      .intro-text h1, .prestations h2, .professionnels h2, .contact-section h2 {
        font-size: 2.2rem;
      }

      .footer {
        padding: 50px 40px 20px;
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 18px 25px;
      }

    .logo-text {
    font-size: 1.6rem;
    padding: 6px 14px;
  }

      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);
      }

      nav.active {
        right: 0;
      }

      nav ul {
        flex-direction: column;
        gap: 30px;
      }

      nav a {
        color: white;
        text-shadow: none;
        font-size: 1.1rem;
      }

      .menu-toggle {
        display: flex;
      }

      .contact-btn {
        display: none;
      }

      .hero {
        min-height: 500px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .intro, .prestations, .professionnels, .contact-section {
        padding: 60px 25px;
      }

      .intro {
        gap: 30px;
      }

      .intro-text {
        min-width: 100%;
      }

      .intro-text h1, .prestations h2, .professionnels h2, .contact-section h2 {
        font-size: 1.9rem;
      }

      .intro-image {
        min-width: 100%;
      }

      .cards {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .pro-cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
      }

      .contact-grid {
        gap: 30px;
      }

      .contact-info {
        text-align: center;
        min-width: 100%;
      }

      .contact-info p {
        flex-direction: column;
        align-items: center;
      }

      .map-container {
        min-width: 100%;
      }

      .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) {
    .logo-text {
    font-size: 1.4rem;
    padding: 5px 12px;
    }

      .hero h1 {
        font-size: 1.8rem;
      }

      .btn, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
      }

      .intro-text h1, .prestations h2, .professionnels h2, .contact-section h2 {
        font-size: 1.6rem;
      }

      .intro-text p, .prestations .intro, .professionnels .intro, .contact-section .intro {
        font-size: 1rem;
      }

      .card {
        padding: 30px 20px;
      }

      .pro-cards {
        grid-template-columns: 1fr;
      }

          @media (max-width: 1024px) {
      .location-section {
        padding: 80px 40px;
      }

      .location-section h2 {
        font-size: 2.2rem;
      }

      .location-cards {
        gap: 40px;
      }
    }

          .location-section h2 {
        font-size: 1.6rem;
      }

      .location-card-content h3 {
        font-size: 1.3rem;
      }

      .location-card-content .features li {
        font-size: 0.95rem;
      }

      .btn-contact {
        padding: 12px 32px;
        font-size: 1rem;
      }

    @media (max-width: 768px) {
      .location-section {
        padding: 60px 25px;
      }

      .location-section h2 {
        font-size: 1.9rem;
      }

      .location-section .intro {
        font-size: 1rem;
      }

      .location-cards {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .location-card-image {
        height: 240px;
      }

      .location-card-content {
        padding: 28px 24px;
      }

      .location-cta {
        padding: 30px 25px;
      }

      .location-cta h3 {
        font-size: 1.5rem;
      }
    }
    }