/* Strictly Brand-Aligned Help Banner */
.banner-ayuda {
    background: #F2F2F2; /* Standard light gray from app.css */
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    border: 1px solid #e2e2e2;
}

.banner-ayuda__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.banner-ayuda__title {
    font-size: 35px; /* Same as h2 in app.css */
    font-family: 'Poppins-Bold', sans-serif;
    color: #000000; /* Corporate color for headers */
    margin: 0;
    line-height: 1.2;
}

.banner-ayuda__text {
    font-size: 16px;
    color: #6c6c6c; /* Standard text color from app.css */
    font-family: 'Poppins-Regular', sans-serif;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 10px;
}

.banner-ayuda__btn {
    background-color: #8DCF2F; /* Corporate primary color */
    color: #ffffff !important; /* Always white text to match app.css */
    font-size: 19px;
    font-family: 'Poppins-SemiBold', sans-serif;
    border: 1px solid #8DCF2F;
    border-radius: 30px; /* Same as .btn-primary in app.css */
    padding: 12px 45px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.banner-ayuda__btn:hover {
    background-color: #F2F2F2;
    color: #ffffff !important; /* Keep white text on hover to match site behavior */
    border-color: #F2F2F2;
}

@media (max-width: 768px) {
    .banner-ayuda {
        padding: 30px 20px;
        margin: 40px 0;
    }
    .banner-ayuda__title {
        font-size: 28px;
    }
}
