.calendar-section {
    padding-top: 120px; 
    text-align: center;
    padding-bottom: 25px;
}
    
    .calendar-container {
        max-width: 900px; /* Limite la largeur pour éviter que ça prenne toute la page */
        margin: 20px auto; /* Centre le calendrier */
        padding: 10px;
        background: #ffffff; /* Fond blanc */
        border-radius: 10px; /* Coins arrondis */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
        overflow: hidden;
    }
    
    

    iframe {
        width: 100%;
        height: 600px;
        border-radius: 10px;
    }

    /* Responsive pour les écrans plus petits */
    @media (max-width: 768px) {
        .calendar-container {
            width: 95%;
            padding: 5px;
        }

        iframe {
            height: 500px;
        }
    }
    
    
    
.about-section {
    background-color: white;
    font-size: 2em;
    color: black; 
    padding: 25px 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section h2, .partners-section h2 {
        font-size: 1.8em;
    }

    .about-section p {
        font-size: 1em;
    }

    .partners-logos img {
        max-width: 100px;
    }
}

.about-container {
    max-width: 700px;
    margin: auto;
    /*font-size: 0.9em;*/
    color: black;
    border: 2px solid #f2b139; 
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.3); /* Légère lueur dorée */
    padding: 30px 20px;
    text-align: center;
    padding-top: 20px;
    background-color: rgba(249, 249, 250, 0.827);
}

.about-container h2 {
    font-size: 2em;
    /* color: #f29100;   */
    color: black;
    margin-bottom: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-container p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
}

