/* ===== LEGAL HERO ===== */

.legal-hero {
    position: relative;
    height: 355px;
    background: url('../images/banner_mention_dark.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.legal-hero h1 {
    position: relative;
    z-index: 2;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;

    margin: 0;
}
/* ===========================
   LEGAL PAGE
=========================== */

.legal-content {
    padding: 70px 0 90px;
    background: #fff;
}

.legal-content .container {
    width: 90%;
    max-width: 980px;
    margin: auto;
}

/* Each section */
.legal-block {
    margin-bottom: 55px;
}

/* Main titles */
.legal-block h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1B181D;

    margin-bottom: 22px;
}

/* Paragraphs */
.legal-block p,
.legal-list li {
    font-size: 15px;
    line-height: 2;
    color: #222;
    margin-bottom: 16px;
}

.legal-list strong,
.legal-block strong {
    color: #000;
    font-weight: 700;
}

/* Links */
.legal-content a {
    color: #3b7cff;
    text-decoration: none;
}

.legal-content a:hover {
    color: #EA0D80;
}

/* Strong text */
.legal-content strong {
    color: #000;
    font-weight: 700;
}

/* Spacing between paragraphs */
.legal-block p + p {
    margin-top: 10px;
}

/* Text selection */
.legal-content ::selection {
    background: #EA0D80;
    color: #fff;
}
/* Spacing for the last block */
.legal-block:last-child {
    margin-bottom: 0;
}

.legal-list li {
    margin-bottom: 8px;
}


/* ============================================
    CTA SECTION
============================================ */
.cta-section {
    background: #4178F2;
    padding: 70px 0;
    border-top: 1px solid #eeeeee;
}

.cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cta-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    color: #ffffff;
    line-height: 1;
}

.cta-btn-wrap {
    text-align: right;
}

.btn-filled {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #ffffff;
    background: #4178F2;
    padding: 16px 36px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-filled:hover {
    background: #fff;
    color: #4178F2;
}


/* Responsive styles */

@media (max-width: 1024px) {


    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .cta-btn-wrap {
        text-align: center;
    }
}

@media (max-width: 992px) {

    .legal-content {
        padding: 70px 20px;
    }

    .legal-block {
        margin-bottom: 55px;
    }

    .legal-block h2 {
        font-size: 40px;
    }

    .legal-block p,
    .legal-list li {
        font-size: 17px;
    }

}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
    .legal-content {
        padding: 60px 18px;
    }

    .legal-block {
        margin-bottom: 45px;
    }

    .legal-block h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .legal-block p,
    .legal-list li {
        font-size: 16px;
        line-height: 1.8;
    }
    

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 22px;
    }

}

@media (max-width: 576px) {

    .legal-content {
        padding: 50px 15px;
    }

    .legal-block h2 {
        font-size: 28px;
    }

    .legal-block p,
    .legal-list li {
        font-size: 15px;
    }

}