.page-why-not-just-do-it-yourself {
    font-family: Arial, sans-serif;
  }
  
  .page-why-not-just-do-it-yourself .wrapper-fullpage {
    width: 100%;
  }
  
  .menu-column {
    width: 50%;
    padding: 40px;
 /* fond sombre pour le menu */
    box-sizing: border-box;
  }
  
  .menu-column h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .menu-column p {
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  
  .menu-column .list--reasons {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
  }
  
  .menu-column .list--reasons li {
    margin-bottom: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  
  /* .menu-column .list--reasons li.active a,
  .menu-column .list--reasons li:hover a {
    font-weight: bold;
  } */
  
  .menu-column .list--reasons li a {
    text-decoration: none;
  }
  
  .slider-column {
    width: 70%;
    position: relative;
  }
  
  .fullpage-wrapper .section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 80px;
    text-align: left;
  }
  
  .fullpage-wrapper .section .content {
    max-width: 600px;
    padding: 0 22.5px 0 45px;
  }
  
  .fullpage-wrapper .section header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .fullpage-wrapper .section .copy p {
    line-height: 1.6;
    color: white;
  }
  
  @media (max-width: 768px) {
    .wrapper-fullpage {
      flex-direction: column;
    }
    .menu-column, .slider-column {
      width: 100%;
    }
    .menu-column {
      padding: 20px;
      margin-top: 70px;
    }
    .fullpage-wrapper .section {
      padding: 40px;
      display:none;
    }
  }









  @media(max-width: 900px){

    /* Cacher le slider fullpage sur mobile */
    .slider-column {
        display: none !important;
    }
  
    /* Cacher toutes les div sous les li */
    .hidden-content {
        display: none;
        background: #f7f7f7;
        padding: 15px;
        margin-top: 8px;
        border-radius: 8px;
        transition: 0.3s ease-in-out;
      }
  
    /* Quand active → s'affiche */
    .hidden-content.active {
        display: block;
    }
  
    /* Cursor clickable */
    .list--reasons li {
        cursor: pointer;
    }
  }

  



/* --- MOBILE accordion exact Black Tomato style --- */
@media (max-width: 900px) {

    /* .menu-column {
      display: none !important;
    } */
  
    .slider-column {
      width: 100%;
    }
  
    .section {
      background: #f8f8f8;
      padding: 18px 20px;
      border-bottom: 1px solid #ddd;
      cursor: pointer;
      position: relative;
    
    }
  
    /* Title Row */
    .section header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  
    .section header h3 {
      font-size: 14px;
      font-weight: bold;
      color: #222;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
  
    /* Icon style */
    .section .icon {
      font-size: 16px;
      font-weight: bold;
      transition: transform .3s;
      color: #e2007a; /* pink accent */
    }
  
    .section.active-mobile .icon {
      transform: rotate(180deg);
    }
  
    /* Hidden content */
    .content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all .4s ease;
      margin-top: 0;
    }
  
    /* Visible section */
    .section.active-mobile .content {
      max-height: 400px;
      opacity: 1;
      margin-top: 12px;
      background: #7b98ac;
      padding: 20px;
      border-radius: 4px;
    }
  
    .section.active-mobile .content p {
      font-size: 14px;
      line-height: 1.6;
    }
  }

  @media(max-width: 900px){
  .hidden-content {
    display: none;
    background: #f6f6f6;
    margin-top: 8px;
    padding: 12px;
    border-radius: 5px;
    transition: 0.3s ease;
  }
  .hidden-content.active {
    display: block;
  }

  /* Cacher les sections fullpage sur mobile */
  .slider-column {
    display: none !important;
  }
}

  