.cta {
    background: linear-gradient(rgba(1, 0, 68, 0.9), rgba(1, 0, 68, 0.9)), url('https://images.unsplash.com/photo-1562141960-c9a3091f78bf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray-light);
}

.cta-highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.cta-phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-left: 15px;
}

.cta-phone i {
    font-size: 2.5rem;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-phone {
        flex-direction: column;
    }
    
    .cta-phone-number {
        font-size: 2rem;
        margin-top: 1rem;
        margin-left: 0;
    }
}
