/* =========================================================
   HEADER
========================================================= */

.legal-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.legal-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.legal-header .legal-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.legal-header nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.legal-header nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.legal-header nav a:hover {
    color: #111827;
}


/* =========================================================
   PAGE
========================================================= */

.legal-page {
    min-height: calc(100vh - 72px);
    padding: 70px 0;
}

.legal-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 55px 65px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.page-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.legal-card h1 {
    margin-bottom: 25px;
    color: #111827;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.legal-card h2 {
    margin-top: 38px;
    margin-bottom: 12px;
    color: #111827;
    font-size: 22px;
    line-height: 1.4;
}

.legal-card p {
    margin-bottom: 17px;
    color: #4b5563;
    font-size: 16px;
}

.legal-card .intro {
    margin-bottom: 32px;
    color: #374151;
    font-size: 18px;
    line-height: 1.8;
}

.legal-card ul {
    margin: 10px 0 20px 25px;
    color: #4b5563;
}

.legal-card li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.legal-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.legal-card a:hover {
    text-decoration: underline;
}

.updated {
    margin-top: 45px !important;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280 !important;
    font-size: 14px !important;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    margin-top: 0;
    padding: 32px 20px;
    background: #0f172a;
    color: #94a3b8;
}

.site-footer .legal-container {
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-bottom: 22px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 20px;
    background: #1e293b;
}

.site-footer p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .legal-header .legal-container {
        min-height: 65px;
    }

    .legal-header nav {
        gap: 15px;
    }

    .legal-header nav a {
        font-size: 13px;
    }

    .legal-page {
        padding: 40px 0;
    }

    .legal-card {
        padding: 40px 30px;
        border-radius: 14px;
    }

    .legal-card h1 {
        font-size: 34px;
    }

    .legal-card h2 {
        font-size: 20px;
    }

    .legal-card p {
        font-size: 15px;
    }

    .legal-card .intro {
        font-size: 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .legal-header {
        position: relative;
    }

    .legal-header .legal-container {
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        gap: 14px;
    }

    .brand {
        font-size: 22px;
    }

    .legal-header nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .legal-header nav a {
        font-size: 12px;
    }

    .legal-page {
        padding: 25px 0;
    }

    .legal-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .legal-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .legal-card h1 {
        font-size: 29px;
        letter-spacing: -0.5px;
    }

    .legal-card h2 {
        margin-top: 30px;
        font-size: 19px;
    }

    .legal-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .legal-card .intro {
        font-size: 15px;
    }

    .legal-card ul {
        padding-left: 8px;
        margin-left: 15px;
    }

    .footer-links {
        gap: 12px 16px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .site-footer p {
        font-size: 12px;
    }
}