/* ------------------------
   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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F0;
  color: #153A5B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* FONT FACE (assume loaded externally, but declare here for fallbacks) */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');

/* ------------------------
   VARIABLES (fallbacks)
------------------------- */
:root {
  --primary: #153A5B;
  --secondary: #A2BF8A;
  --accent: #F5F5F0;
  --neutral: #fff;
  --font-display: 'Merriweather', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --border-radius: 18px;
  --shadow:
    0 2px 8px rgba(21, 58, 91, 0.06),
    0 8px 32px rgba(21, 58, 91, 0.08);
  --section-padding: 40px 20px;
  --headline-size: 2.5rem;
  --headline-mobile: 1.8rem;
  --gradient: linear-gradient(90deg, #A2BF8A 0%, #153A5B 100%);
  --gradient-reverse: linear-gradient(90deg, #153A5B 0%, #A2BF8A 100%);
  --transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
  --gap: 20px;
  --hero-bg: linear-gradient(90deg, #A2BF8A 0%, #E0E9D8 100%);
  --button-shadow: 0 4px 16px rgba(21, 58, 91, 0.10);
}

/* ------------------------
   GENERAL CONTAINERS & LAYOUT
------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* gradient backgrounds for hero and important sections */
.hero,
.hero-blog,
.hero-contact {
  width: 100%;
  padding: 70px 20px 60px;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
}
.hero .container, .hero-blog .container, .hero-contact .container {
  position: relative;
}

.cta-contact {
  margin-bottom: 60px;
  padding: 50px 20px;
  background: var(--gradient-reverse);
  color: var(--neutral);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}
.cta-contact .cta-button {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--button-shadow);
}

.section:last-of-type {
  margin-bottom: 0;
}

/* -----------------------------
   TYPOGRAPHY & HEADINGS
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 4px;
}
p, ul, ol, li {
  font-family: var(--font-body);
  color: #26354A;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 0.7em;
}
strong {
  font-weight: 700;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: #153A5B;
  margin: 0 0 12px 0;
  line-height: 1.4;
  border-left: 4px solid #A2BF8A;
  padding-left: 18px;
}
footer {
  font-size: 0.98rem;
  color: #153A5B;
  font-family: var(--font-body);
}

ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
ul li {
  margin-bottom: 6px;
  list-style: disc inside;
}

/* -----------------------------
   BUTTONS
------------------------------ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--neutral);
  border: none;
  border-radius: 32px;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.09rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--button-shadow);
  margin-top: 16px;
  margin-bottom: 0;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
}

button,
.mobile-menu-close,
.mobile-menu-toggle {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.66em 1.1em;
  font-size: 1.4rem;
  color: var(--primary);
  border-radius: 50%;
  line-height: 1;
  transition: background 0.18s;
}
button:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}

/* ----------------------
   HEADER & NAVIGATION
------------------------*/
header {
  background: var(--neutral);
  padding: 0;
  box-shadow: 0 2px 12px rgba(21, 58, 91, 0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 20px 18px 20px;
  position: relative;
  z-index: 30;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--primary);
  padding: 8px 6px;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header .cta-button {
  margin: 0 0 0 24px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--button-shadow);
  z-index: 101;
}
/* ----------------------
   MOBILE MENU OVERLAY
------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 12px 56px rgba(21,58,91,0.14);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 20px 0 0;
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
}
.mobile-nav {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 30px 50px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.13rem;
  color: var(--primary);
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid #e1e6e7;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 12px;
  padding-left: 14px;
}

/* Hide nav for mobile, show burger */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta-button {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: 0 0 48px 0;
  }
}

/* --------------------------
   FOOTER
----------------------------*/
footer {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-body);
  padding: 0 0 0 0;
}
footer .container {
  padding: 40px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 24px;
}
.footer-top img {
  height: 36px;
  width: auto;
}
.footer-menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--accent);
  font-size: 1rem;
  transition: color .16s;
  opacity: 0.92;
}
.footer-menu a:hover {
  color: var(--secondary);
  opacity: 1;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.99rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #dbeaf7;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.85;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-social img:hover {
  opacity: 1;
}
.footer-legal {
  text-align: center;
  color: #c3dad6;
  font-size: 0.92rem;
  opacity: 0.84;
  padding: 10px 0 0 0;
}

/* ----------
   FLEXBOX
---------- */
.card-container, .content-grid, .feature-grid, .team-list, .service-highlights, .service-list, .article-list, .testimonial-slider, .testimonial-list, .service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #153A5B;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 20px rgba(21,58,91,0.09);
  padding: 20px 26px;
  min-width: 300px;
  max-width: 420px;
  margin-bottom: 20px;
}
.testimonial-card blockquote, .testimonial-card footer {
  color: #153A5B;
}
.testimonial-card .project-summary {
  font-size: 0.95rem;
  color: #34536A;
  margin-top: 8px;
  background: #F3F9F2;
  border-radius: 11px;
  padding: 6px 12px;
  font-family: var(--font-body);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  padding: 28px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Feature & Service Boxes */
.feature, .service {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(21,58,91,0.07);
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow .22s, transform .22s;
  margin-bottom: 20px;
  gap: 8px;
}
.feature img, .service img {
  height: 38px;
  width: 38px;
  margin-bottom: 13px;
  opacity: 0.92;
}
.feature:hover, .service:hover {
  box-shadow: 0 4px 24px rgba(21,58,91,0.12), 0 8px 32px rgba(162,191,138,0.10);
  transform: translateY(-7px) scale(1.025);
}
.team-member {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 24px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-member h3 {
  color: var(--primary);
  font-size: 1.1rem;
}
.team-member span {
  font-size: 0.98rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

/* ---------------
   BLOG CARDS
---------------- */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 18px;
  min-width: 225px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article:hover {
  box-shadow: 0 4px 24px rgba(21, 58, 91, 0.15);
  transform: translateY(-5px) scale(1.018);
}

/* Legal sections */
.legal-privacy, .legal-gdpr, .legal-cookie, .legal-terms {
  background: #F5F5F0;
  padding: 42px 20px 36px;
  min-height: 450px;
}
.legal-privacy h1, .legal-gdpr h1, .legal-cookie h1, .legal-terms h1 {
  margin-bottom: 28px;
  font-size: 2.1rem;
  color: var(--primary);
}
.legal-privacy h2, .legal-gdpr h2, .legal-cookie h2, .legal-terms h2 {
  font-size: 1.22rem;
  color: #26354A;
  margin-top: 26px;
  margin-bottom: 7px;
}

.confirmation {
  background: #DDE8D7;
  border-radius: var(--border-radius);
  margin: 70px 0 80px 0;
  padding: 44px 20px;
  min-height: 370px;
  box-shadow: var(--shadow);
}

/* Contact options in kontakt.html */
.contact-options ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0 0;
}
.contact-options img {
  height: 22px;
  width: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
.contact-info-block, .office-map, .office-address-block {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 20px 18px;
  margin-bottom: 20px;
}

/* Section Spacing Patterns */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------
   RESPONSIVE
--------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .section, section {
    padding: 32px 8px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    max-width: 100%;
    padding: 0 8px;
  }
  .content-wrapper, .feature-grid, .service-list, .service-highlights, .team-list, .testimonial-slider, .testimonial-list, .service-overview, .article-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .section, section {
    padding: 22px 4vw;
    margin-bottom: 50px;
  }
  .hero, .cta-contact, .hero-blog, .hero-contact {
    padding: 32px 9px 26px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 20px 12px;
    font-size: 1rem;
  }
  .feature, .service, .card, .team-member, .article {
    min-width: unset;
    flex: 1 1 100%;
    padding: 20px 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  html{
    font-size: 14px;
  }
  .hero,
  .cta-contact,
  .hero-blog,
  .hero-contact {
    padding: 19px 4px 16px;
  }
}

/* --------------
   HOVERS & INTERACTIONS
-----------------*/
.cta-button,
.feature,
.service,
.article,
.card {
  transition: box-shadow .22s, transform .22s, background .2s, color .2s;
}
.cta-button:active {
  transform: scale(0.97);
}

input,
textarea,
select {
  font-family: var(--font-body);
  border: 1px solid #c5d0df;
  border-radius: 7px;
  padding: 11px;
  font-size: 1rem;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(21,58,91,0.07);
  outline: none;
  width: 100%;
  max-width: 480px;
  transition: border-color 0.15s;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--secondary);
}

/* ------------
   COOKIE BANNER
-------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #153A5B;
  box-shadow: 0 -2px 24px rgba(21,58,91,0.07);
  border-top: 3px solid var(--secondary);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  transition: transform .32s cubic-bezier(.65,0,.35,1);
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .banner-text {
  flex: 1 1 340px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  border: none;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 1rem;
  margin-top: 0;
  box-shadow: 0 2px 12px rgba(21,58,91,0.08);
  transition: background .18s, color .18s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings-button {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings-button:hover, .cookie-banner .settings-button:focus {
  background: var(--primary);
  color: #fff;
}

/* --------------
 COOKIE CONSENT MODAL
------------------ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,58,91,0.32);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  max-width: 428px;
  width: 96%;
  box-shadow: 0 12px 64px rgba(21,58,91,0.14);
  padding: 32px 24px 22px 24px;
  animation: modalIn 0.32s cubic-bezier(.32,1.52,.34,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #26354A;
}
@keyframes modalIn {
  0% { transform: translateY(80px) scale(0.96); opacity: 0; }
  100% {transform: translateY(0px) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  padding: 11px 5px 8px 8px;
  border-radius: 10px;
  background: #F5F5F0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #153A5B;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.75;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  flex: 1;
}
.cookie-modal .cookie-switch {
  min-width: 54px;
  min-height: 22px;
  position: relative;
  display: inline-block;
  margin-left: 8px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 13px;
  transition: .2s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  background: var(--secondary);
}
.cookie-modal .cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(26px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 8px 22px;
  border-radius: 19px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  margin-top: 0;
  box-shadow: 0 2px 12px rgba(21,58,91,0.09);
  transition: background .16s;
}
.cookie-modal button.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: var(--primary);
  color: #fff;
}

/* Hide cookie modal close button
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #aaa;
  cursor: pointer;
}
*/

/* -----------
   UTILITIES
------------- */
.d-flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.gap-12 {
  gap: 12px;
}
.gap-24 {
  gap: 24px;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.rounded {
  border-radius: var(--border-radius);
}
.bg-primary {
  background: var(--primary);
  color: #fff;
}
.bg-accent {
  background: var(--accent);
}
.bg-secondary {
  background: var(--secondary);
}
.shadow {
  box-shadow: var(--shadow);
}

/* --------------
   OVERRIDES
----------------- */
::-webkit-input-placeholder { color: #c7d1e0; }
::-moz-placeholder { color: #c7d1e0; }
:-ms-input-placeholder { color: #c7d1e0; }
::placeholder { color: #c7d1e0; }

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

/* END */
