* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FAFAFA;
    color: #1C1C1E;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
.legal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(34, 23, 35, 0.06);
    color: #221723;
    text-decoration: none;
    transition: background 0.15s ease;
}

.back-link:active {
    background: rgba(34, 23, 35, 0.12);
}

.legal-logo {
    height: 22px;
    width: auto;
}

/* MAIN CONTAINER */
.legal-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

.legal-container h1 {
    font-size: 26px;
    font-weight: 700;
    color: #221723;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.legal-updated {
    font-size: 13px;
    color: #6E6E73;
    margin-bottom: 32px;
}

/* SECTIONS */
.legal-container section {
    margin-bottom: 28px;
}

.legal-container h2 {
    font-size: 17px;
    font-weight: 600;
    color: #221723;
    margin-bottom: 10px;
    padding-top: 8px;
}

.legal-container h3 {
    font-size: 15px;
    font-weight: 600;
    color: #3A3A3C;
    margin-top: 14px;
    margin-bottom: 8px;
}

.legal-container p {
    font-size: 14px;
    color: #3A3A3C;
    margin-bottom: 10px;
    line-height: 1.65;
}

.legal-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.legal-container ul li {
    position: relative;
    font-size: 14px;
    color: #3A3A3C;
    line-height: 1.65;
    padding-left: 18px;
    margin-bottom: 6px;
}

.legal-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #221723;
    opacity: 0.3;
}

.legal-container ul.contact-list li::before {
    display: none;
}

.legal-container ul.contact-list li {
    padding-left: 0;
}

.legal-container a {
    color: #221723;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(34, 23, 35, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.15s ease;
}

.legal-container a:hover {
    text-decoration-color: #221723;
}

.legal-container strong {
    font-weight: 600;
    color: #1C1C1E;
}

/* FOOTER */
.legal-footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 20px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    color: #6E6E73;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-footer a {
    color: #221723;
    font-weight: 600;
    text-decoration: none;
}

.footer-sep {
    opacity: 0.4;
}
