/* ================================
   ACCORDEONS – FRONT
   ================================ */

   .accordeon-item {
       border: 1px solid #eee;
       border-radius: 10px;
       margin-bottom: 18px;
       background: #fff;
       overflow: hidden;
       transition: box-shadow 0.25s ease, transform 0.2s ease;
   }

   .accordeon-item.open {
       box-shadow: 0 6px 22px rgba(0,0,0,0.08);
       transform: translateY(-1px);
   }

   .accordeon-head {
       padding: 18px 16px;
       cursor: pointer;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .accordeon-title {
       font-size: 18px;
       font-weight: 600;
       color: #222;
       display: flex;
       align-items: center;
   }

   /* Chevron iOS */
   .accordeon-title::before {
       content: "▶";
       display: inline-block;
       margin-right: 12px;
       font-size: 16px;
       color: #666;
       transition: transform 0.25s cubic-bezier(0.25,0.1,0.25,1),
                   color 0.25s ease;
   }

   .accordeon-item.open .accordeon-title::before {
       transform: rotate(90deg);
       color: #186581; /* ton bleu STCDR */
   }

   /* Corps – animation iPhone fluid */
   .accordeon-body {
       max-height: 0;
       overflow: hidden;
       padding: 0 16px;
       background: #fafafa;
       border-top: 1px solid #eee;
       transition:
           max-height 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
           padding 0.25s ease;
   }

   .accordeon-item.open .accordeon-body {
       padding: 18px 16px;
       max-height: 2000px;
   }

   /* Responsive */
   @media (max-width:600px){
       .accordeon-title { font-size: 16px; }
       .accordeon-head { padding: 15px 14px; }
   }

.accordeon-head {
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    user-select: none;
}

.accordeon-title {
    display: flex;
    align-items: center;
}

.accordeon-title::before {
    content: "▶";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.2s ease;
    font-size: 15px;
    color: #555;
}


.accordeon-body {
    display: none;
    padding: 15px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.accordeon-body p:last-child {
    margin-bottom: 0;
}

/* Animation smooth */
.accordeon-body[style] {
    transition: all 0.25s ease !important;
}
img.flt-r {
  width: 20% !important;
  float: right;
  height: auto !important;
  margin-left: 10px;
  margin-top: 5px;
}
img.flt-l {
  width: 20% !important;
  float: left;
  height: auto !important;
  margin-right: 10px;
  margin-top: 5px;
}
img.cinq-r{
    vertical-align: top;
}
/* Responsive */
@media (max-width: 600px) {
    .accordeon-head {
        font-size: 16px;
        padding: 12px;
    }
    .accordeon-body {
        padding: 12px;
    }
}
