 
/*----------------------------------------------------------------------------*/
/*                          Style for Landing                                */
/*----------------------------------------------------------------------------*/
:root {
    --primary-color: #eaeaea;
    --secondary-color: #000000;
    --tertiary-color: #ffffff; 
    --accent-color: #D0FF03;
    --background-color: #f4f4f4;
    --text-color: #000000;
    --max-content-width: calc(100%-12%);
}

body {
    background-color: var(--tertiary-color);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow: none;
}

 /* ===== HERO SECTION ===== */
.sectionInterface {  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 85vh;  
    padding: 2rem;
    gap: 2rem;
    margin: 2rem auto;
    max-width: var(--max-content-width);
    border-radius: 30px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 45%;         
    left: 50%;      
    width: 50%;       
    height: 50%;     
    background-image: url('/Image/Decoration/A (20).webp');
    background-size: cover;
    background-position: center;
    filter: blur(8px); 
    transform: translate(-50%, -50%); /* centre exact de l'image */
    z-index: -1; 
    border-radius: 30px;
}


 

.hero {
    width: 100%;
    padding: 40px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px; /* légèrement plus grand */
    font-weight: 700;
    background: var(--secondary-color);
    color: var(--tertiary-color);
    border-radius: 999px;
    padding: 8px 16px;
}

.eyebrow .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 3px #d0ff0333;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

h1 {
    margin: 20px 0 16px;
    font-size: clamp(60px, 6vw, 84px); /* plus grand et responsive */
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111;
}

.sub {
    color: #333;
    opacity: 0.85;
    max-width: 65ch;
    margin: 0 auto 32px;
    font-size: clamp(24px, 2.2vw, 24px); /* plus grand et responsive */
    line-height: 1.5;
}

/* Bouton principal */
.button-container {
    margin-bottom: 3rem;
}

.cssbuttons-io-button {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
}

  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

   
  @keyframes float {
    0% { transform: translateY(0%) translateX(0%); }
    50% { transform: translateY(-10%) translateX(5%); }
    100% { transform: translateY(0%) translateX(0%); }
  }
.section-header {
    text-align: center; 
}

.section-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600; 
}

.section-title {
    font-size: clamp(32px, 4vw, 48px); 
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: #555;
    max-width: 120ch; 
}
.sectionInterface1 {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 90%;
    min-height: auto;
    max-width: var(--max-content-width);
    margin: 4rem auto;
    box-sizing: border-box;
}

/*----------------------------------------------------------------------------*/
/*                          Features Section                                  */
/*----------------------------------------------------------------------------*/

.features-section {
    background: #fafafa;
    padding: 80px 20px; /* espace haut/bas + marges internes */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    transition: background 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--secondary-color);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #222;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

/*----------------------------------------------------------------------------*/
/*                          Responsive Styles                                 */
/*----------------------------------------------------------------------------*/

/* --- Grands écrans (jusqu’à 1400px) --- */
@media (max-width: 1400px) {
    .features-grid {
        max-width: 1000px;
        gap: 1.5rem;
    }
}

/* --- Tablettes (jusqu’à 1024px) --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.15rem;
    }

    .feature-description {
        font-size: 0.95rem;
        max-width: 95%;
    }
}

/* --- Mobiles (jusqu’à 768px) --- */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }
}

/* --- Petits téléphones (jusqu’à 480px) --- */
@media (max-width: 480px) {
    .features-section {
        padding: 48px 12px;
    }

    .feature-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* --- Très petits écrans (jusqu’à 360px) --- */
@media (max-width: 360px) {
    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}


.box1 h1 {
    font-size: clamp(2.5rem, 5vw, 6rem); /* Taille responsive */
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.box1 h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem); /* Taille responsive */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
}

.image-limitee {
    width: 100%; 
    height: auto;
    display: block; 
}

.imageContainer {
    width: 50%;
    overflow: hidden;
    position: relative; 
}

.imageContainer img {
    width: 70%; /* L'image prendra toute la largeur du conteneur */
    display: block; /* Évite l'espace blanc en dessous de l'image */
     justify-content: center;  
    align-items: center; 
}
/* Responsive adjustments for different screen sizes */
@media screen and (max-width: 480px) {
    .imageContainer {
        height: auto; /* Adjust height for smaller screens */
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .imageContainer {
        height: auto; /* Adjust height for tablets */
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .imageContainer {
        height: auto; /* Adjust height for small desktops/laptops */
    }
}

@media screen and (min-width: 1025px) {
    .imageContainer {
        height: auto; /* Adjust height for larger screens */
    }
}


.divst1,
.divst1 h1,
.divst1 h2,
.divst1 h3,
.divst1 p {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-radius: 5px;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

.divst2,
.divst2 h1,
.divst2 h2,
.divst2 h3,
.divst2 p {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    padding: 10px;
    border-radius: 5px; 
    margin: 0;
    box-sizing: border-box;
}

.divst3,
.divst3 h1,
.divst3 h2,
.divst3 h3,
.divst3 p {
    background-color: var(--tertiary-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    box-sizing: border-box;
}

/* Media Queries pour différents écrans */

/* Tablettes */
@media (max-width: 1024px) {
    .sectionInterface, .sectionInterface1 {
        padding: 1.5rem;
    }
    
    .box1 h1 {
        margin-bottom: 1rem;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .sectionInterface, .sectionInterface1 {
        padding: 1rem;
        width: 95%;
        margin: 0.5rem auto;
        border-radius: 20px;
    }
    
    .box1 h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .box1 h3 {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .image-limitee {
        width: 85%;
    }
}

/* Petits smartphones */
@media (max-width: 480px) {
    .sectionInterface, .sectionInterface1 {
        padding: 0.8rem;
        border-radius: 15px;
    }
    
    .box1 h1 {
        font-size: 2rem;
    }
    
    .box1 h3 {
        font-size: 1rem;
    }
    
    .divst1, .divst2, .divst3,
    .divst1 h1, .divst2 h1, .divst3 h1,
    .divst1 h2, .divst2 h2, .divst3 h2,
    .divst1 h3, .divst2 h3, .divst3 h3,
    .divst1 p, .divst2 p, .divst3 p {
        padding: 8px;
    }
}
 
.cardlanding-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colonnes égales */
    gap: 1rem;
    margin-top: auto; /* pousse la container vers le bas */
    z-index: 1; /* devant le hero-bg */
}

    .cardlanding { 
      color: black;
      position: relative;
      border-radius: 2.5em; 
      padding: 2em;
      transition: transform 0.4s ease;
      min-height: 200px;
    }

    .cardlanding .cardlanding-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 3em;
      height: 100%;
      transition: transform 0.4s ease;
      position: relative;
      z-index: 1;
    }

    .cardlanding .cardlanding-top, .cardlanding .cardlanding-bottom {
      display: flex;
      justify-content: space-between;
    }

    .cardlanding .cardlanding-top p, .cardlanding .cardlanding-top .cardlanding-title, .cardlanding .cardlanding-bottom p {
      margin: 0;
      line-height: 1.4;
    }

    .cardlanding .cardlanding-title {
      font-weight: bold;
      font-size: 1.1rem;
    }

    .cardlanding .cardlanding-top p, .cardlanding .cardlanding-bottom p {
      font-weight: 600;
      font-size: 0.95rem;
    }

    .cardlanding .cardlanding-bottom {
      align-items: flex-end;
    }

    .cardlanding .cardlanding-image {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      display: grid;
      place-items: center;
      pointer-events: none;
      opacity: 0.15;
    }

    .cardlanding .cardlanding-image svg {
      width: 3em;
      height: 3em;
      transition: transform 0.4s ease;
      fill: currentColor;
    }

    .cardlanding:hover {
      cursor: pointer;
      transform: scale(0.97);
    }

    .cardlanding:hover .cardlanding-content {
      transform: scale(0.96);
    }

    .cardlanding:hover .cardlanding-image svg {
      transform: scale(1.05);
    }

    .cardlanding:active {
      transform: scale(0.9);
    }

    /* Tablette - 2 colonnes */
    @media screen and (max-width: 1024px) {
      .cardlanding-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile - 1 colonne */
    @media screen and (max-width: 640px) {
      body {
        padding: 1rem;
      }

      .cardlanding-container {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .cardlanding {
        padding: 1.5em;
      }

      .cardlanding .cardlanding-content {
        gap: 2em;
      }

      .cardlanding .cardlanding-title {
        font-size: 1rem;
      }

      .cardlanding .cardlanding-top p, .card .card-bottom p {
        font-size: 0.85rem;
      }
    }
/* Grille responsive */
.grillabtus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Carte */
.divabtus {
  border: 1px solid rgba(200, 200, 200, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.divabtus:hover {
  box-shadow: none;
  border: 1px solid var(--secondary-color);
}

.divabtus img {
  max-width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  margin: 15px 0;
}

.titabtus {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Bouton */
.cssbuttons-io-button {
  background-color: var(--background-color);
  width: 80%;
  max-width: 300px;
  min-width: 150px;
  color: var(--secondary-color);
  padding: 0.35em 1.2em;
  border-radius: 10em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center; 
  position: relative;
  height: 3em;
  padding-right: 3.3em;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: auto;
}

.cssbuttons-io-button .icon {
  background: var(--tertiary-color);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 10em;
  right: 0.3em;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.5em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--text-color);
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.9);
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .grillabtus {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .grillabtus {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .divabtus {
    padding: 15px 10px;
  }

  .cssbuttons-io-button {
    width: 100%;
    font-size: 14px;
  }
}

        /*----------------------------------------------------------------------------*/
        /*                          Style Slide Principal                            */
        /*----------------------------------------------------------------------------*/
        .slider-container {
            max-width: 100%; 
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            padding: 10px;
            flex-shrink: 0;
            width: 100%;
        }
        .blog-card {
            background: var(--primary-color);
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .blog-image {
            width: 100%; 
            object-fit: cover;
        }
        .blog-content {
            padding: 15px;
            flex-grow: 1;
        }
        .blog-title {
            font-size: 1rem;
            margin-bottom: 12px;
            color: #333;
        }
        .blog-content li {
            color: #666;
            font-size: 0.8rem;
            margin-bottom: 8px;
            padding-left: 18px;
            position: relative;
            list-style-type: none;
            line-height: 1.4;
        }
        .blog-content li:before {
            content: "•";
            color: var(--secondary-color) ;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .slider-controls {
            text-align: center;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }
        .slider-dots {
            display: flex;
            gap: 8px;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            transition: background 0.3s;
        }
        .dot.active {
            background: var(--accent-color);
        }
        .prev, .next {
            background: var(--accent-color);
            color: var(--secondary-color);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        /* Styles pour ordinateurs - 3 slides visibles */
        @media (min-width: 992px) {
            .slide {
                width: 33.33%;
            }
            .blog-image {
                height: 250px;
            }
            .blog-content {
                padding: 20px;
            }
            .blog-title {
                font-size: 1.5rem;
            }
            .slider-controls {
                margin-top: 25px;
            }
        }
        /* Styles pour tablettes - 2 slides visibles */
        @media (min-width: 600px) and (max-width: 991px) {
             
            .blog-image {
                height: 220px;
            }
            .blog-content {
                padding: 18px;
            }
            .blog-title {
                font-size: 1.4rem;
            }
            .slide {
                width: 50%;
            }
        }
        /*----------------------------------------------------------------------------*/
        /*                          Style for carousel                                */
        /*----------------------------------------------------------------------------*/
        :root {
             
            --icon-size: 60px;
            --title-font-size: 18px;
            --content-font-size: 14px;
            --content-padding: 15px;
            --list-item-margin: 8px;
            --text-color: #555;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .maincarousel {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .carousel-container {
            width: 100%;
            overflow: hidden;
            border: 2px solid var(--secondary-color);
            border-radius: 10px;
            position: relative;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel-slide {
            flex-shrink: 0;
            width: 100%;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .accard {
            display: flex;
            width: 100%;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            overflow: hidden;
            flex-direction: column;
            height: 100%;
        }
        .img-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: var(--content-padding);
            background: #f8f9fa;
        }
        .img-content h5 {
            margin: 15px 0;
            font-size: var(--title-font-size);
            color: #333;
            text-align: center;
            font-weight: 600;
        }
        .img-content img {
            width: var(--icon-size);
            height: var(--icon-size);
            object-fit: contain;
        }
        .content {
            padding: var(--content-padding);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .content h5 {
            margin: 0 0 15px 0;
            font-size: var(--title-font-size);
            color: #333;
            font-weight: 600;
        }
        .simple-list {
            list-style-type: disc;
            padding-left: 20px;
            margin: 0;
        }
        .simple-list li {
            margin-bottom: var(--list-item-margin);
            font-size: var(--content-font-size);
            line-height: 1.5;
            color: var(--text-color);
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin: 15px 0;
        }
        .carousel-dots .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s;
            cursor: pointer;
        }
        .carousel-dots .dot.active {
            background-color: var(--secondary-color);
        }
        /* Tablettes */
        @media (min-width: 768px) {
            :root {
                --icon-size: 70px;
                --title-font-size: 20px;
                --content-font-size: 15px;
                --content-padding: 20px;
                --list-item-margin: 10px;
            }
            .carousel-slide {
                width: 50%;
            }
            .accard {
                flex-direction: row;
            }
            .img-content {
                flex: 1;
            }
            .content {
                flex: 2;
            }
        }
        /* Desktop */
        @media (min-width: 1024px) {
            :root {
                --icon-size: 80px;
                --title-font-size: 22px;
                --content-font-size: 16px;
                --content-padding: 25px;
                --list-item-margin: 12px;
            }
            .carousel-slide {
                width: 33.33%;
            }
        }
        /* Très petits écrans */
        @media (max-width: 400px) {
            :root {
                --icon-size: 50px;
                --title-font-size: 16px;
                --content-font-size: 13px;
                --content-padding: 12px;
                --list-item-margin: 6px;
            }
        }
        /*----------------------------------------------------------------------------*/
        /*                          Style for Card                                    */
        /*----------------------------------------------------------------------------*/
        .accard {
            width: 100%;
            height: 100%;
            border-radius: inherit;
            overflow: hidden;
            position: relative;
            color: white;
            transition: background-color 0.6s, color 0.6s;
        }
        .accard .img-content {
            flex-direction: column;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(-45deg, #e7e7e7 0%, #dfdfdf 100%);
            transition: transform 0.6s, filter 1s;
            cursor: pointer;
        }
        .accard .img-content svg {
            width: 50px;
            height: 50px;
            fill: #000000;
            transition: fill 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .accard .content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10px;
            font-size: 0.75rem;
            line-height: 1.4;
            max-width: 90%;
            overflow-wrap: break-word;
            opacity: 0;
            pointer-events: none;
            transform: translateY(50px);
            transition: opacity 0.6s, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .accard:hover {
            background-color: rgb(180, 103, 103);
            color: #f5f5dc;
        }
        .accard:hover .content {
            opacity: 1;
            transform: translateY(0);
        }
        .accard:hover .img-content {
            transform: scale(2.5) rotate(30deg);
            filter: blur(7px);
        }
        .accard:hover .img-content svg {
            fill: transparent;
        }
        .simple-list {
            list-style: none;
            padding: 2px;
            text-align: left;
        }
        .simple-list li {
            display: flex;
            color: var(--text-color);
            font-size: 0.8rem;
        }
        .simple-list li::before {
            content: "■";
            margin-right: 8px;
            color: var(--text-color);
        }
        /* Responsive adjustments */
        @media screen and (max-width: 768px) {
            .accard .content {
                font-size: 0.7rem;
                padding: 5px;
            }
            .simple-list li {
                font-size: 0.7rem;
            }
        }
        @media screen and (max-width: 480px) {
            .accard .img-content svg {
                width: 40px;
                height: 40px;
            }
            .accard .content {
                font-size: 0.6rem;
            }
            .simple-list li {
                font-size: 0.6rem;
            }
        }
 
 
/*----------------------------------------------------------------------------*/
/*                          Style for sejour                              */
/*----------------------------------------------------------------------------*/
 .process-wrapper {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
  }

  .process-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%; 
    margin: 0 auto;
    padding: 0 20px;
  }

  .process-container::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 4px;
    background-color: #ef4444;
    z-index: 0;
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    padding: 0 10px;
  }

  .circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }

  .step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
  }

  .step small {
    color: #666;
    display: block;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.4;
  }

  /* Tablette */
  @media (max-width: 992px) {
    .process-container::before {
      left: 40px;
      right: 40px;
    }
    
    .step {
      padding: 0 8px;
    }
    
    .circle {
      width: 50px;
      height: 50px;
    }
    
    .step p {
      font-size: 14px;
    }
    
    .step small {
      font-size: 12px;
    }
  }

  /* Petit tablette */
  @media (max-width: 768px) {
    .process-container {
      flex-direction: column;
      align-items: center;
      padding: 0 30px;
    }

    .process-container::before {
      top: 0;
      left: 30px;
      width: 4px;
      height: 100%;
      right: auto;
    }

    .step {
      display: flex;
      text-align: left;
      margin-bottom: 30px;
      width: 100%;
      max-width: 400px;
    }

    .circle {
      margin: 0 15px 0 0;
      flex-shrink: 0;
    }

    .step-content {
      flex: 1;
      min-width: 0;
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .process-container {
      padding: 0 15px;
    }
    
    .process-container::before {
      left: 20px;
    }
    
    .step {
      margin-bottom: 25px;
      align-items: flex-start;
    }
    
    .circle {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }
    
    .step p {
      font-size: 13px;
    }
    
    .step small {
      font-size: 11px;
    }
  }