/* CSS RESET & BASE TYPOGRAPHY -------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #F4F0E6;
  color: #23323C;
  min-height: 100vh;
}
a {
  color: #103A50;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EACB6C;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #e0ded6;
  margin: 40px 0;
}

/* TYPOGRAPHY SCALE -------------------------------------------------- */
h1 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #103A50;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #103A50;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #103A50;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  color: #23323C;
  margin-bottom: 8px;
}
p, li, blockquote {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  color: #26374a;
}
blockquote {
  font-style: italic;
  color: #103A50;
  border-left: 4px solid #EACB6C;
  padding-left: 16px;
  margin-bottom: 12px;
  background: #F8F5EE;
}
.subheadline {
  font-size: 1.15rem;
  color: #5A6171;
  margin-bottom: 30px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* CONTAINER LAYOUTS -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
}

.section, 
.hero-section, 
.features, 
.about, 
.services, 
.cta,
.team, 
.values, 
.cases, 
.testimonials, 
.process, 
.newsletter, 
.privacy-policy, 
.gdpr, 
.cookies-policy, 
.terms-of-use, 
.thank-you, 
.blog, 
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, 
  .hero-section, 
  .features, 
  .about, 
  .services, 
  .cta,
  .team, 
  .values, 
  .cases, 
  .testimonials, 
  .process, 
  .newsletter, 
  .privacy-policy, 
  .gdpr, 
  .cookies-policy, 
  .terms-of-use, 
  .thank-you, 
  .blog, 
  .contact {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* HEADER & NAVIGATION -------------------------------------------------- */
header {
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #e0ded6;
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(16,58,80,0.05);
}
header .logo {
  padding: 12px 0 12px 20px;
  display: flex;
  align-items: center;
}
header .logo img {
  height: 42px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  padding: 10px 8px;
  margin: 0 2px;
  color: #103A50;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #F4F0E6;
  color: #EACB6C;
}
.cta-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #103A50;
  color: #FFF;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(16,58,80,0.12);
  letter-spacing: 0.5px;
  border: 2px solid #103A50;
  margin-left: 26px;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.25s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #EACB6C;
  color: #103A50;
  border: 2px solid #EACB6C;
  box-shadow: 0 7px 16px rgba(16,58,80,0.13);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #103A50;
  margin-right: 16px;
  cursor: pointer;
  z-index: 102;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #EACB6C;
  outline: 2px solid #EACB6C;
}
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU -------------------------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 150;
  background: #F4F0E6;
  top: 0; left: 0; right: 0; bottom: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  padding: 0 0;
  box-shadow: -4px 0 24px 0 rgba(16,58,80,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  padding: 18px 22px;
  font-size: 2.2rem;
  background: none;
  color: #103A50;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  margin-right: 8px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #EACB6C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  gap: 22px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #103A50;
  font-size: 1.22rem;
  padding: 10px 8px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  display: block;
  min-width: 150px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EACB6C;
  color: #103A50;
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* HERO SECTION -------------------------------------------------- */
.hero-section {
  background: linear-gradient(105deg, #F4F0E6 75%, #EACB6C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e0ded6;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  text-align: center;
}

/* FLEXBOX MANDATORY LAYOUTS ---------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(16,58,80,0.06);
  margin-bottom: 20px;
  padding: 32px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(16,58,80,0.14);
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  background: #FFF;
  color: #16324A;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(16,58,80,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(16,58,80,0.18);
  transform: translateY(-5px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 10px;
  padding: 22px 16px;
  min-width: 230px;
  max-width: 325px;
  flex: 1 1 220px;
  box-shadow: 0 1px 8px rgba(16,58,80,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 12px 40px rgba(16,58,80,0.12);
  transform: translateY(-4px);
}

/* FEATURES/GRID -------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* SERVICES -------------------------------------------------- */
.service-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 20px;
}
.service-card {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(16,58,80,0.07);
  margin-bottom: 20px;
  padding: 26px 18px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 10px 40px rgba(16,58,80,0.14);
  transform: translateY(-7px);
}
.service-card img {
  width: 42px;
  margin-bottom: 7px;
}
.service-card a {
  font-size: 1rem;
  color: #103A50;
  margin-top: 12px;
  border-bottom: 1px solid #EACB6C;
  transition: color 0.2s, border 0.2s;
}
.service-card a:hover {
  color: #EACB6C;
  border-bottom: 2px solid #103A50;
}
@media (max-width: 950px) {
  .service-list, .service-cards {
    gap: 16px;
    justify-content: center;
  }
  .service-card {
    min-width: 220px;
    max-width: 420px;
  }
}
@media (max-width: 600px) {
  .service-list, .service-cards {
    flex-direction: column;
    gap: 13px;
  }
  .service-card {
    width: 100%;
    max-width: unset;
  }
}

/* PROJECTS -------------------------------------------------- */
.project-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
  justify-content: flex-start;
}
.project-card {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(16,58,80,0.07);
  margin-bottom: 20px;
  padding: 24px 16px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 363px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, transform 0.16s;
}
.project-card:hover {
  box-shadow: 0 7px 28px rgba(16,58,80,0.13);
  transform: translateY(-5px);
}
@media (max-width: 900px) {
  .project-cards {
    gap: 14px;
    justify-content: center;
  }
  .project-card {
    min-width: 180px;
    max-width: 99vw;
  }
}
@media (max-width: 600px) {
  .project-cards {
    flex-direction: column;
    gap: 10px;
  }
  .project-card {
    width: 100%;
  }
}


/* TESTIMONIALS -------------------------------------------------- */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* TEAM -------------------------------------------------- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.team-member {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(16,58,80,0.07);
  margin-bottom: 20px;
  padding: 20px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.21s, transform 0.16s;
}
.team-member img {
  border-radius: 50%;
  width: 58px;
  margin-bottom: 10px;
}
.team-member:hover {
  box-shadow: 0 10px 32px rgba(16,58,80,0.11);
  transform: translateY(-5px);
}
@media (max-width: 750px) {
  .team-list {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .team-member {
    max-width: unset;
  }
}

/* BLOG/ARTICLES -------------------------------------------------- */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px 0;
  align-items: center;
}
.category-filters a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  color: #103A50;
  background: #F4F0E6;
  border-radius: 16px;
  padding: 5px 17px;
  transition: background 0.21s, color 0.21s;
}
.category-filters a:hover, .category-filters a:focus {
  background: #EACB6C;
  color: #103A50;
}
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
}
.article {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(16,58,80,0.08);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
  padding: 22px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.article:hover {
  box-shadow: 0 11px 37px rgba(16,58,80,0.13);
  transform: translateY(-7px);
}

/* CTA/BANNERS -------------------------------------------------- */
.cta {
  background: #103A50;
  color: #FFF;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(16,58,80,0.09);
}
.cta .cta-primary {
  margin-top: 24px;
  background: #EACB6C;
  color: #103A50;
  border: 2px solid #EACB6C;
  box-shadow: 0 3px 12px rgba(234,203,108,0.10);
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #FFF;
  color: #103A50;
  border: 2px solid #103A50;
}

/* NEWSLETTER -------------------------------------------------- */
.newsletter .cta-primary {
  margin: 18px 0 12px 0;
}
.insight-highlights ul {
  margin-left: 20px;
}

/* FOOTER -------------------------------------------------- */
footer {
  background: #EFE8DA;
  color: #103A50;
  border-top: 1px solid #e0ded6;
  padding: 44px 20px 28px 20px;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-nav nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #103A50;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #EACB6C;
  color: #103A50;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  color: #26374a;
  font-size: 1rem;
}
.footer-contact img {
  width: 16px;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.7;
}
.footer-tagline {
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.08rem;
  color: #5A6171;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .footer-nav nav {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
}

/* CONTACT PAGE -------------------------------------------------- */
.contact-details {
  background: #FFF;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(16,58,80,0.04);
  font-size: 1.07rem;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  background: #EFE8DA;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1.01rem;
}
.map-location img {
  width: 35px;
}
.contact-message {
  background: #F8F5EE;
  border-radius: 7px;
  padding: 14px 14px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.contact .cta-primary {
  margin-top: 20px;
}

/* BEFORE/AFTER & MINI CASE -------------------------------------------------- */
.before-after-highlights, .mini-case-highlights {
  background: #EFE8DA;
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 16px;
  color: #23323C;
  font-size: 1rem;
}

/*  ------- COOKIE CONSENT BANNER ----------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF8E8;
  color: #23323C;
  box-shadow: 0 -2px 14px rgba(16,58,80,0.10);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
}
#cookie-banner.hide {
  transform: translateY(120%);
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 20px;
  border: 2px solid #EACB6C;
  background: #EACB6C;
  color: #103A50;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  border-radius: 32px;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s;
  box-shadow: 0 2px 8px rgba(234,203,108,0.07);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #FFF;
  color: #103A50;
  box-shadow: 0 4px 18px rgba(234,203,108,0.21);
}
.cookie-btn.settings {
  background: #FFF8E8;
  color: #103A50;
  border: 2px solid #103A50;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #EACB6C;
  color: #103A50;
}
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 13px 7px;
    font-size: 0.99rem;
    text-align: left;
  }
  #cookie-banner .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* -- COOKIE MODAL -- */
#cookie-modal {
  position: fixed;
  z-index: 201;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,58,80,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal .cookie-modal-content {
  background: #FFF;
  border-radius: 16px;
  max-width: 440px;
  width: 98vw;
  padding: 30px 26px 24px 26px;
  box-shadow: 0 10px 50px rgba(16,58,80,0.32);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.cookie-modal-header h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.25rem;
  color: #103A50;
  margin: 0;
}
.cookie-modal-close {
  color: #103A50;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #EACB6C;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #f4f0e6;
  font-size: 1.05rem;
}
.cookie-category:last-child {
  border: none;
}
.cookie-toggle {
  margin-left: 18px;
}
input[type='checkbox'].cookie-toggle {
  width: 18px;
  height: 18px;
  accent-color: #EACB6C;
}
/* --- Cookie Modal Save Buttons */
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-btn {
  padding: 8px 20px;
  border: 2px solid #103A50;
  background: #EACB6C;
  color: #103A50;
  border-radius: 32px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.2s;
}
.cookie-modal-btn:focus, .cookie-modal-btn:hover {
  background: #FFF8E8;
  color: #103A50;
}
@media (max-width: 500px) {
  #cookie-modal .cookie-modal-content {
    padding: 14px 7px 12px 7px;
    font-size: 0.98rem;
  }
}

/* GENERAL BUTTONS -------------------------------------------------- */
button {
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* MICRO-INTERACTIONS -------------------------------------------------- */
.card, .service-card, .project-card, .feature-item, .testimonial-card, .team-member, .article {
  transition: box-shadow 0.16s, transform 0.16s;
}

/* RESPONSIVE HEADINGS -------------------------------------------------- */
@media (max-width: 550px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.08rem; }
}

/* HELPER CLASSES -------------------------------------------------- */
.d-none { display: none !important; }
.flx { display: flex; }
.flx-col { flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }

/* OVERRIDE AUTOLIST STYLES (UL/OL) ----------------------------------- */
ul li, ol li {
  margin-bottom: 9px;
  line-height: 1.7;
  font-size: 1rem;
  color: #26374a;
}

/* SPECIAL LISTS ----------------------------------------------------- */
.values ul li,
.about ul li,
.privacy-policy ul li,
.gdpr ul li {
  margin-bottom: 8px;
}

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