/* =====================
   CSS RESET & NORMALIZE
====================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  font-size:100%;
  font:inherit;
  vertical-align:baseline;
  box-sizing:border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display:block;
}
body {
  line-height:1.6;
  background: #fff;
  color: #253348;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  background:transparent;
  color: #253348;
  text-decoration:none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #809DCE;
  text-decoration:underline;
}
img {
  max-width: 100%;
  display:block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button, [type="button"], [type="submit"] {
  cursor: pointer;
  background: none;
  border: none;
}

/* =====================
     BRAND VARIABLES
====================== */
:root {
  --color-primary: #253348;
  --color-secondary: #809DCE;
  --color-accent: #E2F0FF;
  --color-bg: #fff;
  --color-bg-light: #F7FAFC;
  --color-text: #253348;
  --color-text-secondary: #5A6A87;
  --color-border: #E7EAF0;
  --color-shadow: rgba(37, 51, 72, 0.06);
}

/* ==============
   TYPOGRAPHY
================ */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
}
h1,h2,h3,h4,h5,.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.text-section h3 {
  margin-top: 32px;
}
h4 {font-size: 1.1rem;}
h5{font-size:1rem;}
h6{font-size:0.875rem;}
p, ul li, ol li, dl, dt, dd, a {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
strong, b {
  color: var(--color-primary);
}
.text-section ul, .text-section ol {
  margin-left: 1.5em;
  margin-bottom: 24px;
  list-style: disc inside;
}
.text-section ul li {
  margin-bottom: 8px;
}
.text-section a {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 500;
}
.text-section a:hover {
  color: var(--color-primary);
}

/* ===============
   GENERAL LAYOUT
================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 2px 24px var(--color-shadow);
  transition: box-shadow .2s;
}
main section:last-child, .section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  max-width: 650px;
}

@media (max-width: 768px) {
  .section, main section {
    padding: 28px 10px;
    margin-bottom: 36px;
    border-radius: 0;
    box-shadow: 0 1px 8px var(--color-shadow);
  }
}

/* ==================
    HEADER & NAV
=================== */
header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position:sticky;top:0;z-index:40;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
header a img {
  height: 38px;
  margin-right: 20px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.2s;
  position: absolute;
  left:0;bottom:-3px;
}
header nav a:hover,
header nav a.active {
  color: var(--color-secondary);
}
header nav a:hover:after,
header nav a.active:after {
  width: 100%;
}

.cta-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 12px 38px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.2s, letter-spacing 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff !important;
  letter-spacing:0.06em;
  box-shadow: 0 6px 16px -2px var(--color-shadow);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  background: transparent;
  border: none;
  padding: 0 10px;
  margin-left: 16px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  header nav {
    gap: 14px;
  }
  .cta-btn {padding: 12px 24px;}
}
@media (max-width: 920px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================
   MOBILE MENU STYLES
==================== */
.mobile-menu {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 51, 72, 0.88);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.91,.02,.72,.87);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 32px 0 0;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  z-index: 88;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  width: 100%;
  padding: 20px 28px;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  border-radius: 4px;
  transition: background 0.16s, color 0.19s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .mobile-menu {display:none !important;}
}

/* ================
   MAIN & SECTIONS
================== */
main {
  padding-top:40px;
  padding-bottom:40px;
}
@media(max-width: 768px) {
  main {padding-top: 14px; padding-bottom:24px;}
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 2px 24px var(--color-shadow);
  transition: box-shadow .2s;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .16s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px var(--color-shadow);
  transform: translateY(-3px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.features-list li {
  background: var(--color-bg-light);
  border-radius: 14px;
  box-shadow: 0 2px 6px var(--color-shadow);
  flex:1 1 210px;
  min-width: 210px;
  max-width: 300px;
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow .19s, background 0.16s;
}
.features-list li:hover {
  box-shadow: 0 8px 30px 0 var(--color-shadow);
  background: var(--color-accent);
}
.features-list img {
  width:40px;height:40px;margin-bottom:0;
}
.features-list h3 {
  font-size:1.1rem; margin-bottom:6px; margin-top:0;
}
.features-list p {font-size: 0.98rem; margin:0; color: var(--color-text-secondary);}

/* ==============
   CARDS & GRIDS
=============== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: var(--color-bg-light);
  padding: 24px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s, background .15s;
}
.blog-post:hover {
  background: var(--color-accent);
  box-shadow: 0 4px 22px 0 var(--color-shadow);
}
.blog-post h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.blog-post a {
  color: var(--color-secondary);
  font-weight: 600;
  margin-top: 10px;
}

.categories-filter {
  margin-top: 28px;
  font-size: 0.97rem;
  color: var(--color-text-secondary);
}
.categories-filter a {
  color: var(--color-secondary);
  font-weight: 500;
  padding: 0 2px;
  border-radius: 4px;
  transition: background .15s, color .13s;
}
.categories-filter a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.address-map {
  background: var(--color-accent);
  padding: 28px 17px;
  border-radius: 13px;
  margin-bottom:20px;
  box-shadow: 0 1px 6px var(--color-shadow);
}

/* ==============
    TABLES
=============== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 10px;
  box-shadow: 0 1px 10px var(--color-shadow);
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: var(--color-accent);
}
th, td {
  padding: 18px 14px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
th {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}
@media (max-width: 550px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
    text-align:left;
  }
  th, td{
    padding: 14px 8px;
  }
  thead{display:none;}
}

/* ==============
    ACCORDION/FAQ DL
=============== */
dl {margin-top: 12px; margin-bottom: 16px;}
dt {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight:700;
  margin-top: 16px;
  margin-bottom:8px;
  color: var(--color-primary);
  font-size:1.08rem;
}
dd {margin-left: .7em; margin-bottom: 10px; color: var(--color-text-secondary);}

/* ==============
   TESTIMONIALS
=============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-light);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--color-shadow);
  color: var(--color-primary);
  margin-bottom: 20px;
  max-width: 600px;
  transition: box-shadow .15s, background .15s;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-primary);
}
.testimonial-card span {
  color: var(--color-secondary);
  font-weight:500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 6px 20px 0 var(--color-shadow);
}

/* ================
   LEGAL/PRIVACY SECTIONS
================== */
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: var(--color-primary);
}
.legal-section {
  background:var(--color-bg);
  border-radius: 18px;
  padding: 32px 18px 28px 18px;
  box-shadow: 0 1px 12px var(--color-shadow);
  margin: 0 auto;
  max-width: 820px;
  color: var(--color-text-secondary);
}
.legal-section ul {
  margin:12px 0 18px 1.5em;
  list-style:disc inside;
}
.legal-section ul li {margin-bottom: 9px;}

/* ===================
      FOOTER
==================== */
footer {
  background: var(--color-bg);
  padding: 46px 0 20px 0;
  border-top: 1px solid var(--color-border);
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a img {height:36px;}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal {
  margin-top: 6px;
}
.footer-contact p, .footer-contact a {
  color: var(--color-text-secondary);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap:6px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
}
@media (max-width: 920px) {
  footer .content-wrapper {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 17px;
  }
}

/* =====================
   COOKIE CONSENT BANNER
======================= */
.cookie-banner {
  position: fixed;
  z-index: 200;
  bottom: 0;
  left:0;
  width: 100vw;
  background: var(--color-bg-light);
  color: var(--color-primary);
  box-shadow: 0 -2px 18px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 18px 26px 18px;
  gap: 26px;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(.92,.04,.71,.92), opacity .15s;
  transform: translateY(0);
  opacity:1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity:0;
  pointer-events:none;
}
.cookie-banner .cookie-message {
  flex: 1 1 0;
  margin-right: 20px;
}
.cookie-banner-buttons {
  display:self;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 3px var(--color-shadow);
  transition: background .17s, color .14s, box-shadow .16s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
  margin-right: 2px;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-primary);
  box-shadow: 0 2px 10px var(--color-shadow);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 10px;
  }
  .cookie-banner .cookie-message {
    margin-right:0;
  }
  .cookie-banner-buttons {gap: 8px;}
}

/* ========================
   COOKIE PREFERENCES MODAL
========================== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 210;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(37,51,72,0.32);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity:1;
  pointer-events: all;
  transition: opacity .28s;
}
.cookie-modal-overlay.hide {
  opacity:0;
  pointer-events:none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 378px;
  width: 94vw;
  padding: 30px 22px 22px 22px;
  box-shadow: 0 6px 32px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin: 0 0 10px 0;
  color: var(--color-primary);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index:2;
  transition: color 0.16s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--color-secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap:4px;
}
.cookie-category.header {
  padding-bottom:8px;
}
.cookie-category-row {
  display:flex;
  align-items:center;
  gap: 14px;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.cookie-toggle input {
  opacity:0;
  width:0; height:0;
  pointer-events:none;
}
.cookie-toggle-label {
  display: block;
  cursor: pointer;
  background: var(--color-border);
  border-radius: 24px;
  height: 100%;
  transition: background .19s;
}
.cookie-toggle-label:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s, box-shadow .15s;
  box-shadow: 0 1px 4px var(--color-shadow);
}
.cookie-toggle input:checked + .cookie-toggle-label {
  background: var(--color-secondary);
}
.cookie-toggle input:checked + .cookie-toggle-label:before {
  transform: translateX(20px);
  background: var(--color-accent);
}
.cookie-category-desc {
  font-size: 0.96rem;
  color: var(--color-text-secondary);
  margin-left: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 80px;
}
/* Essential cookies always ON style */
.cookie-category-essential .cookie-toggle-label {
  background: var(--color-secondary) !important;
}
.cookie-category-essential .cookie-toggle-label:before {
  background: var(--color-accent) !important;
}
.cookie-category-essential .cookie-toggle input {
  pointer-events: none !important;
}
.cookie-category-essential .cookie-toggle-label:after {
  content: '✔';
  position: absolute;
  right: -30px;
  top: 1px;
  color: var(--color-secondary);
  font-size: 1.09em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ==============
   UTILITIES
=============== */
.m-b-20 { margin-bottom: 20px; }
.m-b-32 { margin-bottom: 32px; }
.p-20 {padding: 20px;}

/* =============
   RESPONSIVE
============== */
@media (max-width: 1100px) {
  .container{max-width: 94vw;}
}
@media (max-width: 700px) {
  .container{max-width: 100vw;}
  h1 {
    font-size: 1.79rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.29rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .content-wrapper, .features-list, .post-grid, .content-grid {
    flex-direction: column;
    gap: 17px !important;
  }
  .testimonial-card {
    max-width: 100%;
    flex-direction: column;
    gap: 9px;
    padding: 16px 10px;
  }
}
@media (max-width: 470px) {
  main section, .section {
    padding: 14px 3px;
  }
  .card, .blog-post, .features-list li {
    padding: 14px 6px;
  }
}

/* MICRO-INTERACTIONS */
button, .cta-btn, .card, .features-list li, .testimonial-card, .blog-post, .cookie-btn {
  transition: background .22s, color .15s, box-shadow .16s, transform .17s;
}

/* HIDE visually */
.visually-hidden {
  position:absolute;
  left:-9999px;
  width:1px;height:1px;
  overflow:hidden;
}

/* ==============
   ACCORDION LIST
=============== */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.accordion-list > div {
  padding: 18px 16px;
  background: var(--color-bg-light);
  border-radius: 8px;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: box-shadow .16s, background .13s;
}
.accordion-list > div:hover {
  box-shadow: 0 6px 18px 0 var(--color-shadow);
  background: var(--color-accent);
}

/* FEATURE ITEM utility */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--color-bg-light);
  border-radius: 10px;
  padding: 16px 22px;
  box-shadow: 0 1px 8px var(--color-shadow);
}

/* SECURITY OVERVIEW (Features page) */
.security-overview {
  padding: 18px 14px;
  background: var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-overview ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.security-overview li {
  display:flex; align-items:center; gap:7px; font-size:.99rem;
}
.security-overview img {
  width:22px; height:22px;vertical-align:middle;
}

/* Forms (Kontakt page, simple style) */
form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 360px;
}
input, textarea {
  background: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: 7px;
  padding: 13px 11px;
  font-size: 1rem;
  color: var(--color-primary);
  transition: border .14s;
}
input:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}

/* Hide until JS shows them */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}
.cookie-banner.active {
  display: flex;
}
.cookie-modal-overlay.active {
  display: flex;
}
