/* =========================================================
   DATENSCHUTZ — passt zum neuen Layout (Kontakt/Impressum)
   ========================================================= */

/* THEME */
:root{
  --bg: #f6f8f6;
  --card: #ffffff;

  --text: #1f2320;
  --muted: #4b544d;

  --green: #2F8F6B;
  --green-dark: #1E5F4A;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Container wie bei Kontakt */
.container{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  padding: 36px 0 18px;
  text-align: center;
}

.logo-pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
}

.brand-mark{
  color: var(--green);
  display: inline-flex;
}

.brand-text{
  display:flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.brand-top{
  font-weight: 800;
  letter-spacing: .2px;
  color:#1f2a35;
}
.brand-bottom{
  font-weight: 800;
  color: var(--green);
}

.main-nav{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a{
  text-decoration:none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.main-nav a:hover{
  color: var(--text);
  background: rgba(47,143,107,.10);
}

/* =========================================================
   HEADLINE
   ========================================================= */
.page-head{
  text-align:center;
  margin: 36px 0 20px;
}

.page-head h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.3px;
}

.lead{
  margin:0;
  color: var(--muted);
}

/* =========================================================
   LEGAL CARD
   ========================================================= */
.legal-card{
  margin: 24px auto 70px;
  width: min(820px, 100%);

  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;

  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.legal-card h2{
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: .1px;
}

.legal-card p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-card ul{
  margin: 8px 0 14px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-card a{
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-card a:hover{
  text-decoration: underline;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  padding: 22px 0 28px;
  text-align: center;
  color: #666;
  border-top: 1px solid rgba(0,0,0,.07);
}

.footer-line{
  margin: 0 0 10px;
  font-size: 14px;
}

.footer-links{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.footer-links a:hover{
  color: var(--text);
  background: rgba(47,143,107,.10);
}

.footer-links a[aria-current="page"]{
  color: var(--green-dark);
  background: rgba(47,143,107,.16);
}

.dot{ color: rgba(0,0,0,.35); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 520px){
  .legal-card{
    padding: 16px;
    border-radius: 20px;
  }
}