.cta-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background-color: var(--color-accent-light);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/public/assets/images/home page section 4 background image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 250px;
}

.cta-actions .btn {
    width: 100%;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .cta-actions {
        width: 100%;
        max-width: 300px;
    }
}