/* CTA Section Component */
.cta-section {
    background: var(--bg-light);
    text-align: center;
}

.cta-section .section-title {
    text-align: center;
}

.cta-section .section-subtitle {
    text-align: center;
}

.cta-button-section {
    background: #5b3df5;
    color: white;
    text-align: center;
}

.cta-button-section .section-title {
    color: white;
    text-align: center;
}

.cta-button-section .cta-button-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.cta-button-section .hero-note {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 14px;
}

.cta-button-section .hero-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: left;
    font-size: inherit;
}

/* White button variant for CTA */
.cta-button-section .btn-white {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-section .btn-white:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-button-section .cta-button-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-button-section .hero-note {
        align-items: center;
    }
    
    .cta-button-section .hero-note p {
        text-align: center;
    }
}

