/* Section brochure */
.brochure-section {
    padding: 4rem 0;
    background-color: #8b1538;
    color: white;
}

.brochure-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brochure-text {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.brochure-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}

.brochure-icon svg {
    width: 56px;
    height: 56px;
    color: white;
}

.brochure-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.brochure-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Boutons de téléchargement */
.brochure-download {
    width: 100%;
    max-width: 720px;
}

.language-versions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brochure-download .btn-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    background-color: transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brochure-download .btn-brochure:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.brochure-download .btn-brochure:active {
    transform: translateY(0);
}

.file-info {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animation sur survol des boutons */
.btn-brochure svg {
    transition: transform 0.3s ease;
}

.btn-brochure:hover svg {
    transform: translateY(2px);
}

/* Styles pour les écrans plus grands que mobile */
@media (min-width: 768px) {
    .brochure-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }
    
    .brochure-text {
        flex: 0 0 55%;
        margin: 0;
        padding-right: 2rem;
    }
    
    .brochure-download {
        flex: 0 0 45%;
    }
    
    .language-versions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .file-info {
        text-align: left;
    }
    
    .brochure-icon {
        margin-left: 0;
        margin-right: 0;
    }

}

/* Pour les très grands écrans */
@media (min-width: 992px) {
    .language-versions {
        gap: 1.25rem;
    }
}
