.videos-section {
    padding: 40px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.video-block {
    display: flex;
    flex-direction: row;
    align-items: center; /* <-- Centre verticalement tous les enfants du bloc */
    width: 100%;
    max-width: 1200px; /* Augmente la largeur maximale */
    gap: 30px;
    background: #dcd6cf;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.08);
    padding: 24px 32px;
}

.video-block video {
    width: 400px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: #eee;
}

.text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* <-- Centre le texte verticalement dans le bloc */
    text-align: left;
    padding-left: 20px;
}

.title2 {
    text-align: center; /* Centre le titre horizontalement */
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 2px;
    color: #1e1e1c;
    margin-bottom: 10px;
}

.video-block p {
    color: #1e1e1c;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.text-block p {
    text-align: justify;
}