.reporting-section{
    justify-content: start;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    gap: 1rem;
    padding: 2rem;
}

.reporting-section hr{
    background-color: white;
    border: none;
    width: 15%;
}

.reporting-section h2{
    margin: 0rem;
}

@media screen and (max-width: 768px) {
    .reporting-section{
        width: 100vw;
        height: max-content;
        padding: 1rem 0;
        gap: 0;
    }
    .reporting-section h2{
        width: 90vw;
    }
    .reporting-section p{
        max-width: 90vw;
    }
    .reporting-section hr{
        width: 50%;
    }
    /* Styles par défaut pour iframe */
iframe {
    width: 90vw; /* L'iframe occupe 90% de la largeur de la fenêtre */
    height: 600px; /* Hauteur basée sur un rapport d'aspect 16:9 */
    max-width: 935px; /* Largeur maximale de l'iframe */
}

/* Media query pour petits écrans */
@media (max-width: 600px) {
    iframe {
        width: 95vw; /* Ajustement pour petits écrans */
        height: 600px; /* Ajuste la hauteur automatiquement */
        border-radius: 25px;
    }
}

    
}