.cta-section {
    padding: 30px;
    margin-bottom: 20px;
    background: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary, #087BF7);
    border-radius: 50%;
    color: #fff;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-main, #171718);
    margin: 0 0 6px 0;
}

.cta-desc {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--color-primary, #087BF7);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cta-btn:hover {
    background: var(--color-primary-hover, #0060C6);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-btn {
        width: 100%;
    }
}
