/* ================== CSS RESET AND BASE ================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #232323;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}
img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
th, td {
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}
th {
  background: #f8f8f8;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #1c232d;
}
td {
  font-weight: 400;
}
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 32px 0;
}
address {
  font-style: normal;
  margin-bottom: 0.5em;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1c232d;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 0.6em;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
  letter-spacing: 2px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}
p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
}
strong {
  font-weight: 700;
}

/* ================== COLOR PALETTE ================== */
:root {
  --clr-bg: #fff;
  --clr-primary: #1C232D;
  --clr-secondary: #5CA9DF;
  --clr-accent: #F4F5F7;
  --clr-dark: #101219;
  --clr-gray: #e6e7e9;
  --clr-light: #fff;
  --clr-border: #ddd;
  --clr-shadow: rgba(28,35,45,0.10);
  --clr-shadow-modal: rgba(28,35,45,0.30);
}

/* ===== RESPONSIVE CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ================== HEADER / NAVIGATION ================== */
header {
  background: var(--clr-bg);
  box-shadow: 0 2px 12px var(--clr-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-navigation a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--clr-primary);
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  padding: 5px 6px;
  transition: color 0.15s;
}
.main-navigation a:hover,
.main-navigation a:focus {
  color: var(--clr-secondary);
}

.cta-btn {
  padding: 12px 28px;
  border-radius: 29px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 22px var(--clr-shadow);
  border: 2px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  margin-left: 14px;
}
.cta-btn.primary {
  background: var(--clr-primary);
  color: #fff;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #232a36;
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
  box-shadow: 0 8px 26px var(--clr-shadow-modal);
  transform: translateY(-2px) scale(1.04);
}
.cta-btn.secondary {
  background: #fff;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  margin-left: 0;
  box-shadow: none;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
  background: var(--clr-accent);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--clr-primary);
  border-radius: 6px;
  padding: 8px 13px;
  margin-left: 16px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--clr-accent);
  color: var(--clr-secondary);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -4px 0 20px var(--clr-shadow-modal);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.43,0.13,0.23,0.96);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 36px 20px 30px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--clr-primary);
  font-size: 2rem;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 5px 12px 5px 5px;
  font-weight: bold;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--clr-accent);
  color: var(--clr-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--clr-primary);
  padding: 12px 0 12px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--clr-secondary);
  background: var(--clr-accent);
}

/* Hide navigation on mobile, show hamburger */
@media (max-width: 1020px) {
  .main-navigation {
    display: none !important;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================== FOOTER ================== */
footer {
  background: #101219;
  color: #fff;
  padding: 48px 0 36px 0;
  position: relative;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 24px;
  justify-content: space-between;
}
.footer_navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer_navigation a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  opacity: 0.85;
  transition: color 0.16s, opacity 0.18s;
}
.footer_navigation a:hover,
.footer_navigation a:focus {
  color: var(--clr-secondary);
  opacity: 1;
}
.social_links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* ================== SECTION, LAYOUT & FLEXBOX ================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px var(--clr-shadow);
  padding: 32px 26px 28px 26px;
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 20px 26px;
  background: #fafbfc;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px var(--clr-shadow);
  border: 1.5px solid var(--clr-gray);
  max-width: 470px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px var(--clr-shadow);
  padding: 28px 21px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-width: 230px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(100%) contrast(1.1);
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 28px var(--clr-shadow-modal);
  transform: scale(1.025);
}
/* Service Cards */
.service_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 26px 0 10px 0;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px var(--clr-shadow);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1px solid var(--clr-gray);
  transition: box-shadow 0.16s, border-color 0.15s; 
}
.service-card:hover {
  box-shadow: 0 8px 36px var(--clr-shadow-modal);
  border-color: var(--clr-secondary);
}
.service-card span {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.14rem;
  color: var(--clr-primary);
  margin-top: 12px;
  font-weight: 620;
  letter-spacing: 0.04em;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
.service-list li {
  background: #fafbfc;
  border-radius: 10px;
  padding: 20px 20px 16px 20px;
  box-shadow: 0 1px 6px var(--clr-shadow);
  border: 1px solid var(--clr-gray);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.benefit-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.benefit-item {
  flex: 1 1 180px;
  background: var(--clr-accent);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--clr-shadow);
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  gap: 11px;
  padding: 22px 14px;
  min-width: 165px;
}
.benefit-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  filter: grayscale(100%) contrast(1.1);
}
.comparison-table,
.pricing-section,
.price_comparison_chart,
.notes_on_custom_services {
  margin-top: 22px;
  margin-bottom: 22px;
}
.comparison-table table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px var(--clr-shadow);
  background: #fff;
  min-width: 210px;
  margin-bottom: 0;
}
.comparison-table th {
  background: #1c232d;
  color: #fff;
}
.comparison-table td {
  background: #f7f7f8;
}

/* ================== TESTIMONIAL & STAR RATING ================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 32px 0 0 0;
}
.star-rating,
.star-ratings-summary {
  font-family: 'Oswald', Arial, sans-serif;
  color: #FFC700;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-size: 1.15rem;
}
.star-ratings-summary {
  color: #1C232D;
  background: #f6f8fa;
  display: inline-block;
  border-radius: 29px;
  padding: 5px 24px 4px 24px;
  margin: 23px 0 0 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-section .testimonial-card {
  box-shadow: 0 2px 18px var(--clr-shadow);
  border: 1.1px solid var(--clr-gray);
  background: #fafbfc;
  margin-bottom: 20px;
  color: #101219 !important;
  font-size: 1.1rem;
}
.testimonial-section .testimonial-card span {
  color: #1c232d;
}

/* ================== HERO SECTIONS ================== */
section:first-child {
  background: #fff;
  margin-bottom: 48px;
  padding-top: 50px;
  padding-bottom: 45px;
  border-bottom: 1.5px solid var(--clr-gray);
}
section:first-child h1 {
  font-size: 2.7rem;
  color: #1C232D;
}

/* ================== ABOUT & TEAM ================== */
.team-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.team-member-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}
.team-member-profile {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px var(--clr-shadow);
  padding: 22px 18px 17px 18px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1.1px solid var(--clr-gray);
}
.leadership-bio {
  background: #fafbfc;
  border-radius: 12px;
  padding: 17px 22px;
  margin-top: 14px;
  box-shadow: 0 1px 8px var(--clr-shadow);
}
.features-section ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.features-section li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  background: #f7f8fa;
  border-radius: 9px;
  padding: 14px 17px;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px var(--clr-shadow);
}

/* ================== GALERIE ================== */
.services-section .service-description-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.process-text-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px var(--clr-shadow);
  padding: 20px 22px 16px 22px;
  border: 1.1px solid var(--clr-gray);
}
.before-after-description-blocks {
  background: #f8f8fa;
  border-radius: 12px;
  padding: 18px 15px 13px 17px;
  box-shadow: 0 1px 7px var(--clr-shadow);
  font-size: 1.01rem;
}
.before-after-description-blocks ul {
  gap: 11px;
  margin-bottom: 0;
}

/* ================== RESPONSIVE FLEXBOX LAYOUTS ================== */
@media (max-width: 895px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-logo {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  header .container {
    min-height: 64px;
  }
  .content-wrapper {
    max-width: 97vw;
  }
  .text-image-section,
  .feature_grid,
  .service_cards,
  .benefit-grid,
  .testimonial-slider,
  .team-member-profiles,
  .card-container,
  .content-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  section {
    padding: 25px 6px;
  }
  .card, .feature-item, .service-card, .team-member-profile, .benefit-item {
    min-width: 90px;
    padding: 17px 8px;
  }
  .cta-btn {
    width: 100%;
    margin: 0 0 11px 0;
    text-align: center;
  }
  .service-list li {
    padding: 15px 8px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.22rem;
  }
}

/* ================== TABLES ================== */
.service_pricing_table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px var(--clr-shadow);
  background: #fff;
  margin-bottom: 20px;
}
.service_pricing_table th {
  background: #1c232d;
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Oswald', Arial, sans-serif;
}
.service_pricing_table td {
  background: #f7f7f8;
}

/* ================== LISTS ================== */
ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.service_highlight_icons {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 26px 0;
  align-items: center;
  justify-content: start;
}
.service_highlight_icons img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.85) contrast(1.10);
  opacity: 0.95;
}

.treatment-process {
  margin-top: 18px;
  margin-bottom: 16px;
}
.treatment-process ol {
  margin-top: 7px;
  padding-left: 30px;
}
.treatment-process ol li {
  margin-bottom: 7px;
}

/* ================== COOKIE CONSENT ================== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  background: #232a36;
  color: #fff;
  padding: 28px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 18px var(--clr-shadow-modal);
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.61,.06,.51,1.38), transform 0.34s cubic-bezier(.61,.06,.51,1.38);
}
#cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#cookie-banner .cookie-banner-text {
  font-size: 1rem;
  margin-bottom: 13px;
  text-align: center;
  max-width: 650px;
  line-height: 1.6;
}
#cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  background: #fff;
  color: var(--clr-primary);
  border-radius: 20px;
  border: 1.3px solid #ddd;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 9px 26px;
  margin: 0 3px;
  box-shadow: 0 2px 10px var(--clr-shadow);
  transition: background 0.19s, color 0.15s, border 0.14s, transform 0.14s;
}
.cookie-btn.accept {
  background: var(--clr-secondary);
  color: #fff;
  border: 1.3px solid var(--clr-secondary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #2A84C6;
  color: #fff;
  transform: scale(1.06);
}
.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1.3px solid #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #fff;
  color: var(--clr-primary);
  transform: scale(1.06);
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.3px solid #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--clr-accent);
  color: var(--clr-primary);
  transform: scale(1.06);
}

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20500;
  background: rgba(28,35,45, 0.34);
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
}
#cookie-modal.visible {
  display: flex;
  animation: fadeIn 0.36s;
}
@keyframes fadeIn {from {opacity:0;} to {opacity:1;} }

.cookie-modal-content {
  background: #fff;
  border-radius: 19px;
  padding: 36px 28px 30px 28px;
  box-shadow: 0 6px 40px #111a3255;
  min-width: 290px;
  max-width: 96vw;
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalPop 0.38s cubic-bezier(.61,.06,.51,1.38);
  position: relative;
}
@keyframes modalPop {
  from {transform: scale(0.92) translateY(80px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-header {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 7px;
  color: #1c232d;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 15px 0 10px 0;
  width: 100%;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: space-between;
  background: #f7f8fa;
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
}
.cookie-category-label {
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #232323;
}
.cookie-category-toggle[disabled],
.cookie-category-toggle[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-category-toggle {
  width: 46px;
  height: 24px;
  background: var(--clr-gray);
  border-radius: 13px;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-category-toggle:checked {
  background: var(--clr-secondary);
}
.cookie-category-toggle::after {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 2px;
  box-shadow: 0 1px 4px #1c232d45;
  transition: transform 0.18s cubic-bezier(.43,0,1,.77);
}
.cookie-category-toggle:checked::after {
  transform: translateX(20px);
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--clr-primary);
  cursor: pointer;
  border-radius: 5px;
  padding: 5px 8px;
  opacity: 0.8;
  transition: background 0.15s, opacity 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--clr-accent);
  color: var(--clr-secondary);
  opacity: 1;
}

/* ================== MICRO-INTERACTIONS ================== */
a, button, .feature-item, .card, .service-card, .testimonial-card, .cta-btn, .footer_navigation a,
.mobile-nav a, .cookie-btn, .cookie-modal-close {
  transition: background 0.15s, color 0.13s, box-shadow 0.18s, border 0.14s, transform 0.13s;
}

/* ==== SCROLLBARS FOR MODERN BROWSERS ==== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #d5d5db;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #f5f5f7;
}

/* ================== PRINT (BASIC) ================== */
@media print {
  header, footer, #cookie-banner, #cookie-modal  {
    display: none !important;
  }
  section, .container {
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ================== END ================== */
