.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1976D2, #1565C0);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.2rem;
    color: #E3F2FD;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-buttons {
    justify-content: center;
    margin-bottom: 2rem;
}

.final-cta .btn-primary {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
    background: linear-gradient(45deg, #1976D2, #1565C0);
}

.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1976D2;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.final-cta .btn-secondary:hover {
    background: #BBDEFB;
    color: #1565C0;
    transform: translateY(-2px);
    border-color: #BBDEFB;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}