/* ========================================================
   Minimal 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #204067;
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  background-color: #F7F7F2;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #34A77C;
  outline-offset: 2px;
}

/* ========================================================
   Brand Colors & Font Variables
======================================================== */
:root {
  --primary: #204067;
  --secondary: #34A77C;
  --accent: #F7F7F2;
  --text: #204067;
  --text-light: #5A6A7C;
  --background: #FFFFFF;
  --shadow: 0 2px 12px rgba(32,64,103,0.04);
  --shadow-card: 0 4px 20px rgba(32,64,103,0.07);
  --border-radius: 10px;
  --radius-card: 14px;
  --card-bg: #fff;
  --testimonial-bg: #F7F7F2;
  --link-hover: #214fa9;
  --disabled: #eaeaea;
}

/* ========================================================
   Typography
======================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.17;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
.text-section p,
.content-wrapper p,
.text-section ul li {
  font-size: 1.0625rem;
  color: var(--text-light);
}
.text-section ul {
  margin-top: 8px;
  margin-bottom: 16px;
}
.text-section ul li:before {
  content: "• ";
  color: var(--secondary);
  font-size: 0.94em;
}

/* ================= CONTAINER, WRAPPERS ================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: none;
  border-radius: var(--border-radius);
  align-items: flex-start;
}

/* =============== SECTION SPACING & FLEX LAYOUTS ======= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6vw;
    margin-bottom: 36px;
  }
}

/* ---------------- Common Flex Patterns ---------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(52,167,124,0.07);
  transform: translateY(-2px) scale(1.015);
}
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
}

/********* FEATURES & CARDS *********/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 18px 24px 18px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px rgba(52,167,124,0.08);
  transform: translateY(-2px) scale(1.0125);
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-cards > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 20px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-cards > div:hover {
  box-shadow: 0 6px 28px rgba(32, 64, 103, 0.10);
  transform: translateY(-2px) scale(1.013);
}
.icon-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.icon-benefits > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px rgba(32, 64, 103, 0.04);
  padding: 18px 10px 12px 10px;
  min-width: 120px;
  font-size: 1.04em;
}

/********* LEVELS GRID AND TEAM GRID *********/
.levels-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.levels-grid > div, .team-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 22px 16px 17px 16px;
  min-width: 200px;
}

/********* STATS GRID *********/
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.stats-grid > div {
  flex: 1 1 140px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 10px;
  min-width: 140px;
}
.stats-grid h3 {
  font-size: 1.9rem;
  color: var(--secondary);
  margin: 0;
}

/********* CONTACT DETAILS GRID *********/
.contact-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.contact-details-grid > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 18px 12px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
.contact-details-grid img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/********* FAQ ACCORDION (minimalist) *********/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px rgba(32, 64, 103, 0.06);
  padding: 18px 12px 9px 16px;
  transition: box-shadow 0.14s;
}
.faq-accordion > div:hover {
  box-shadow: 0 7px 18px rgba(52,167,124,0.05);
}

/********* TESTIMONIALS (slider & card) *********/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 18px 0;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px 20px 24px;
  background: var(--testimonial-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 16px rgba(32,64,103,0.06);
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  color: var(--text);
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  color: var(--text);
  font-style: italic;
  font-size: 1.08em;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.97em;
  margin-top: 12px;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(32,64,103,0.11);
}

/********* PRICING TABLE *********/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 10px;
  text-align: left;
  border-bottom: 1px solid #E3EAF4;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table th {
  background: #f2f6fa;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.12em;
}
.pricing-table td {
  color: var(--text-light);
}

/********* BUTTONS *********/
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  min-width: 160px;
  min-height: 48px;
  padding: 0 24px;
  text-align: center;
  font-size: 1.08em;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.13s, transform 0.17s;
  box-shadow: 0 2px 8px rgba(32,64,103,0.07);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 22px rgba(52,167,124,0.15);
  transform: translateY(-1px) scale(1.012);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 7px 20px rgba(52,167,124,0.09);
}

/********* FOOTER *********/
footer {
  background: #fff;
  border-top: 1px solid #eaecec;
  padding: 36px 0 20px 0;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1em;
  padding: 2px 10px;
  border-radius: 10px;
  transition: background 0.14s, color 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #F7F7F2;
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.99em;
}
.footer-contact img {
  width: 110px;
  height: 38px;
  margin-bottom: 10px;
}
.footer-contact a {
  color: var(--primary);
  transition: color 0.15s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/********* LOCATION MAP (minimal) *********/
.location-map {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 7px rgba(32, 64, 103, 0.04);
  padding: 24px 15px 16px 16px;
  margin-bottom: 16px;
}

/********* SUCCESS RATE STATS, PREPARATION-METHODS *********/
.preparation-methods ul,
.success-rate-stats ul {
  margin-left: 8px;
  margin-bottom: 16px;
}
.success-rate-stats {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 18px 16px 10px 16px;
  margin-top: 12px;
}
.preparation-methods ul li {
  list-style: disc inside;
}

/********* MODIFIERS (WHITE SPACE, GAPS, ETC.) *********/
section + section {
  margin-top: 12px;
}
.section,
section,
.card,
.content-wrapper {
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .container, .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/********* HEADER & NAVIGATION *********/
header {
  position: sticky;
  top: 0;
  z-index: 1060;
  background: #fff;
  box-shadow: 0 2px 8px rgba(32,64,103,0.03);
  min-height: 70px;
  padding-top: 0;
  margin-bottom: 12px;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  justify-content: flex-start;
  min-height: 70px;
}
.main-nav a {
  padding: 8px 13px;
  border-radius: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02em;
  color: var(--primary);
  transition: background .16s, color .14s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  background: #f7f7f2;
}
.main-nav a.btn-primary {
  margin-left: auto;
  min-width: 180px;
  color: #E3EAF4;
}
.main-nav a.btn-primary:hover {
  color: var(--secondary);
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 12px;
}
/* Hide nav links on mobile */
@media (max-width: 1100px) {
  .main-nav a:not(:first-child):not(.btn-primary) {
    display: none;
  }
  .main-nav a.btn-primary {
    margin-left: 0;
  }
}

/********* MOBILE MENU *********/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  background: #fff;
  color: var(--primary);
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  z-index: 9902;
  box-shadow: 0 2px 6px rgba(32,64,103,0.04);
  transition: background 0.13s, color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F7F7F2;
  color: var(--secondary);
}
@media (max-width: 1100px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(32,64,103,0.03);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity .31s cubic-bezier(.53,.52,.29,1.37);
  display: flex;
  flex-direction: column;
}
.mobile-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: #fff;
  color: var(--primary);
  font-size: 2.1rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(32,64,103,0.07);
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F7F7F2;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 50px rgba(32,64,103,0.15);
  margin: 96px auto 0 auto;
  width: 95vw;
  max-width: 430px;
  padding: 34px 12px 38px 32px;
  transition: transform .34s cubic-bezier(.53,.52,.29,1.37);
  transform: translateY(-30px) scale(0.99);
}
.mobile-menu.show .mobile-nav {
  transform: translateY(0) scale(1.00);
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.17em;
  color: var(--text);
  border-radius: 10px;
  padding: 14px 14px 12px 8px;
  background: none;
  transition: background 0.19s, color 0.17s;
  min-width: 80vw;
  text-align: left;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: #F7F7F2;
}
.mobile-nav a.btn-primary {
  display: block;
  margin: 16px 0 0 0;
  font-size: 1.16em;
}
/***** Hide main nav and show burger on mobile *****/
@media (max-width: 1100px) {
  .main-nav {
    justify-content: flex-start;
    padding-right: 66px;
  }
  .main-nav {
    gap: 8px;
  }
}

/********* Responsive: MOBILE ADAPTATION *********/
@media (max-width: 900px) {
  .feature-grid, .service-cards, .levels-grid, .team-grid, .stats-grid, .testimonial-slider, .icon-benefits, .card-container, .content-grid, .contact-details-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .feature-grid > div, .service-cards > div, .levels-grid > div, .team-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  .btn-primary, .btn-secondary {
    min-width: 124px;
    font-size: 1em;
    padding: 0 12px;
    min-height: 42px;
  }
  .mobile-nav a {
    padding: 11px 2px 11px 6px;
    font-size: 1.04em;
    min-width: 0;
  }
}

/********* COOKIE CONSENT BANNER *********/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: rgba(255,255,255,0.96);
  border-top: 1.5px solid #e8ecec;
  box-shadow: 0 -4px 22px rgba(52, 167, 124, 0.045);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  min-height: 75px;
  font-size: 1.06em;
  opacity: 1;
  visibility: visible;
  transition: opacity .34s, visibility .23s;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner-message {
  color: var(--text-light);
  flex: 1;
  min-width: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  min-width: 120px;
  min-height: 40px;
  font-size: 1em;
  padding: 0 12px;
  margin: 0 0 0 0;
}
.cookie-banner .btn-reject {
  background: #fff;
  color: var(--primary);
  border: 1.4px solid #eaeaea;
  border-radius: 20px;
  padding: 0 12px;
  min-height: 40px;
  min-width: 84px;
  font-weight: 500;
  transition: background 0.13s, border 0.13s, color 0.13s;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #F7F7F2;
  color: var(--secondary);
  border: 1.4px solid var(--secondary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    font-size: 0.97em;
    padding: 20px 10px 18px 10px;
  }
  .cookie-banner-buttons {
    gap: 8px;
    justify-content: flex-start;
  }
}

/********* COOKIE MODAL *********/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: rgba(32,64,103,0.19);
}
.cookie-modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  min-width: 310px;
  max-width: 94vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 64px rgba(32,64,103,0.21);
  padding: 34px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInCookieModal .44s cubic-bezier(.47,1.5,.29,.98) both;
}
@keyframes fadeInCookieModal {
  from { opacity:0; transform: translateY(-35px) scale(.97); }
  to { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 1.6em;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  box-shadow: 0 2px 8px rgba(32,64,103,0.08);
  z-index: 1;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F7F7F2;
  color: var(--secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 1em;
}
.cookie-category label {
  flex: 1;
  color: var(--text-light);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
}
.cookie-category.essential label {
  color: var(--primary);
  opacity: 1;
  font-weight: 700;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: var(--disabled);
}
.cookie-category.essential input[type=checkbox] {
  pointer-events: none;
}
.cookie-modal-action-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-reject, .cookie-modal .btn-secondary {
  font-size: 1.03em;
  min-width: 105px;
  min-height: 40px;
}

/* Hide elements utility */
.hide { display: none !important; }

/********* MICRO-INTERACTIONS (TRANSITIONS) *********/
.card, .feature-grid > div, .testimonial-card, .service-cards > div, .faq-accordion > div {
  transition: box-shadow 0.19s, transform 0.15s;
}
.btn-primary, .btn-secondary, .btn-reject {
  transition: background 0.16s, color 0.14s, box-shadow 0.13s, transform 0.14s;
}
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  transition: opacity 0.24s cubic-bezier(.47,1.5,.29,.98), visibility 0.17s;
}

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

/* End of CSS */
