/* CTA Banner styles */
.cta-banner {
    padding: 60px 0;
    background: #F8FAFC;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: #1E293B;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.cta-content .btn {
    flex-shrink: 0;
    padding: 15px 35px;
    font-size: 1rem;
}

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}