/* =========================================
   ADATVÉDELEM CSS (Premium SaaS Stílus)
   ========================================= */
:root {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --border: #334155;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-main); color: var(--text-main); line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* Fejléc */
.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }
.last-updated { font-size: 13px; color: var(--text-muted); }

/* Fő elrendezés (Grid) */
.legal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
    align-items: start; /* Fontos a ragadós oldalsávhoz! */
}

/* Oldalsáv (Tartalomjegyzék) */
.legal-sidebar {
    position: sticky;
    top: 120px; /* Görgetésnél itt áll meg a képernyőn */
}
.toc-title { font-size: 12px; text-transform: uppercase; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 20px; }
#toc ul { list-style: none; display: flex; flex-direction: column; gap: 15px; border-left: 2px solid var(--border); padding-left: 15px; }
.toc-link { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; display: block; position: relative; }

/* Aktív menüpont stílusa (amit épp olvas) */
.toc-link:hover { color: var(--text-main); }
.toc-link.active { color: var(--primary); font-weight: 600; }
.toc-link.active::before {
    content: ''; position: absolute; left: -17px; top: 50%; transform: translateY(-50%);
    height: 100%; width: 2px; background-color: var(--primary);
}

/* Jogi tartalom */
.legal-content h1 { font-size: 36px; margin-bottom: 20px; color: #ffffff; letter-spacing: -0.5px; }
.intro { font-size: 18px; color: var(--text-muted); margin-bottom: 60px; }
section { margin-bottom: 50px; scroll-margin-top: 100px; /* Hogy a horgony linkek ne csússzanak a fejléc alá */ }
.legal-content h2 { font-size: 22px; margin-bottom: 20px; color: var(--primary); border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.legal-content p { margin-bottom: 15px; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; color: var(--text-muted); }
.legal-content li { margin-bottom: 10px; }
.legal-content a { color: var(--primary); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* Mobilos nézet */
@media (max-width: 850px) {
    .legal-container { grid-template-columns: 1fr; gap: 40px; margin: 40px auto; }
    .legal-sidebar { position: relative; top: 0; display: none; /* Mobilon elrejtjük a zavaró oldalsávot */ }
}