/* ===========================================================
   CSS RESET & BASELINE
   =========================================================== */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #FDF9F3;
  color: #24321a;
  min-height: 100vh;
}
main { min-height: 60vh; }
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}
a { color: inherit; text-decoration: none; transition: color .2s; }

/* =============================================
   BRAND & NATURE ORGANIC COLORS
   ============================================= */
:root {
  --primary: #20324A;          /* Main brand blue (deep, reliable) */
  --secondary: #A2C5E2;        /* Light blue (accent background) */
  --accent: #F3B05A;           /* Warm accent (leaves/earth) */
  --nature-green: #537047;     /* Nature green */
  --nature-brown: #89765b;     /* Earth brown */
  --nature-cream: #FDF9F3;     /* Page BG */
  --nature-bg-light: #faf6f0;  /* Card BG 2 */
  --font-sans: 'Open Sans', Arial, Helvetica, sans-serif;
  --font-display: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ==========================================================
    TYPOGRAPHY – Professional, Harmonious Scale
   ========================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.23;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--nature-green);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--nature-green);
}
p, ul, ol, li, span, label, input, textarea {
  font-family: var(--font-sans);
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #374531;
  letter-spacing: .01em;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 22px;
}
li {
  font-size: 1rem;
  margin-bottom: 7px;
  line-height: 1.6;
}
strong {
  font-weight: bold;
  color: var(--primary);
}
.category, .categories span {
  background: var(--nature-bg-light);
  color: var(--nature-green);
  border-radius: 16px;
  padding: 3px 12px;
  font-size: 0.95em;
  margin-right: 8px;
}
.categories { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

@media (min-width: 900px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2.2rem; }
  h3, .h3 { font-size: 1.3rem; }
}

/* ===================================================
   FLEXBOX LAYOUTS: CONTAINERS & SPACING
   ===================================================*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .section {
    padding: 32px 9px 32px 9px;
    margin-bottom: 32px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  padding: 32px 24px;
  background: var(--nature-bg-light);
  border-radius: 32px 32px 22px 22px;
  box-shadow: 0 3px 14px rgba(63,70,29,.07);
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--nature-bg-light);
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(63,70,29,0.09);
  position: relative;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px 38px 22px 28px;
  box-shadow: 0 6px 24px 0 rgba(40,60,15,0.13),0 1.5px 2.5px rgba(0,0,0,0.04);
  min-width: 240px;
  max-width: 420px;
  margin-bottom: 24px;
  margin-right: 16px;
  margin-left: 0;
}
.testimonial-card p {
  color: #263116;
  font-size: 1.125rem;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--nature-green);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 22px 32px 28px 14px;
  box-shadow: 0 2px 12px rgba(46,62,12,0.11);
  min-width: 220px;
  flex: 1 1 220px;
}

/* Blog list (Ratgeber) */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-list article {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(46,62,12,0.08);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 10px 0;
}
.search-bar input {
  border-radius: 16px;
  border: 1px solid var(--nature-brown);
  padding: 7px 14px;
  font-size: 1rem;
  background: #fff;
  transition: border-color .2s;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--accent);
  background: #f9f5ed;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  margin-top: 4px;
  list-style: none;
}
.services-list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(63,70,29,0.09);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.services-list img {
  height: 48px; width: 48px;
  margin-bottom: 2px;
}
.service-highlights {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.96rem;
  color: var(--nature-green);
}
.service-highlights span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--nature-bg-light);
  padding: 6px 14px;
  border-radius: 13px;
}

.blog-list .category { margin-top: 6px; }

.certificates {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.certificates img {
  height: 32px;
  width: 32px;
  display: inline-block;
}

.opening-hours, .contact-intro { margin-top: 16px; }

/* ===============================
   NAVIGATION (DESKTOP & MOBILE)
   =============================== */
header {
  background: linear-gradient(90deg,#faf6f0 60%,var(--secondary) 110%);
  box-shadow: 0 1px 10px rgba(60,80,22,.07);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 64px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img { height: 44px; }

.main-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.main-nav a {
  color: var(--nature-green);
  font-family: var(--font-display);
  padding: 7px 13px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: background 0.17s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 21px 32px 21px 32px/28px 21px 28px 21px;
  box-shadow: 0 4px 18px 0 rgba(217,157,74,0.12);
  padding: 12px 30px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .18s, color .19s;
  margin-left: 14px;
  letter-spacing: 0.03em;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--nature-green);
  color: #fff;
  box-shadow: 0 2px 24px 0 rgba(83,112,71,.16);
}

/* ===============================
   MOBILE MENU
   =============================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  line-height: 1;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
  z-index: 140;
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--nature-green);
  color: #fff;
}
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg,#faf6f0 60%,var(--secondary) 120%);
  box-shadow: 0 0 42px 0 rgba(41,58,13,0.15);
  transform: translateX(-110vw);
  transition: transform .45s cubic-bezier(.87,.06,.15,1.01);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--primary);
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 2110;
  padding: 6px 12px;
  border-radius: 13px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 98px;
  justify-content: flex-start;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: var(--primary);
  font-weight: 500;
  border-radius: 20px;
  padding: 12px 48px;
  transition: background .15s, color .16s;
  text-align: center;
  letter-spacing: 0.015em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 700px) {
  .mobile-menu-close { right: 12px; top: 13px; }
  .mobile-nav a { font-size: 1.07rem; padding: 10px 20px; }
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: linear-gradient(120deg, #e6daca 0%, #f9f6ef 90%);
  color: var(--nature-green);
  padding: 48px 0 24px 0;
  border-top-left-radius: 76px 42px;
  border-top-right-radius: 38px 80px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-main img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main nav a {
  color: var(--nature-green);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: color .15s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
}
.footer-contact,
.footer-hours {
  font-size: 0.98rem;
  color: #5b6840;
}
.footer-contact img {
  width: 22px; height: 22px; margin-right: 6px;
  vertical-align: middle;
}
.footer-hours {
  margin-top: 18px;
  color: var(--nature-green);
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ====================================
   CTA, BUTTONS, INTERACTIVE ELEMENTS
   ====================================*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 18px 0 rgba(217,157,74,0.11);
  text-align: center;
}
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 12px;
  letter-spacing: 0.015em;
  transition: background .19s, color .17s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--nature-green);
}

/* ===================================
   TESTIMONIAL SLIDER / LISTS
   ===================================*/
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: unset;
    width: 100%;
  }
}

/* ==============================
   FORMS & SEARCH (future-proof)
   ==============================*/
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 16px;
  border: 1px solid var(--nature-brown);
  background: #fff;
  transition: border-color .17s;
  margin-bottom: 12px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: var(--nature-bg-light);
}
label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
  font-family: var(--font-display);
}

/* ================================
   COOKIE BANNER & PREFERENCES MODAL
   ================================*/
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: linear-gradient(90deg,#fff 60%,#f3e8d4 110%);
  box-shadow: 0 -2px 24px 0 rgba(85,110,34,0.13);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 22px 22px 0 0;
  transition: transform 0.26s;
}
#cookie-banner.hide { transform: translateY(160%); }
#cookie-banner .cookie-banner-text {
  flex: 1 1 60%;
  font-size: 1em;
}
#cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
#cookie-banner button {
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 14px;
  padding: 8px 20px;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background .16s, color .12s;
}
#cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
#cookie-banner .cookie-accept:hover,
#cookie-banner .cookie-accept:focus {
  background: var(--nature-green);
  color: #fff;
}
#cookie-banner .cookie-reject {
  background: #fff;
  color: var(--nature-green);
  font-weight: 600;
  border: 1px solid var(--nature-green);
}
#cookie-banner .cookie-reject:hover,
#cookie-banner .cookie-reject:focus {
  background: var(--nature-green);
  color: #fff;
}
#cookie-banner .cookie-settings {
  background: var(--primary);
  color: #fff;
}
#cookie-banner .cookie-settings:hover,
#cookie-banner .cookie-settings:focus {
  background: var(--nature-green);
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.97em;
    padding: 16px 7px;
  }
  #cookie-banner .cookie-banner-actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 3110;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(54,63,21,0.20);
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 30px 30px 16px 16px;
  box-shadow: 0 10px 40px 0 rgba(44,64,16,0.16);
  max-width: 480px;
  width: 92vw;
  padding: 32px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInScale .36s cubic-bezier(.94,.03,.13,1.01);
}
@keyframes fadeInScale {
  0% { transform: scale(.7); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
#cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px; top: 17px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 13px;
  transition: background .16s;
}
#cookie-modal .cookie-modal-close:hover {
  background: var(--accent);
  color: #fff;
}
#cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 7px;
  color: var(--nature-green);
}
#cookie-modal label.switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: var(--font-display);
  cursor: pointer;
  margin: 12px 0 0 0;
}
/* Toggle switch for cookie modal */
.switch-input {
  display: none;
}
.switch-slider {
  width: 44px;
  height: 24px;
  background: #e7e1d4;
  border-radius: 14px;
  position: relative;
  transition: background 0.2s;
}
.switch-slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--nature-brown);
  transition: left 0.2s, background 0.2s;
}
.switch-input:checked + .switch-slider {
  background: var(--accent);
}
.switch-input:checked + .switch-slider:before {
  left: 24px;
  background: var(--nature-green);
}

#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
#cookie-modal .cookie-modal-actions button {
  border-radius: 14px;
  border: none;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-size: .97rem;
  cursor: pointer;
  transition: background .17s, color .13s;
}
#cookie-modal .cookie-modal-actions .cookie-accept {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
#cookie-modal .cookie-modal-actions .cookie-save {
  background: var(--nature-green);
  color: #fff;
  font-weight: 600;
}
#cookie-modal .cookie-modal-actions .cookie-cancel {
  background: #e7e1d4;
  color: var(--primary);
}
#cookie-modal .cookie-modal-actions .cookie-accept:hover,
#cookie-modal .cookie-modal-actions .cookie-save:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================
   ORGANIC SHAPES/DECORATIONS
   =============================*/
/* Organic border accents, leaves on cards, large radii as section accents */
.feature-item,
.card,
.testimonial-card,
.services-list li,
.blog-list article {
  box-shadow: 0 3px 14px rgba(46,62,12,0.08),0 1.5px 2.5px rgba(44,64,16,0.06);
  border-radius: 29px 19px 28px 21px;
}
.text-section {
  border-radius: 32px 32px 22px 22px;
}

/* Decorative only – placed absolutely for leaves or organic DIVs (do NOT use for content) */
.organic-leaf {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .23;
  width: 90px;
  height: 90px;
  background: var(--nature-green);
  border-radius: 90% 100% 80% 90%/80% 90% 90% 100%;
  filter: blur(6px);
}

/* HEADER: organic curves */
header {
  border-bottom-left-radius: 36px 12px;
  border-bottom-right-radius: 30px 38px;
}

/* ===============================
   SPACING & UTILITIES
   ===============================*/
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mr-16 { margin-right: 16px; }
.ml-12 { margin-left: 12px; }
.pt-24 { padding-top: 24px; }
.pb-32 { padding-bottom: 32px; }
.pr-24 { padding-right: 24px; }
.gap-20 { gap: 20px; }

/* Remove list styles for in-content lists that are feature-oriented */
.feature-list, .footer-main nav, .categories, .service-highlights {
  list-style: none;
  padding: 0;
}

/* ====================================
   RESPONSIVE ADJUSTMENTS (MOBILE-FIRST)
   ====================================*/
@media (max-width: 900px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .services-list, .feature-grid { gap: 13px; }
}
@media (max-width: 700px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .content-wrapper, .text-section, .service-highlights, .services-list {
    padding-left: 9px; padding-right: 9px;
  }
  .feature-item, .services-list li, .card, .testimonial-card, .blog-list article { min-width: unset; width: 100%; }
  .section { padding: 22px 5px; margin-bottom: 22px; }
  .testimonials-list, .testimonial-slider { flex-direction: column!important; }
  .text-image-section, .content-grid { flex-direction: column; gap: 16px; }
  .footer-main { gap: 15px; }
}

@media (max-width: 450px) {
  h1, .h1 { font-size: 1.36rem; margin-bottom: 8px;}
  h2, .h2 { font-size: 1.12rem; margin-bottom: 8px;}
  .footer-main img {height: 35px}
}

/* =====================
   MICRO INTERACTIONS
   =====================*/
.card, .feature-item, .services-list li, .testimonial-card, .blog-list article {
  transition: box-shadow .17s, transform .18s;
}
.card:hover, .feature-item:hover, .services-list li:hover, .blog-list article:hover {
  box-shadow: 0 6px 28px 0 rgba(83,112,71,.12),0 4px 9px rgba(217,157,74,0.06);
  transform: translateY(-2px) scale(1.019);
}

/* =====================
   ICON IMAGE SIZING
   =====================*/
.feature-item img, .services-list img, .footer-contact img {
  width: 40px;
  height: 40px;
}

/* =====================
   ACCESSIBILITY
   =====================*/
a:focus, button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =========================
   PRINT OPTIMIZATION
   =========================*/
@media print {
  header, footer, #cookie-banner, #cookie-modal, .mobile-menu { display: none !important; }
  body { color: #212; background: #fff; }
  a:after { content: ' (' attr(href) ')'; font-size: .9em; color: #666; }
}

/* End of style.css */
