/* Sidenav menu */
.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -250px;
    background-color: #202020;
    padding-top: 60px;
    transition: right 0.5s ease;
  }
  
  /* Sidenav menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: clamp(0.7rem, 0.5rem + 1.8vw, 1.9rem);
    color: #f3f3f3;
    display: block;
    text-align: left;
    transition: 0.3s;
    z-index: 99999;
  }
  
  .sidenav a:hover {
    color: #ec7c38;
  }
  
  .sidenav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  /* Active class */
  .sidenav.active {
    right: 0;
  }
  
  /* Close btn */
  .sidenav .close {
    position: absolute;
    top: 0;
    left:25px;
    font-size: 36px;
  }
  
  /* Icône burger */
  .burger-icon span {
    display: block;
    width: 35px;
    height: 5px;
    background-color: rgb(255, 255, 255);
    margin: 6px 0;
  }

     /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            color: #333;
            background-color: #f4f4f4;
            line-height: 1.6;
        }

        /* Header Section */
        header {
            background-color: #1872b8;
            padding: 50px;
            text-align: center;
        }

        header img {
            width: 150px;
        }

        /* Section Styling */
        .section {
            padding: 40px 20px;
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .Title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: left;
            color: #25ae56;
            position: relative;
            margin-left:15% ;
            margin-right: 15%;
        }

        .Title:after {
            content: "";
            width: 80px;
            height: 4px;
            align-items: left;
            background: #1772b5;
            /* display: block; */
            margin: 10px auto 0;
        }

        .para {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: justify;
            font-weight: 600;
        }

        /* Swiper Styling */
        .swiper-container {
            width: 100%;
            height: 400px;
            position: relative;
            z-index: 1;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Adaptation de l'image au conteneur sans découpage */
            border-radius: 10px;
            z-index: 1;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #fff;
            background-color: #e8e8e8;
            border-radius: 50%;
            padding: 10px;
            width: 45px;
            height: 45px;
            z-index: 1;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: #ec7c38;
            transition: background-color 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .Title {
                font-size: 2rem;
            }

            .para {
                font-size: 1rem;
            }

            .swiper-container {
                height: 300px;
            }
        }