/* FINAL CTA CSS VERSION 1 */

/* SECTION */

.final_cta_section {
    position: relative;
    z-index: 2;
}

.final_cta_container {
    background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
Margin-top: -128px;
    box-shadow:
        0 8px 18px rgba(0,0,0,0.12),
        0 2px 4px rgba(0,0,0,0.08);
}

/* INNER */

.final_cta_inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* TEXT */

.final_cta_inner h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.final_cta_inner p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* BUTTONS */

.final_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* PRIMARY */

.final_cta_primary {
    background: #ffffff;
    color: #111111;
    border: 2px solid #ffffff;
}

.final_cta_primary:hover {
    background: #f2f2f2;
    color: #111111;
}

/* SECONDARY */

.final_cta_secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.final_cta_secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* TRUST STRIP */

.final_cta_trust ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.final_cta_trust li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-left: 1.2rem;
}

.final_cta_trust li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 767px) {

    .final_cta_container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .final_cta_inner h2 {
        font-size: 1.6rem;
    }

    .final_cta_buttons {
        flex-direction: column;
    }

    .final_cta_buttons .button {
        width: 100%;
    }
}