.footer-cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 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: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    background: rgba(234, 234, 234, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 54px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-cta-section .section-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 64px;
    color: #fff;
    margin: 0 0 20px 0;
    max-width: 650px;
}

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

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

.cta-button {
    display: inline-block;
    padding: 6px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    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: 80px 0;
    }
    
    .footer-cta-section .section-label {
        font-size: 20px;
        line-height: 28px;
    }
    
    .footer-cta-section .section-main-heading {
        font-size: 44px;
        line-height: 52px;
    }
    
    .footer-cta-section .section-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 60px 0;
    }
    
    .footer-cta-section .section-label {
        font-size: 18px;
        line-height: 26px;
        padding: 6px 16px;
    }
    
    .footer-cta-section .section-main-heading {
        font-size: 36px;
        line-height: 42px;
        max-width: 100%;
    }
    
    .footer-cta-section .section-subtitle {
        font-size: 16px;
        line-height: 26px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-cta-section {
        padding: 40px 0;
    }
    
    .footer-cta-container {
        padding: 0 15px;
        text-align: center;
    }
    
    .footer-cta-section .section-label {
        font-size: 16px;
        line-height: 24px;
        padding: 5px 14px;
    }
    
    .footer-cta-section .section-main-heading {
        font-size: 28px;
        line-height: 34px;
    }
    
    .footer-cta-section .section-subtitle {
        font-size: 15px;
        line-height: 24px;
    }
    
    .cta-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }
}
