.footer-cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.footer-cta-overlay {
    position: relative;
    z-index: 2;
}

.footer-cta-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.footer-cta-section .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30.9px;
    color: #000;
    background: #EAEAEA;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 54px;
    margin-bottom: 24px;
}

.footer-cta-section .section-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 72px;
    color: #fff;
    margin: 0 0 24px 0;
    max-width: 700px;
}

.footer-cta-section .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    max-width: 700px;
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-primary {
    background: #D1ED45;
    color: #000;
    border: 2px solid #D1ED45;
}

.cta-button-primary:hover {
    background: #c0dc34;
    border-color: #c0dc34;
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .footer-cta-section {
        padding: 100px 0;
    }
    
    .footer-cta-section .section-main-heading {
        font-size: 48px;
        line-height: 56px;
    }
    
    .footer-cta-section .section-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 80px 0;
    }
    
    .footer-cta-section .section-main-heading {
        font-size: 40px;
        line-height: 48px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-cta-section {
        padding: 60px 0;
    }
    
    .footer-cta-container {
        text-align: center;
    }
    
    .footer-cta-section .section-label {
        font-size: 18px;
        line-height: 24px;
        padding: 10px 16px;
    }
    
    .footer-cta-section .section-main-heading {
        font-size: 32px;
        line-height: 40px;
        max-width: 100%;
    }
    
    .footer-cta-section .section-subtitle {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }
}

