/* Styles globaux */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: black;
}

.container, .row {
    box-sizing: border-box;
}

#header {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.container {
    padding: 10px 5%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    width: 250px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: 0.3s ease;
    align-items: center; /* Ensure vertical alignment */
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: red;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Bouton de traduction */
#translate-button {
    font-size: 18px; /* Adjust the font size */
    padding: 10px 20px; /* Add padding for a larger button */
    background-color: #aaf1a8; /* Background color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

#translate-button:hover {
    background-color: #6cee88; /* Change background color on hover */
}

#translate-button:focus {
    outline: none; /* Remove focus outline */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: 0.3s ease;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

/* Assure that the translate button is the first element in the nav */
.nav-links {
    display: flex;
    align-items: center; /* Align items vertically */
}

.nav-links li:first-child {
    order: -1; /* Move the first list item (translate button) to the start */
}

/* Header Content */
.header-content {
    text-align: center;
    margin-bottom: 20px; /* Add some margin below the header content */
}

.header-content h1 {
    font-size: 48px;
    margin: 0; /* Remove left margin */
}

.header-content h1 span {
    color: rgb(207, 34, 34);
}

.header-content img {
    width: 87%;
    height: auto;
    object-fit: cover;
    margin-top: 20px; /* Add some margin above the image */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .header-content h1 {
        font-size: 40px;
    }

    .header-content img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 32px;
    }

    .header-content img {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 24px;
    }

    .header-content img {
        width: 70%;
    }
}

@media (max-width: 360px) {
    .header-content h1 {
        font-size: 20px;
    }

    .header-content img {
        width: 65%;
    }
}


/* Language Section (Page d'accueil) */
.language-banner {
    background-color: #73aae9;
    padding: 20px 0;
    text-align: center;
}

.language-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: none !important; /* Utiliser !important pour forcer l'absence d'ombre */
    border: none; /* S'assurer qu'il n'y a pas de bordure */
}

.languages {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.language img {
    width: 70px;
}

.language {
    text-align: center;
    margin: 10px;
}

.language p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    font-size: 1.5em;
    margin: 0;
}

.language-container p {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

/* Contact Button (Global) */
.contact-button, .submit-button, .button.btn2 {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.contact-button {
    background-color: #333;
    color: white;
}

.contact-button:hover {
    background-color: rgb(241, 65, 65);
}

.submit-button, .button.btn2 {
    background-color: rgb(233, 80, 80); /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte */
}

.submit-button:hover, .button.btn2:hover {
    background-color: rgb(207, 34, 34); /* Background color on hover */
}

/* Nouvelle section pour les articles */
.article-section {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.article-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.article-section .sub-title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.article {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.article p {
    color: #666;
}

.article a {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    background-color: rgb(233, 80, 80);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.article a:hover {
    background-color: rgb(207, 34, 34);
}

/* About Section */
#about {
    padding: 80px 0;
    color: black;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-photo {
    width: 100%;
    border-radius: 15px;
}

.about-col-2 {
    flex-basis: 60%;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
}

.tab-titles {
    display: flex;
    margin: 20px 20 40px;
}

.tab-links {
    margin-right: 50px;
    font-size: 30px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: red;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    color: rgb(207, 34, 34);
    font-weight: bold;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

/* Services Section (Page A Propos) */
#services {
    padding: 30px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div {
    background-color: rgb(240, 213, 213);
    padding: 30px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
}

.services-list h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.services-list h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div:hover {
    background-color: rgb(228, 183, 183);
    transform: translateY(-10px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .row {
        flex-direction: column;
    }

    .about-col-2 {
        order: 1; /* Ensure the title and content come first */
    }

    .about-photo {
        order: 2;
        max-width: 300px;
        margin: 20px auto; /* Center the image */
    }

    .about-col-1 {
        order: 3;
    }

    .sub-title {
        font-size: 36px; /* Adjusted for medium screens */
    }

    .tab-titles {
        justify-content: center; /* Center align tabs */
    }

    .tab-links {
        margin: 10px; /* Adjust margin for better spacing */
        font-size: 18px; /* Adjust font size for tabs */
    }

    .tab-contents ul li {
        font-size: 14px; /* Adjust font size for content */
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px;
    }

    .hamburger-menu {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .header-text h1 {
        font-size: 32px;
        margin-top: 40%;
    }

    .header-text {
        font-size: 20px;
    }

    .language img {
        width: 40px;
    }

    .language-container p {
        font-size: 12px;
    }

    .language p {
        font-size: 1em;
    }

    .contact-button {
        padding: 6px 12px;
    }

    .article-section .sub-title {
        font-size: 1.2em;
    }

    .article h3 {
        font-size: 1em;
    }

    .article p {
        font-size: 12px;
    }

    .article a {
        padding: 6px 12px;
    }

    .sub-title {
        font-size: 28px; /* Adjusted for smaller mobile screens */
    }

    .services {
        display: flex;
        justify-content: space-around;
    }

    .services .service {
        flex: 1;
        margin: 0 5px; /* Reduce margin for smaller screens */
    }

    .services .service img {
        width: 70%; /* Further reduce image size */
        max-width: 120px; /* Ensure they fit within the container */
    }

    .services-container p {
        padding: 0 10px;
        font-size: 14px;
    }

    .about-photo {
        order: 2;
        max-width: 250px; /* Increase image width */
        margin: 20px auto; /* Center the image */
    }

    .tab-titles {
        flex-wrap: wrap; /* Allow wrapping */
    }

    .tab-links {
        font-size: 16px; /* Further reduce tab font size */
        margin-right: 15px;
    }

    .tab-contents ul li {
        font-size: 12px; /* Further reduce content font size */
    }
}

/* Pedagogy Section */
.pedagogy-banner {
    background-color: rgb(245, 101, 101);
    padding: 20px 0;
    text-align: center;
}

.pedagogy-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-image {
    max-width: 80%;
    border-radius: 10px;
    margin-top: 20px;
}

.pedagogy-container p {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.tarif-button {
    display: inline-block;
    background-color: rgb(97, 148, 241);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.tarif-button:hover {
    background-color: rgb(39, 86, 238);
}

.pedagogy-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 5%;
}

.column {
    flex: 0 1 45%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
}

.column-actionnelle {
    background-color: rgb(253, 234, 240);
}

.column-differenciee {
    background-color: rgb(234, 253, 234);
}

.column h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.column ul {
    list-style: none;
    padding-left: 0;
}

.column li {
    margin-bottom: 10px;
}

.column img.section-image {
    max-width: 60%;
    border-radius: 10px;
    margin: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pedagogy-container {
        padding: 15px;
    }

    .pedagogy-content {
        padding: 20px 5%;
    }

    .column {
        flex: 0 1 100%;
        margin: 10px 0;
    }

    .column img.section-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .pedagogy-container {
        padding: 10px;
    }

    .pedagogy-content {
        padding: 15px 2%;
    }

    .column {
        padding: 15px;
    }

    .column h2, .column h3 {
        font-size: 24px;
    }

    .column p, .column li {
        font-size: 14px;
    }

    .tarif-button {
        padding: 8px 16px;
    }

    /* Adjust the title size in the banner for mobile */
    .pedagogy-container .sub-title {
        font-size: 24px; /* Adjust this value as needed */
    }
}

/* Contact Page */
#contact {
    text-align: center;
    padding: 20px;
}

.contact-banner {
    background-color: #4a90e2;
    padding: 60px 0;
    text-align: center;
}

.contact-banner-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

#contact .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

#contact .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap; /* Allow wrapping for mobile */
}

#contact-left, #contact-right {
    flex: 0 1 45%;
    text-align: left;
    margin: 10px 0; /* Add margin for spacing */
}

#contact-left p, #contact-left i {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

#contact-left {
    flex: 0 1 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(17, 17, 17, 0.1);
}

#contact-right {
    flex: 0 1 45%;
    padding: 20px;
}

#contact-right form {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

#contact-right input, #contact-right textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 20px;
}

#contact-right button {
    width: 100%; /* Adjust to full width for mobile */
    padding: 15px;
    font-size: 20px;
    margin-top: 20px;
}

#contact-left .fa-solid {
    color: rgb(207, 34, 34); /* Couleur de l'icône fa-paper-plane */
}

#contact-left .fa-brands {
    color: #4a90e2; /* Couleur de l'icône fa-linkedin */
}

#contact-left a {
    color: #1a1919; /* Couleur du texte du lien */
}

/* Contact Image */
#contact-left img {
    display: block; 
    margin: 0 auto 20px auto; 
    max-width: 100%; 
    height: auto; 
    border-radius: 50%; 
    transition: transform 0.3s ease; 
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        display: none;
        margin-top: 10px;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .logo {
        width: 150px;
    }

    #contact .row {
        flex-direction: column;
    }

    #contact-left, #contact-right {
        flex: 0 1 100%;
    }

    #contact-right button {
        width: 100%;
    }

    /* Adjust title size for mobile */
    #contact-left .sub-title {
        font-size: 24px; /* Adjust as needed */
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px;
    }

    .hamburger-menu {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    #contact-left p, #contact-left i {
        font-size: 20px;
    }

    #contact-left img {
        margin-bottom: 15px;
    }

    #contact-right input, #contact-right textarea {
        font-size: 16px;
    }

    #contact-right button {
        font-size: 18px;
    }

    /* Further adjust title size for smaller screens */
    #contact-left .sub-title {
        font-size: 25px; /* Adjust as needed */
    }
}


/* Content Banner */
.content-banner {
    background-color: #4a90e2; /* Couleur bleue */
    padding: 50px 0; /* Ajustez le padding selon vos besoins */
    display: flex;
    justify-content: center;
}

.content-section {
    background-color: #FFFFFF; /* Couleur blanche */
    padding: 40px; /* Ajustez le padding selon vos besoins */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre pour donner de la profondeur */
    max-width: 800px; /* Largeur maximale du carré blanc */
    width: 90%; /* Largeur de 90% de l'écran, ajustable */
    text-align: center;
}

/* Services Container */
.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em; /* Taille du texte */
    transition: color 0.3s ease; /* Transition douce pour l'effet hover */
}

.service a:hover {
    color: rgb(241, 65, 65); /* Couleur du texte au survol */
}

.service p {
    margin: 0;
}

/* Page tarif */
.tarif-banner {
    background-color: rgb(245, 101, 101);
    padding: 40px 0;
    text-align: center;
}

.tarif-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tarif-table th, .tarif-table td {
    border: 1px solid #737475;
    padding: 12px;
    text-align: left;
}

.tarif-table th {
    background-color: #c9cece;
}

.tarif-info {
    margin-top: 20px;
    text-align: center;
}

.tarif-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.tarif-info p {
    font-size: 16px;
    line-height: 1.5;
}

.contact-button {
    display: inline-block;
    background-color: rgb(16, 16, 17);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.contact-button:hover {
    background-color: rgb(14, 13, 13);
}

/* Page info anglais */
.course-banner {
    background-color: #73aae9;
    padding: 40px 0;
    text-align: center;
}

.course-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.course-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.course-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    border-radius: 10px;
}

.course-container h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.course-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.course-container ul {
    list-style-type: none; /* Supprimer les marqueurs par défaut */
    padding-left: 0;
    margin-bottom: 20px;
}

.course-container ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.contact-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.contact-button:hover {
    background-color: rgb(241, 65, 65);
}
/* Page info anglais scolaire */
.ang-scolaire-banner {
    background-color: #8ab8ee;
    padding: 40px 0;
    text-align: center;
}

.ang-scolaire-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.ang-scolaire-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.ang-scolaire-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    border-radius: 10px;
}

.ang-scolaire-container h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0170e7;
}

.ang-scolaire-container h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2aa146;
}

.ang-scolaire-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ang-scolaire-container ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.ang-scolaire-container ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.ang-scolaire-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.ang-scolaire-container ol li {
    margin-bottom: 10px;
}

.ang-scolaire-container .ang-scolaire-images {
    text-align: center;
    margin-bottom: 20px;
}

.ang-scolaire-container .ang-scolaire-images img {
    max-width: 100%;
    border-radius: 10px;
}

.ang-scolaire-container .ang-scolaire-images figcaption {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.ang-scolaire-contact-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.ang-scolaire-contact-button:hover {
    background-color: rgb(241, 65, 65);
}

/* Page info anglais adultes */
.ang-adultes-banner {
    background-color: #8ab8ee;
    padding: 40px 0;
    text-align: center;
}

.ang-adultes-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.ang-adultes-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.ang-adultes-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    border-radius: 10px;
}

.ang-adultes-container h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0170e7;
}

.ang-adultes-container h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2aa146;
}

.ang-adultes-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ang-adultes-container ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.ang-adultes-container ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.ang-adultes-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.ang-adultes-container ol li {
    margin-bottom: 10px;
}

.ang-adultes-container .ang-adultes-images {
    text-align: center;
    margin-bottom: 20px;
}

.ang-adultes-container .ang-adultes-images img {
    max-width: 100%;
    border-radius: 10px;
}

.ang-adultes-container .ang-adultes-images figcaption {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.ang-adultes-contact-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.ang-adultes-contact-button:hover {
    background-color: rgb(241, 65, 65);
}

/* Page info FLE élève */
.fle-eleve-banner {
    background-color: #8ab8ee;
    padding: 40px 0;
    text-align: center;
}

.fle-eleve-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.fle-eleve-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.fle-eleve-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    border-radius: 10px;
}

.fle-eleve-container h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0170e7;
}

.fle-eleve-container h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2aa146;
}

.fle-eleve-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fle-eleve-container ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.fle-eleve-container ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.fle-eleve-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.fle-eleve-container ol li {
    margin-bottom: 10px;
}

.fle-eleve-container .fle-eleve-images {
    text-align: center;
    margin-bottom: 20px;
}

.fle-eleve-container .fle-eleve-images img {
    max-width: 100%;
    border-radius: 10px;
}

.fle-eleve-container .fle-eleve-images figcaption {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.fle-eleve-contact-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.fle-eleve-contact-button:hover {
    background-color: rgb(241, 65, 65);
}

/* Page info FLE adulte */
.fle-adulte-banner {
    background-color: #8ab8ee;
    padding: 40px 0;
    text-align: center;
}

.fle-adulte-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.fle-adulte-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.fle-adulte-image {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    border-radius: 10px;
}

.fle-adulte-container h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0170e7; /* Bleu */
}

.fle-adulte-container h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2aa146; /* Vert */
}

.fle-adulte-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fle-adulte-container ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.fle-adulte-container ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.fle-adulte-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.fle-adulte-container ol li {
    margin-bottom: 10px;
}

.fle-adulte-container h3 strong {
    font-size: 24px;
    color: green;
}


.fle-adulte-container .fle-adulte-images {
    text-align: center;
    margin-bottom: 20px;
}

.fle-adulte-container .fle-adulte-images img {
    max-width: 100%;
    border-radius: 10px;
}

.fle-adulte-container .fle-adulte-images figcaption {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.fle-adulte-contact-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.fle-adulte-contact-button:hover {
    background-color: rgb(241, 65, 65);
}

#msg{
    color: #ffffff;
    display: block;
    font-size: 20px;
}

