:root{
  --green-700:#2f6b3f;
  --green-600:#3f7f52;   /* mittelgrün */
  --mint-100:#e7f3ea;
  --rose-50:#fff7fb;    /* sanfter Kosmetik-Touch */
  --text:#1c1f1d;
  --muted:#5a6a60;
  --border:#d9e6dd;
  --card:#fbfffc;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --radius:16px;
  --container:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, var(--rose-50), #fff 35%);
  line-height:1.6;
}

a{color:var(--green-700); text-decoration:none}
a:hover{text-decoration:none}

.container{width:min(var(--container), calc(100% - 2rem)); margin:0 auto}

.containerstart { /* 2 Spalten Inhalt */
  display: flex;
  flex-wrap: wrap;
  /*gap: 20px; /* Abstand zwischen den Divs */
}
.boxlinks {
  flex: 0 0 35%;
}  
.boxrechts {
  flex: 0 0 65%;
}  

@media (max-width:800px) {
  .boxlinks,
  .boxrechts {
    flex: 0 0 100%;
  }
}


.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:1rem; top:1rem; width:auto; height:auto; padding:.6rem .9rem;
  background:#000; color:#fff; border-radius:12px; z-index:9999;
}

/* HEADER */
.site-header{
  background:linear-gradient(135deg, var(--green-700), var(--green-600));
  color:#fff;
  padding:1.1rem 0;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.brand-link{color:#fff; display:flex; flex-direction:column; gap:.15rem; text-decoration:none}
.brand-name{font-weight:250; letter-spacing:.2px; font-size:2.35rem}
.brand-tagline{opacity:.9; font-size:1.65rem}

/* NAV */
.site-nav{background:var(--mint-100); border-bottom:1px solid var(--border)}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.6rem 0}
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:.55rem .85rem;
  border-radius:14px;
  font-weight:650;
}
.navmenu ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:.9rem; flex-wrap:wrap;
}
.navmenu a{display:inline-block; padding:.45rem .7rem; border-radius:14px}
.navmenu a:hover{background:#fff; text-decoration:none}

/* HERO / BREADCRUMBS */
.site-hero{padding:1rem 0 0}
.site-breadcrumbs{padding:.75rem 0; color:var(--muted)}

/* MAIN 2-COL */
.site-main{padding:1.25rem 0 2rem}
.grid-2col{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:1.25rem;
  align-items:start;
}
.content{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.25rem;
  box-shadow:var(--shadow);
}
.sidebar{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1rem;
  position:sticky;
  top:1rem;
}

/* Module Card style */
.moduletable.card,
.card .moduletable{
  border:1px solid var(--border);
  border-radius:16px;
  padding:.9rem;
  background:#fff;
  margin-bottom:1rem;
}

/* FOOTER */
.site-footer{
  background:#102316;
  color:#eaf4ed;
  padding:2rem 0 1.2rem;
  margin-top:1.5rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:1.25rem;
}
.footer-title{margin:0 0 .5rem; font-size:1rem; color:#cfe8d5}
.site-footer a{color:#cfe8d5}
.site-footer a:hover{color:#fff}
.footer-bottom{
  margin-top:1.2rem; padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.78);
}

/* CONSENT MODAL */
.consent-overlay{
  position:fixed; inset:0;
  display:grid; place-items:center;
  background:rgba(0,0,0,.55);
  padding:1rem;
  z-index:99999;
}
.consent-modal{
  width:min(560px, 100%);
  background:#fff;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  padding:1.2rem 1.2rem 1rem;
  border:1px solid var(--border);
}
.consent-modal h2{margin:.2rem 0 .6rem; font-size:1.2rem}
.consent-text{color:var(--text); margin:0 0 .8rem}
.consent-links{margin:0 0 1rem}
.consent-actions{display:flex; gap:.7rem; justify-content:flex-end; flex-wrap:wrap}
.consent-actions button{
  border-radius:14px;
  padding:.65rem 1rem;
  font-weight:700;
  border:1px solid var(--border);
  cursor:pointer;
}
.btn-decline{background:#f4f6f5}
.btn-accept{
  background:linear-gradient(135deg, var(--green-700), var(--green-600));
  border-color:transparent;
  color:#fff;
}
.btn-accept:hover{filter:brightness(1.03)}

/* RESPONSIVE */
@media (max-width: 980px){
  .grid-2col{grid-template-columns:1fr}
  .sidebar{position:static}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav-toggle{display:inline-flex; align-items:center}
  .navmenu{display:none; width:100%}
  .navmenu.open{display:block}
  .navmenu ul{flex-direction:column; align-items:stretch}
  .navmenu a{background:#fff}
}