/* Footer: legal links + GEO switcher, and legal pages (privacy / terms) */

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-top: 18px;
}

.footer__legal a {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #1c3240;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer__legal a:hover {
    color: #f97740;
}

.footer__geo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.footer__geo-label {
    margin-right: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #222d53;
}

.footer__geo a {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: #1c3240;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(28, 50, 64, 0.25);
    border-radius: 999px;
    transition: border-color 0.2s, color 0.2s;
}

.footer__geo a:hover {
    color: #f97740;
    border-color: #f97740;
}

.footer__geo a[aria-current="page"] {
    color: #fff;
    background: #1c3240;
    border-color: #1c3240;
    pointer-events: none;
}

.footer__copy {
    margin-top: 16px;
}

/* ---------- legal pages ---------- */

.legal-header {
    padding: 18px 0;
    background: linear-gradient(90deg, #cae9e8 0.44%, #defefd 50.4%, #cae9e8 99.4%);
}

.legal-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal-logo {
    font-family: "Raleway", "Inter", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1c3240;
    text-decoration: none;
}

.legal-back {
    font-size: 14px;
    font-weight: 500;
    color: #1c3240;
    text-decoration: none;
}

.legal-back:hover {
    color: #f97740;
}

.legal {
    padding: 44px 0 64px;
}

.legal__wrap {
    max-width: 820px;
    margin: 0 auto;
}

.legal h1 {
    margin-bottom: 8px;
    font-family: "Raleway", "Inter", Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #1c3240;
}

.legal h2 {
    margin: 34px 0 12px;
    font-family: "Raleway", "Inter", Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    color: #1c3240;
}

.legal p,
.legal li {
    font-size: 15px;
    line-height: 1.65;
    color: #33454f;
}

.legal p {
    margin-bottom: 14px;
}

.legal ul,
.legal ol {
    margin: 0 0 14px 22px;
    padding: 0;
}

.legal ul {
    list-style: disc;
}

.legal ol {
    list-style: decimal;
}

.legal li {
    margin-bottom: 6px;
}

.legal a {
    color: #f97740;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal__updated {
    margin-bottom: 26px;
    font-size: 13px;
    color: #6b7c86;
}

.legal__box {
    margin: 16px 0;
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: #33454f;
    background: #fff;
    border: 1px solid rgba(28, 50, 64, 0.15);
    border-radius: 14px;
}

.legal__note {
    margin-top: 30px;
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.5;
    color: #7a3d24;
    background: #fdebe3;
    border-radius: 12px;
}

@media (max-width: 600px) {
    .legal h1 {
        font-size: 27px;
    }

    .legal h2 {
        font-size: 19px;
    }
}
