
:root{
  --bg:#2F4A3A;
  --fg:#0a0f14;
  --brand:#F28C28;
  --text:#2F4A3A;
  --muted:#6b8f7f;
  --surface:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans','Apple Color Emoji','Segoe UI Emoji';
  color:var(--text);
  background:#f6f8fb;
  line-height:1.6;
}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
header{
  position:sticky;top:0;z-index:50;
  background:var(--surface);border-bottom:1px solid #e8eef6
}
nav{display:flex;align-items:center;justify-content:space-between;height:64px}
nav a.logo{text-decoration:none;color:var(--bg);letter-spacing:.3px}
.menu a{margin-left:18px;text-decoration:none;color:#223; font-weight:600}
.menu a.cta{padding:10px 14px;border-radius:12px;background:var(--brand);color:white}
.hero{
  background:linear-gradient(180deg,#eaf3ff,transparent);
  padding:72px 0 36px;
}
.hero h1{font-size:clamp(28px,4vw,44px);margin:0 0 10px}
.hero p{max-width:720px;color:#334; font-size:clamp(16px,2.2vw,18px)}
.hero .cta-row{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.btn{display:inline-block;padding:12px 16px;border-radius:12px;text-decoration:none;font-weight:700}
.btn.primary{background:var(--brand);color:white}
.btn.ghost{border:1px solid #cfe3ff;color:#0b3b7a;background:white}
.grid{display:grid;gap:18px}
.grid.features{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin:28px 0}
.card{background:var(--surface);border:1px solid #e8eef6;border-radius:18px;padding:18px;box-shadow:0 1px 0 rgba(0,0,0,.02)}
.card h3{margin-top:4px}
section{padding:36px 0}
section h2{font-size:clamp(22px,3vw,28px);margin-bottom:6px}
.lead{color:#334}
.badge{display:inline-block;background:#eef6ff;color:#0b3b7a;padding:6px 10px;border-radius:999px;font-weight:700;font-size:12px}
footer{margin-top:36px;background:var(--bg);color:#e7f1ff}
footer a{color:#ffffff !important;text-decoration:none}
.footer-grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));padding:28px 0}
.small{font-size:14px;color:#e6f0e8}
ul.clean{padding-left:18px;margin:8px 0}
.figure{display:flex;gap:18px;align-items:center}
.figure img{max-width:176px;max-height:176px;width:auto;height:auto;border-radius:14px;object-fit:contain;border:1px solid #e8eef6;background:#fff}
.notice{padding:14px;border:1px dashed #cfe3ff;border-radius:12px;background:#f8fbff}
.kontakt-form{display:grid;gap:12px;max-width:640px}
.kontakt-form input,.kontakt-form textarea{width:100%;padding:12px 12px;border:1px solid #d9e3ef;border-radius:12px;background:white}
.kontakt-form button{border:0;background:var(--brand);color:white;font-weight:800;padding:12px 16px;border-radius:12px}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid #e8eef6;text-align:left}
.legal h1{margin-top:0}


/* Logo image styling */
nav a.logo{display:flex;align-items:center;gap:10px}
.logo-img{height:48px; width:auto; display:block}


/* Brand color adjustments */
.badge{background: #fff7e0; color: #8a5b00; border:1px solid #ffe199}
.btn.primary{background: var(--brand);}
.btn.ghost{border-color:#ffd27a;color:#7a4b00}
.hero{background: linear-gradient(180deg,#fff6e5,transparent);}
a{color:#2F4A3A;text-decoration:none}
footer{background: var(--bg);}
.card h3 svg, h2 svg {flex-shrink:0}

h1,h2,h3,h4,h5,h6{color:#2F4A3A}

a:hover{opacity:.85}
.btn.primary{background:#F28C28}
.badge{background:#fff8e1;color:#6c4a00;border:1px solid #ffe199}
.hero{background:linear-gradient(180deg,#fff7e2,transparent);}
.menu a{margin-left:14px}
.menu{display:flex;flex-wrap:wrap;gap:10px}

footer, footer *{color:#ffffff !important}


@media (min-width: 1200px){
  .grid.features{grid-template-columns: repeat(5, 1fr);}
}

