/* =======================
   RESET & BOX SIZING
======================== */
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, main, 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;
}
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; height: auto; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ========================================
   BRAND COLORS (CREATIVE ARTISTIC)
   -- Added more vibrant accent + palette
========================================= */
:root {
  --color-primary: #22543D;
  --color-primary-rgb: 34,84,61;
  --color-secondary: #D8E3DB;
  --color-accent: #328169;
  --color-yellow: #FFD600;
  --color-magenta: #DC267F;
  --color-blue: #306EE8;
  --color-white: #FFFFFF;
  --color-black: #1C1C1C;
  --color-grey: #F6F6F4;
  --color-grey-dark: #4C5448;

  --shadow-card: 0 6px 24px rgba(34, 84, 61, 0.12);
  --shadow-light: 0 2px 6px rgba(34,84,61,0.08);
  --radius-card: 22px;
  --radius-section: 36px;
}

/* ========================================
   TYPOGRAPHY
   Artistic and Creative Visual Hierarchy
========================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900|Roboto:400,500,700&display=swap');

html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-black);
  background: var(--color-grey);
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
h1, .hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-magenta);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 6px;
}
p, ul, li, span, a, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

/* Artistic headline pattern for hero */
.hero-section h1 {
  font-size: 2.8rem;
  background-image: linear-gradient(90deg, var(--color-magenta), var(--color-accent), var(--color-yellow), var(--color-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  animation: hue-gradient 14s linear infinite;
}
@keyframes hue-gradient {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
.section h2 {
  position: relative;
  padding-bottom: 6px;
}
.section h2:after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--color-yellow);
  border-radius: 3px;
  margin-top: 6px;
}

/* Link appearance */
a {
  color: var(--color-accent);
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--color-magenta);
  text-decoration: underline;
}

/* ========================================
   CONTAINERS & SPACING
========================================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* For safety, use gaps on inner flex containers only */
}
.content-wrapper {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-section);
  background: var(--color-white);
  box-shadow: var(--shadow-light);
  position: relative;
}

/* ========================================
   HEADER & NAVIGATION
========================================= */
header {
  background: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  border-bottom: 4px solid var(--color-yellow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 30px;
  padding: 0 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: var(--color-magenta);
  color: var(--color-white);
}
header img {
  height: 45px;
  width: auto;
}
header .button.primary {
  margin-left: 16px;
}

/* MOBILE HEADER / BURGER */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 101;
  width: 52px;
  height: 52px;
  background: var(--color-magenta);
  color: var(--color-white);
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 3px 18px rgba(52, 129, 105, 0.22);
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-yellow);
  color: var(--color-black);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 84, 61, 0.97);
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.46s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-magenta);
  color: var(--color-white);
  font-size: 2rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  margin: 20px 20px 0 0;
  box-shadow: 0 2px 8px rgba(52,129,105,0.19);
  align-self: flex-end;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 14px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--color-white);
  padding: 15px 0 15px 18px;
  border-radius: 10px 0 0 10px;
  width: 90%;
  margin-bottom: 1px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover { background: var(--color-magenta); color: var(--color-yellow); }

@media (max-width: 1020px) {
  header nav { gap: 14px; }
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  header .button.primary { display: none; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 900px) {
  header .container {padding-right: 56px;}
}

/* ========================================
   HERO SECTION
========================================= */
.hero-section {
  background: linear-gradient(120deg, var(--color-secondary) 65%, var(--color-magenta) 110%);
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  box-shadow: 0 4px 28px rgba(50, 129, 105, 0.08);
  margin-bottom: 60px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  flex-direction: row;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 38px;
  gap: 22px;
}
.hero-section .content-wrapper {
  gap: 20px;
  max-width: 680px;
}

/* ========================================
   BUTTONS
========================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 26px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.16s;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(34,84,61,0.10);
  border: none;
  outline: none;
}
.button.primary {
  background: var(--color-magenta);
  color: var(--color-white);
  box-shadow: 0 2px 16px rgba(220,38,127,0.1);
}
.button.primary:hover, .button.primary:focus {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-2px) scale(1.028);
  box-shadow: 0 5px 18px rgba(244,205,0,0.17);
}
.button.secondary {
  background: var(--color-yellow);
  color: var(--color-primary);
  box-shadow: 0 2px 14px rgba(50,129,105,0.06);
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

.button:active { transform: scale(0.965); }

/* ========================================
   FLEX / LAYOUTS—MANDATORY CLASSES
========================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 24px 26px 20px 26px;
  transition: box-shadow 0.17s, transform 0.15s;
  min-width: 270px;
  max-width: 100%;
}
.card:hover {
  box-shadow: 0 10px 34px rgba(34,84,61,0.18);
  transform: translateY(-3px) scale(1.017);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 18px;
  background: var(--color-grey);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px rgba(34,84,61,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features grid, technology grid, team bios etc. Artistic cards */
.features-grid, .technology-grid, .solution-highlights, .team-bios, .value-grid, .blog-list, .news-list, .faq-list, .blog-news-highlights, .contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div, .technology-grid > div, .solution-highlights > div, .team-bios > div, .value-grid > div, .blog-list > article, .news-list > article, .faq-list > div, .blog-news-highlights > div, .contact-info-list > div {
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  padding: 20px 20px 18px 20px;
  box-shadow: var(--shadow-light);
  min-width: 270px;
  flex: 1;
  position: relative;
  margin-bottom: 18px;
  border-left: 7px solid var(--color-accent);
  transition: box-shadow 0.19s, border-color 0.18s;
}
.features-grid > div:hover, .technology-grid > div:hover, .solution-highlights > div:hover, .value-grid > div:hover, .blog-list > article:hover, .faq-list > div:hover, .blog-news-highlights > div:hover {
  box-shadow: 0 6px 23px rgba(50,129,105,0.11);
  border-left: 7px solid var(--color-magenta);
  background: var(--color-white);
}
.value-grid img, .features-grid img, .technology-grid img {
  height: 50px;
  width: 50px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 16px rgba(50,129,105,0.13));
}

/* Overviews, Editor Pick, Info Sections */
.technology-overview, .editor-pick {
  background: var(--color-yellow);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 18px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(220,38,127,0.07);
  color: var(--color-primary);
}
.technology-overview h4, .editor-pick h4 {
  color: var(--color-accent);
  margin-bottom: 6px;
}

/* FAQ + Blog-News Highlights */
.faq-list > div, .blog-news-highlights > div {
  flex: 1 0 270px;
}

/* Contact Info Cards */
.contact-info-list > div {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-grey);
  border-left: 6px solid var(--color-blue);
  border-radius: var(--radius-card);
  margin-bottom: 10px;
  padding: 18px 16px;
  font-weight: 500;
  font-size: 1.1rem;
}
.contact-info-list img { width: 30px; height: 30px; opacity: 0.86; }

/* Policy sections (Datenschutz/GDPR) */
.policy {
  border-radius: var(--radius-section);
  background: var(--color-white);
  margin-bottom: 60px;
  box-shadow: 0 6px 24px rgba(34, 84, 61, 0.08);
  padding: 44px 22px 40px 22px;
}
.policy h1 {
  color: var(--color-magenta);
  background: none;
}
.policy h2 {
  color: var(--color-primary);
  margin-top: 34px;
}
.policy ul { margin: 16px 0 20px 24px; list-style: disc; }
.policy li {font-size: 1rem; margin-bottom:6px;}

/* Thank you page section */
.thank-you-section {
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--color-secondary) 75%, var(--color-magenta) 170%);
}

/* ========================================
   FOOTER
========================================= */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  padding-top: 25px;
  box-shadow: 0 -4px 24px rgba(50, 129, 105, 0.06);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 25px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s, letter-spacing 0.13s;
}
footer nav a:hover {
  color: var(--color-yellow);
  letter-spacing: 0.04em;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  align-items: flex-end;
}
.footer-contact img { width: 24px; height: 24px; margin-right:9px; opacity: 0.8; vertical-align: middle; }
.footer-contact div { display: flex; align-items: center; gap: 7px; color: var(--color-white); }

/* ========================== RESPONSIVE STYLE ========================== */
@media (max-width: 900px) {
  .container { max-width: 99vw; padding: 0 13px; }
  .footer-contact { align-items: flex-start; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero-section .container { flex-direction: column; align-items: flex-start; }
  .hero-section { padding-bottom: 10px; }
  .content-wrapper { padding: 22px 0; }
  .footer-contact { gap: 6px; }
  footer .container { gap: 10px; flex-direction: column; }
  .section, .policy { padding: 22px 8px; }
  .features-grid, .technology-grid, .solution-highlights, .team-bios, .value-grid, .blog-list, .news-list, .faq-list, .blog-news-highlights, .contact-info-list {
    flex-direction: column;
    gap: 17px;
  }
  .features-grid > div, .technology-grid > div, .solution-highlights > div, .team-bios > div, .value-grid > div, .blog-list > article, .news-list > article, .faq-list > div, .blog-news-highlights > div, .contact-info-list > div {
    min-width: unset;
  }
  .thank-you-section { min-height: 40vh; }
}
@media (max-width: 481px) {
  .hero-section h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
  .section { margin-bottom: 36px; }
}

/* ============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--color-white);
  border-top: 5px solid var(--color-magenta);
  box-shadow: 0 -8px 32px rgba(34,84,61,0.09);
  padding: 18px 13px 15px 13px;
  animation: cookie-slideup 0.5s ease 0s 1;
}
@keyframes cookie-slideup { from { transform: translateY(120%); opacity:0; } to { transform: translateY(0); opacity:1; } }
.cookie-banner__text {
  font-size: 1rem;
  color: var(--color-black);
  text-align: center;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 19px;
}
.cookie-banner__button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 23px;
  min-width: 98px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: 0 1px 9px rgba(50,129,105,0.06);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: var(--color-blue);
  color: var(--color-yellow);
}
.cookie-banner__button.reject {
  background: var(--color-magenta);
  color: var(--color-white);
}
.cookie-banner__button.reject:hover {
  background: var(--color-primary);
  color: var(--color-yellow);
}
.cookie-banner__button.settings {
  background: var(--color-yellow);
  color: var(--color-black);
}
.cookie-banner__button.settings:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
@media (max-width: 600px) {
  .cookie-banner__buttons { flex-direction: column; gap: 10px; }
}

/* ============ Cookie Modal ============ */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 10000;
  background: rgba(34,84,61,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.27s cubic-bezier(.57,1.3,.38,1);
}
@keyframes modal-fadein { from { opacity:0; } to { opacity:1; } }
.cookie-modal {
  min-width: 340px;
  max-width: 90vw;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 42px rgba(32,84,61,0.11);
  padding: 26px 21px 14px 21px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0 12px;
  position: relative;
  animation: modal-slidein 0.34s cubic-bezier(.7,1.2,.4,1);
}
@keyframes modal-slidein { from { transform: translateY(44vh) scale(0.95); opacity:0; } to { transform: translateY(0) scale(1); opacity:1; } }
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom:3px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px;
  right: 12px;
  background: var(--color-magenta);
  color: var(--color-white);
  font-size: 1.6rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(34,84,61,0.12);
  transition: background 0.18s;
  z-index: 1;
}
.cookie-modal__close:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--color-secondary);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(50,129,105,0.04);
}
.cookie-category.essential {
  background: var(--color-yellow);
  opacity:1;
}
.cookie-category__label {
  flex-grow: 1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category__switch {
  pointer-events: auto;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 22px;
  height: 22px;
}
.cookie-category input[disabled] {
  opacity: 0.55;
}
.cookie-modal__actions {
  display: flex;
  gap: 19px;
  margin-top: 18px;
}
.cookie-modal__btn {
  font-family:'Montserrat',Arial,sans-serif;font-weight:700;font-size:1rem;
  padding: 8px 23px;
  border-radius: 14px;
  border: none;
  background: var(--color-accent);
  color: var(--color-white);
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(50,129,105,0.06);
  transition: background 0.17s;color 0.16s;
}
.cookie-modal__btn.reject {
  background: var(--color-magenta); color: var(--color-white);
}
.cookie-modal__btn.save {
  background: var(--color-yellow); color: var(--color-black);
}
.cookie-modal__btn.save:hover {
  background: var(--color-accent); color:var(--color-white);}

@media (max-width:769px) {
  .cookie-modal {
    min-width: unset;
    max-width: 98vw;
    padding: 14px 7px 9px 13px;
  }
  .cookie-modal__categories { gap: 7px; }
  .cookie-modal__actions { gap: 10px; }
}

/* ===================
   INTERACTIONS
==================== */
.card, .button, .policy, .section, .features-grid > div, .technology-grid > div, .solution-highlights > div, .team-bios > div, .value-grid > div, .blog-list > article, .news-list > article, .faq-list > div, .blog-news-highlights > div, .contact-info-list > div {
  transition: box-shadow 0.17s, border-color 0.18s, background 0.16s, transform 0.12s;
}

.card:hover, .features-grid > div:hover, .technology-grid > div:hover, .solution-highlights > div:hover,
.team-bios > div:hover, .value-grid > div:hover, .blog-list > article:hover, .news-list > article:hover,
.faq-list > div:hover, .blog-news-highlights > div:hover, .contact-info-list > div:hover {
  box-shadow: 0 6px 20px rgba(220,38,127,0.08), 0 9px 30px rgba(50,129,105,0.10);
  transform: translateY(-2px) scale(1.012);
}

.button:focus, .cookie-modal__btn:focus, .cookie-banner__button:focus {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

/* ========================
   VISUAL DETAILS
======================== */
.features-grid > div:after, .technology-grid > div:after, .team-bios > div:after {
  content: '';
  display: block;
  position: absolute;
  right: 16px; bottom: 16px;
  width: 33px; height: 33px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

/* ===============
   MISC UTILITIES
================== */
.mt-0 { margin-top:0!important; }
.mt-1 { margin-top:8px!important; }
.mt-2 { margin-top:16px!important; }
.mt-3 { margin-top:24px!important; }
.mb-1 { margin-bottom:8px!important; }
.mb-2 { margin-bottom:16px!important; }
.mb-3 { margin-bottom:24px!important; }

/* ======================
   ACCESSIBILITY
====================== */
:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }

/* ===============
   CUSTOM SCROLLBAR
================== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 6px;
}

/* ===============
   TESTIMONIALS / BLOG / NEWS
================== */
.testimonial-card {
  background: var(--color-white);
  color: var(--color-black);
  border-left: 5px solid var(--color-accent);
  margin-bottom: 20px;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
}

.blog-list > article h3,
.news-list > article h3 {
  color: var(--color-magenta);
  font-family:'Montserrat',Arial,sans-serif;
  font-weight:700;
}
.news-list > article .meta {
  font-size: 0.97rem;
  color: var(--color-primary);
  margin-top: 10px;
}

/* ===============
   PRINT OPTIMIZATION
================== */
@media print {
  .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important;}
  header, footer { box-shadow: none !important;}
  body, .section, .policy { background: #fff !important; color: #000 !important;}
}
