:root {
    --orange: #FF9F43;
    --orange-light: #FFB76B;
    --yellow: #F6E165;
    --gradient: linear-gradient(135deg, #FF9F43 0%, #FFB76B 50%, #F6E165 100%);
    --black: #0f0f0f;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: rgba(0,0,0,0.06);
    --border-light: rgba(255,255,255,0.1);
    --bg: #ffffff;
    --bg2: #fafafa;
    --bg3: #f5f5f5;
    --bg-dark: #0f0f0f;
    --font-display: 'Urbanist', sans-serif;
    --font-body: 'Urbanist', sans-serif;
    --radius: 16px;
    --radius-full: 100px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
nav {
    max-width: 1200px; margin: 0 auto;
    padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { color: var(--black); text-decoration: none; }
.logo svg { display: block; }
footer .logo { color: #fff; }
.back-link {
    font-family: var(--font-display);
    font-size: 14px; font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.back-link:hover { color: var(--orange); }

/* Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}
.legal-content h1 {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.2;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    color: var(--black);
    margin-top: 36px; margin-bottom: 12px;
}
.legal-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-content a {
    color: var(--orange);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}
.legal-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 40px 30px;
}
.footer-container {
    max-width: 1200px; margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}
.footer-brand .logo svg { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.footer-column-title {
    font-family: var(--font-display);
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 16px; color: #fff;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-light); font-size: 14px;
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-eu-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.eu-nrw-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; flex-wrap: wrap; gap: 16px;
}
.footer-copyright { font-size: 13px; color: var(--text-light); }

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-eu-logo { grid-column: span 2; }
}
@media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .legal-content { padding: 120px 20px 60px; }
    .legal-content h1 { font-size: 28px; }
    footer { padding: 40px 20px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-eu-logo { grid-column: auto; }
}