/* CTA Section */
.cta-section {
    width: 100vw;
    background: var(--color-primary-cta);
    margin: 150px 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.cta-container {
    max-width: 1288px;
    width: 100%;
    background: white;
    border-radius: 24px;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.cta-title {
    font-size: 37px;
    font-weight: 700;
    line-height: 44px;
    color: var(--color-text);
}

.cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-text-secondary);
}

.cta-image {
    max-width: 558px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        padding: 60px 40px;
    }

    .cta-image {
        order: -1;
    }

    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }

    .cta-description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-container {
        padding: 40px 24px;
        gap: 32px;
        margin: -60px 16px;
        
    }

    .cta-title {
        font-size: 26px;
        line-height: 32px;
    }

    .cta-description {
        font-size: 15px;
        line-height: 22px;
    }

}