/* ============================================
   CTA SECTION STYLES
   ============================================ */

.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-center;
    background-image: url('../assets/img/End_Image.jpg');
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 26, 51, 0.55);
    z-index: 1;
}

.cta-br-390 {
    display: none;
}

/* Mobile: iPhone 12/13/14 (390x844) */
@media (max-width: 390px) and (max-height: 844px) {
    .cta-br-390 {
        display: block;
    }

    .cta-section {
        height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-section > .max-w-4xl {
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .cta-section h2 {
        font-size: 32px !important;
        margin-bottom: 2rem !important;
    }

    .cta-section .button-1 {
        margin-bottom: 0;
    }
}

