.cont-flex{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
}

.gauche{
    width: 70%;
    height: 100%;
    background-image: url(img2.jpg);
    background-size: cover;        /* Makes the image cover the entire area */
    background-position: center;   /* Centers the image */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.droite{
    width: 30%;
    height: 100%;
}

.flex-cont{
    width: 100%;
    height: 400px;
    background-color: white;
}

.tit{
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    margin-top: -150px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-cont{
    width: 350px;
    height: 400px;
    background-color: rgb(250, 250, 250);
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    font-family: sans-serif;
    margin-top: 40px;
    margin-left: -20px;
}

.section-titl{
    color: #000080; /* Navy blue for the title */
    font-size: 2em; /* Adjust font size as needed */
    font-weight: bold; /* Make the title bold */
    margin-bottom: 10px;
    text-align: center;
  
}

.section-des {
    color: #333; /* Dark grey for the description */
    font-size: 1.2em; /* Adjust font size as needed */
    line-height: 1.6; /* Improve line spacing */
    margin-bottom: 20px; /* Space before the list */
    text-align: center;
}

.section-l {
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
    text-align: left; /* Align list items to the left */
    display: inline-block; /* Allow centering while maintaining left alignment */
  }

  .section-l li {
    position: relative; /* For custom bullet positioning */
    padding-left: 25px; /* Space for the custom bullet */
    margin-bottom: 10px; /* Space between list items */
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
 
}

  .section-l li::before {
    content: "•"; /* Use a bullet point or other character */
    position: absolute;
    left: 0;
    color: #000080; /* Navy blue for the bullet */
    font-size: 1.5em; /* Adjust bullet size as needed */
    line-height: 1; /* Align bullet vertically */
  }

  .threeSection{
    background-color: rgb(248, 245, 245);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    padding-top: 10px;
    text-align: center;
    font-family: sans-serif;
    width: 100%;
    height: 400px;
}


  .threeSection .section-title {
    color: #000080;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .threeSection .section-description {
    color: #333;
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px auto;
    display: block; /* Ensure it's a block-level element */
  }

@media screen and (max-width: 768px){
    
    .cont-flex{
        flex-direction: column;
        height: 1000px;
    }
    .gauche, .droite{
        width:100%;
    }
    .droite{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .tit{
        padding: 15px;
    }
    .section-cont{
        border-radius: 0px;
        width: 370px;
        height: 430px;
        margin-top: 50px;
        padding: 20px;
        margin-left: 0;
        border-radius: 20px;
    }
    .section-titl{
        padding-top: 15px;
    }
    .section-description{
        padding: 10px;
    }

    .threeSection{
        width: 100%;
        height: 830px;
        padding: 20px;
        margin-top: 60px;
    }

    .footer-section{
        margin-top: -40px;
    }
}