/* CTA Section Styles */
.section.cta-section {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    padding: 2rem 0;
    color: #fff;
}

.cta-section .illustration-container {
    text-align: center;
}

.cta-section .illustration-container img {
    max-width: 100%;
    height: auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background-color: #fff;
    color: #2196f3;
    border: 2px solid #fff;
}

.cta-buttons .btn-light:hover {
    background-color: transparent;
    color: #fff;
}



/* Responsive Design */
@media (max-width: 1199.98px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .section.cta-section {
        padding: 1.5rem 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .section.cta-section {
        padding: 1rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .section.cta-section {
        padding: 0.75rem 0;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
}
