/* =====================================================================
   CSS RESET & NORMALIZATION (better cross-browser consistency)
====================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #22313a;
  background: #F1FAEE;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1D3557;
  margin-bottom: 16px;
  font-weight: 600;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.22; }
h3 { font-size: 1.3rem; line-height: 1.25 }
h4 { font-size: 1.1rem; line-height: 1.2; }
p, ul, ol {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B2222B;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
hr {
  border: 0;
  border-bottom: 1px solid #E3E6EA;
  margin: 32px 0;
}

/* =====================================================================
   FONT IMPORTS
====================================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');

/* =====================================================================
   ROOT VARIABLES
====================================================================== */
:root {
  --primary: #1D3557;
  --primary-dark: #16213a;
  --secondary: #F1FAEE;
  --accent: #B2222B;
  --text-main: #22313a;
  --text-light: #476078;
  --bg-main: #F1FAEE;
  --bg-white: #fff;
  --shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.08);
  --radius: 12px;
  --border: 1px solid #E3E6EA;
  --gap: 24px;
}

/* =====================================================================
   LAYOUT CONTAINER & SCANDINAVIAN SPACING
====================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =====================================================================
   HEADER & NAVIGATION
====================================================================== */
header {
  background: var(--bg-white);
  box-shadow: 0 1px 8px 0 rgba(44,62,80,0.06);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  flex-wrap: wrap;
  gap: 16px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-size: 16px;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.15s, background 0.15s, border-radius 0.18s;
  border-radius: 8px;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.10);
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(178,34,43,0.13);
  outline: none;
}

/* Hamburger Button (Mobile Only) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  z-index: 102;
  font-size: 32px;
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--accent);
  outline: none;
}

/* Mobile Navigation Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29, 53, 87, 0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.86,.01,.15,.99);
  z-index: 999;
  opacity: 1;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  width: 44px; height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.18s;
  z-index: 1001;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #821012;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding: 40px 32px;
  margin-top: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 12px 0;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(241,250,238,0.10);
  color: var(--accent);
}

/* Hide nav, display hamburger on small screens */
@media (max-width: 1024px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}
/* Smooth header stacking for overlays */
header, .mobile-menu { z-index: 100; }

/* =====================================================================
   HERO & BANNERS
====================================================================== */
.hero {
  background: var(--secondary);
  padding: 48px 0 24px 0;
  margin-bottom: 38px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.8rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 24px;
  color: var(--primary);
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
  text-align: center;
}
.hero .cta-btn {
  font-size: 1.1rem;
  padding: 16px 40px;
}

.contact-banner {
  background: var(--primary);
  color: #fff;
  margin-bottom: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-banner h2 {
  color: #fff;
}
.contact-banner .cta-btn {
  background: #fff;
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-banner .cta-btn:hover,
.contact-banner .cta-btn:focus {
  background: var(--accent);
  color: #fff;
}
.contact-info-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
  color: #fff;
}
.contact-info-inline a {
  color: #fff;
  font-weight: 500;
}
.contact-info-inline img {
  width: 20px;
  margin-right: 4px;
}

/* =====================================================================
   FLEX UTILITIES & MANDATORY PATTERNS
====================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(178,34,43,0.09);
  transform: translateY(-2px) scale(1.012);
}
.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;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 480px;
  color: #22313a;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #22313a;
  margin-bottom: 0;
  font-style: italic;
  flex: 2;
}
.testimonial-card img {
  width: 34px;
  vertical-align: middle;
  margin-right: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px 20px 16px 16px;
  box-shadow: var(--shadow);
  min-width: 210px;
  margin-bottom: 20px;
}

/* Other content set-ups */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(173,206,219,0.10);
  border: 1px solid #E3E6EA;
  padding: 2px;
  transition: box-shadow 0.18s, border 0.18s;
}
.social-links a:focus img,
.social-links a:hover img {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(178,34,43,0.10);
}

/* Price label styling */
.price-label {
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-top: 8px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}

/* =====================================================================
   FEATURE GRID & SERVICE CARDS (INDEX/SERVICES)
====================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 24px;
  font-size: 1.04rem;
  gap: 14px;
  flex: 1 1 240px;
  min-width: 180px;
}
.feature-grid img {
  width: 32px;
  height: 32px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 280px;
  min-width: 200px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.service-cards > div:hover,
.service-cards > div:focus-within {
  box-shadow: 0 6px 24px 0 rgba(29,53,87,0.14);
  transform: translateY(-3px) scale(1.02);
}
.service-cards h3 {
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-list > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-list > div:hover,
.service-list > div:focus-within {
  box-shadow: 0 8px 26px 0 rgba(178,34,43,0.07);
  transform: translateY(-2px) scale(1.015);
}
.service-list h2 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* =====================================================================
   OFFERS LIST (offerte.html)
====================================================================== */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.offer-list li {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  font-size: 1.1rem;
  color: #22313a;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.offer-dates {
  background: #eaf7fd;
  color: var(--accent);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.97rem;
  margin-left: 10px;
}

/* =====================================================================
   GALLERIA - CASE STUDY GRID
====================================================================== */
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 360px;
  margin-bottom: 18px;
  transition: box-shadow 0.13s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-study-grid > div:hover,
.case-study-grid > div:focus-within {
  box-shadow: 0 8px 30px 0 rgba(29,53,87,0.11);
  transform: translateY(-2px) scale(1.01);
}

/* =====================================================================
   TESTIMONIALS & REVIEWS
====================================================================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.rating-summary {
  margin-top: 18px;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.08rem;
}
.rating-summary strong {
  font-size: 1.18em;
}

/* =====================================================================
   FOOTER
====================================================================== */
footer {
  background: #fff;
  box-shadow: 0 -1px 10px 0 rgba(44,62,80,0.06);
  padding: 38px 0 18px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 15px;
  color: #476078;
  margin-bottom: 8px;
}
footer nav a {
  color: #476078;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.13s, background 0.13s;
  padding: 6px 10px;
}
footer nav a:hover,
footer nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #476078;
}
.footer-brand img {
  height: 28px;
  width: auto;
}

/* =====================================================================
   COOKIE CONSENT BANNER + MODAL
====================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: var(--bg-white);
  box-shadow: 0 -2px 18px 0 rgba(29,53,87,0.20);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.30s cubic-bezier(.8,.2,.18,1), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 2;
  color: #22313a;
  font-size: 1rem;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  margin-left: 0;
  box-shadow: 0 2px 8px 0 rgba(44,62,80,0.02);
  outline: none;
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.reject {
  background: #dde7ef;
  color: var(--primary);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #e0e6ec;
  color: var(--accent);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid #D4DDEA;
}
.cookie-btn.settings:focus,
.cookie-btn.settings:hover {
  background: #ececec;
  color: var(--accent);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 50, 65, 0.60);
  z-index: 1999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px 0 rgba(29,53,87,0.14);
  padding: 36px 30px 28px 30px;
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: fadeinModal 0.28s;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.14s;
}
.cookie-modal .modal-close:focus,
.cookie-modal .modal-close:hover {
  background: #821012;
  outline: none;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 3px;
  margin-top: 6px;
}
.cookie-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-list .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fbfc;
  padding: 10px 12px;
  border-radius: 7px;
}
.cookie-list label {
  flex: 1;
  color: #22313a;
  font-weight: 500;
  font-size: 1rem;
}
.cookie-list input[type=checkbox]:not(:disabled) {
  accent-color: var(--primary);
  width: 20px; height: 20px;
}
.cookie-list input[type=checkbox][disabled] {
  accent-color: #B8B8B8;
  background: #ddd;
  cursor: not-allowed;
}
@keyframes fadeinModal {
  0% { transform: translateY(40px) scale(0.93); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* =====================================================================
   RESPONSIVE DESIGN (MOBILE FIRST)
====================================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
  }
  .hero {
    padding: 36px 0 16px 0;
  }
  .section {
    padding: 24px 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .card-container,
  .service-list, .case-study-grid, .testimonial-list, .content-grid {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .content-grid {
    justify-content: flex-start;
  }
  .testimonial-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section {
    padding: 18px 6px;
    margin-bottom: 38px;
  }
  .contact-banner {
    border-radius: 0;
    padding: 18px 4px;
  }
  .case-study-grid > div, .card, .service-cards > div, .service-list > div, .feature-item, .testimonial-card {
    padding: 18px 10px;
    min-width: 0;
    max-width: 100%;
  }
  .content-wrapper, .text-section {
    gap: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .contact-info-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero .container {
    padding: 0 6px;
  }
}
@media (max-width: 550px) {
  header .container {
    padding-left: 6px;
    padding-right: 6px;
    min-height: 58px;
    gap: 10px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
  .cta-btn {
    font-size: 1em;
    padding: 10px 18px;
  }
  .mobile-nav {
    padding: 32px 12px;
    gap: 24px;
    margin-top: 12px;
  }
  .section {
    padding: 11px 4px;
    margin-bottom: 26px;
    gap: 12px;
  }
  .offer-list li {
    font-size: 1em;
    padding: 11px 11px;
  }
  .cookie-banner {
    padding: 11px 8px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .footer-brand span {
    font-size: 13px;
  }
  footer nav {
    gap: 11px;
    font-size: 13px;
  }
}

/* =====================================================================
   SCANDINAVIAN MICRO-INTERACTIONS
====================================================================== */
.card, .service-cards > div, .service-list > div, .feature-grid li, .case-study-grid > div, .testimonial-card, .offer-list li {
  transition: box-shadow 0.18s cubic-bezier(.8,.2,.18,1), transform 0.13s;
}
.card:active, .service-cards > div:active, .service-list > div:active, .feature-grid li:active, .case-study-grid > div:active {
  box-shadow: 0 1px 6px 0 rgba(178,34,43,0.04);
  transform: scale(0.985);
}

/* =====================================================================
   ACCESSIBILITY & UTILITIES
====================================================================== */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

[tabindex="0"]:focus,
a:focus,
button:focus {
  box-shadow: 0 0 1px 2px #fce6e7, 0 0 6px 2px var(--accent);
}

/* Hide visually but keep accessible (for cookie modal toggles etc.) */
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* =====================================================================
   MISC. TYPOGRAPHIC HIERARCHY
====================================================================== */
strong {
  font-weight: 700;
  color: var(--primary);
}
.text-section ul {
  list-style: disc inside;
  color: #43576a;
  margin-bottom: 0;
}
.text-section li {
  margin-bottom: 3px;
}

/* =====================================================================
   PRINT STYLES (BASIC)
====================================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
}
