/* ================================================
   CTA SECTION - Shared CSS
   Used across all 5 pages
   Change here = changes everywhere
   ================================================ */

/* CTA Section */
.cta_section {
    background-color: #2A5A8C;
    padding: 5rem 3rem;
    text-align: center;
}

.cta_section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
}

.cta_section_label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #a0b4cc;
    margin-bottom: 22px;
}

.cta_section_heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta_section_desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #b8cde0;
    max-width: 650px;
    margin: 0 auto 36px auto;
}

.cta_section_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta_btn_primary {
    display: inline-block;
    padding: 13px 28px;
    border: 1.5px solid #ffffff;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cta_btn_primary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.cta_btn_secondary {
    display: inline-block;
    padding: 13px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cta_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ================================================
   RESPONSIVE - CTA Section
   ================================================ */
@media (max-width: 991px) {
    .cta_section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 767px) {


    .cta_section_buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta_btn_primary,
    .cta_btn_secondary {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .cta_btn_primary {
        font-size: 14px
    }
}