/* Eenvoudige styling + taalkeuzer */
:root {
  --accent: #1e73be;
  --muted: #666;
  --bg: #f7f9fb;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; background: var(--bg); color: #222; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 16px; }

header { background: white; border-bottom: 1px solid #e5e5e5; }
header .wrap { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; gap:12px; }
.brand { font-weight:700; color:var(--accent); text-decoration:none; font-size:1.25rem; }
nav a { margin-left:12px; color:#333; text-decoration:none; }

.lang-switcher { margin-left:12px; }
.lang-switcher .lang { margin-left:8px; text-decoration:none; color:#666; font-size:0.9rem; }
.lang-switcher .active { font-weight:700; color:var(--accent); }

footer { background:#222; color:#fff; padding:20px 0; margin-top:24px; }
.footer-grid { display:flex; gap:24px; justify-content:space-between; align-items:center; }

.container { max-width:1000px; margin:24px auto; padding:0 16px; }
.content-card { background:white; padding:16px; border-radius:8px; display:flex; gap:16px; align-items:center; margin-top:12px; }
.hero-img { width:160px; height:auto; }
.text h2 { margin:0 0 8px 0; }
.form-card { background:white; padding:16px; border-radius:8px; display:flex; flex-direction:column; gap:12px; max-width:400px; }
.form-card label { display:flex; flex-direction:column; font-size:0.95rem; color:var(--muted); }
.form-card input, .form-card select { padding:8px; border:1px solid #ddd; border-radius:4px; margin-top:6px; }
button { background:var(--accent); color:white; border:none; padding:10px 14px; border-radius:6px; cursor:pointer; }
.error { background:#ffe7e7; color:#900; padding:10px; border-radius:6px; margin-bottom:12px; }
.footer-logo { width:80px; }
@media (max-width:600px) {
  .content-card { flex-direction:column; text-align:center; }
  .footer-grid { flex-direction:column; align-items:flex-start; gap:12px; }
  header .wrap { flex-direction:column; align-items:flex-start; gap:8px; }
}