.page-legal .navbar .navbar-nav .nav-link {
    color: #fff;
}

.page-legal .nav-scroll .navbar-nav .nav-link,
.page-legal .nav-scroll .navbar-nav .nav-link:hover {
    color: #0c0c12;
}

.page-legal .nav-scroll .navbar-nav .nav-link:hover {
    color: #d32027;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    padding: 200px 0 80px;
    background: #0c0c12;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.legal-hero h1 {
    font-family: 'Thunder', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 8vw, 140px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 28px;
}

.legal-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d32027;
    color: #fff;
    font-family: 'Sawton', sans-serif;
    font-size: 20px;
    line-height: 28px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
}

.legal-cta:hover {
    background: #fff;
    color: #0c0c12;
}

.legal-cta img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.legal-cta:hover img {
    filter: none;
}

.legal-hero-icon {
    width: min(392px, 36vw);
    height: auto;
    flex-shrink: 0;
}

.legal-content {
    background: #fff;
    padding: 80px 0 120px;
}

.legal-logo {
    width: 280px;
    max-width: 70%;
    height: auto;
    margin-bottom: 48px;
}

.legal-intro {
    font-family: 'Sawton', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #555559;
    max-width: 760px;
    margin-bottom: 48px;
}

.legal-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    margin-bottom: 72px;
    max-width: 1400px;
}

.legal-facts > div {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-fact {
    min-width: 0;
}

.legal-fact-label {
    font-family: 'Sawton', sans-serif;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.2;
    color: #0c0c12;
    margin: 0 0 8px;
}

.legal-fact-value {
    font-family: 'Sawton', sans-serif;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.4;
    color: #b6b6b8;
    margin: 0;
}

.legal-section {
    max-width: 1194px;
    margin-bottom: 48px;
}

.legal-section-title {
    font-family: 'Thunder', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #0c0c12;
    margin: 0 0 24px;
}

.legal-section h3,
.legal-body h3 {
    font-family: 'Sawton', sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 2.4vw, 40px);
    line-height: 1.25;
    color: #0c0c12;
    margin: 28px 0 8px;
}

.legal-body p,
.legal-body li,
.legal-section p {
    font-family: 'Sawton', sans-serif;
    font-size: clamp(16px, 1.4vw, 24px);
    line-height: 1.4;
    color: #555559;
}

.legal-body ul {
    padding-left: 1.2em;
    margin: 0 0 16px;
}

.legal-body a {
    color: #d32027;
    text-decoration: underline;
}

.page-legal footer {
    background: #fff;
}

@media only screen and (max-width: 991px) {
    .legal-hero {
        min-height: 530px;
        padding: 140px 20px 32px;
    }

    .legal-hero:has(.legal-hero-icon) {
        min-height: 720px;
        padding-top: 100px;
    }

    .legal-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .legal-hero-icon {
        order: -1;
        width: 220px;
        align-self: center;
        margin: 24px auto 8px;
    }

    .legal-hero h1 {
        font-size: 78px;
        line-height: 62px;
        letter-spacing: 0.78px;
        margin: 0 0 16px;
    }

    .legal-cta {
        font-size: 20px;
        line-height: 28px;
        height: 56px;
        padding: 14px 30px;
    }

    .legal-content {
        padding: 48px 0 80px;
    }

    .legal-logo {
        width: 230px;
        margin-bottom: 28px;
    }

    .legal-intro {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 24px;
        max-width: none;
    }

    .legal-facts {
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
        margin-bottom: 40px;
    }

    .legal-facts > div {
        gap: 20px;
    }

    .legal-fact-label {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .legal-fact-value {
        font-size: 14px;
        line-height: 18px;
        color: #555559;
    }

    .legal-section {
        margin-bottom: 32px;
    }

    .legal-section-title {
        font-size: 38px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .legal-section h3,
    .legal-body h3 {
        font-size: 20px;
        line-height: 28px;
        margin: 16px 0 8px;
    }

    .legal-body p,
    .legal-body li,
    .legal-section p {
        font-size: 14px;
        line-height: 18px;
    }
}
