.cta-section {
    background-color: var(--color-primary);
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-weight: 700;
}

.cta-section p {
    color: var(--color-gray);
    text-align: center;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding-block: 2rem;
    }

    .cta-section h2 {
        font-size: var(--font-size-2xl);
    }

    .cta-section p {
        font-size: var(--font-size-base);
    }
}