/* Shared style for terms / imprint / privacy pages */
* { box-sizing: border-box; }

.legal-back {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px 18px 12px;
    display: flex;
    justify-content: flex-end;
}
.legal-back-btn {
    background: rgba(70,130,0,0.10);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    color: rgba(70,130,0,1);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 18px;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.legal-back-btn:hover  { background: rgba(70,130,0,0.18); }
.legal-back-btn:active { background: rgba(70,130,0,0.28); }
html, body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #1a1a1a;
    font-family: -apple-system, 'SF Pro Display', 'Segoe UI', Roboto, 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-text-size-adjust: 100%;
}
.legal-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 22px 80px;
}
.legal-header {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 14px;
    margin-bottom: 24px;
}
.legal-brand {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(70,130,0,1);
    text-transform: uppercase;
    margin-bottom: 6px;
}
h1 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}
h2 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 28px 0 8px;
    letter-spacing: -0.005em;
}
h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 18px 0 6px;
}
p, li {
    color: rgba(0,0,0,0.78);
}
a {
    color: rgba(70,130,0,1);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
ul, ol {
    padding-left: 22px;
}
.legal-meta {
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(0,0,0,0.45);
}
.legal-footer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.8rem;
    color: rgba(0,0,0,0.45);
}
.legal-footer a {
    color: rgba(0,0,0,0.55);
    text-decoration: none;
    margin-right: 14px;
}
.legal-footer a:hover { text-decoration: underline; }
