/* ========================================
   CTA (CALL TO ACTION) COMPONENT
   ======================================== */

.contribution-cta {
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a4a7a 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 8px 24px rgba(28, 55, 91, 0.2);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contribution-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
