/* ==================================================  
   CSS RESET & NORMALIZE (MOBILE-FIRST)  
================================================== */
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,
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;
}

html {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F4F4F9;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  color: #222;
  background: #F4F4F9;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #1A2238;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #21C0AA;
}

ul, ol {
  margin-left: 1.25em;
  margin-bottom: 24px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2238;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 1.5rem; line-height: 1.15; margin-bottom: 18px; }
h3 { font-size: 1.20rem; line-height: 1.20; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; line-height: 1.2; }

p, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #21C0AA;
  padding-left: 16px;
  margin: 0 0 12px;
  color: #272b3c;
  background: #F4F4F9;
}

strong {
  font-weight: 700;
}


/* ==================================================  
   COLORS & VARIABLES  
================================================== */
:root {
  --primary: #1A2238;
  --secondary: #21C0AA;
  --accent: #F4F4F9;
  --card-bg: #fff;
  --border-radius: 12px;
  --shadow-md: 0 4px 14px 0 rgba(31,39,61,.08);
  --shadow-xs: 0 1px 4px rgba(31,39,61,.03);
}


/* ==================================================  
   GENERAL CONTAINERS & LAYOUTS (FLEXBOX ONLY)  
================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.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;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 20px;
  min-width: 0;
  min-height: 180px;
  margin-bottom: 24px;
  transition: box-shadow .18s, transform .18s;
  border-top: 6px solid var(--secondary);
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 28px 0 rgba(31,39,61,0.13);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Geometric features section layout */
.features-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div,
.service-cards > div {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 4px solid var(--secondary);
  gap: 12px;
  transition: box-shadow .18s, border-bottom .18s, transform 0.12s;
}
.features-grid > div:hover,
.service-cards > div:hover {
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--primary);
  transform: translateY(-4px) scale(1.025);
}


/* ==================================================  
   NAVIGATION (DESKTOP & MOBILE BURGER MENU)
================================================== */
header {
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 12px 0 rgba(31,39,61,0.05);
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 11px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: none;
  padding: 7px 9px;
  border-radius: 7px;
  transition: background 0.16s, color .15s;
  margin-right: 5px;
}

.main-nav > a.img, .main-nav > a > img {
  margin-right: 20px;
}
.main-nav > a.cta-primary {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 9px 18px 9px 18px;
  border-radius: 30px;
  box-shadow: var(--shadow-xs);
  margin-left: 8px;
  margin-right: 0px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  border: none;
}
.main-nav > a.cta-primary:hover,
.main-nav > a.cta-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 28px 0 rgba(33,192,170,0.17);
}

.main-nav > a:hover,
.main-nav > a:focus {
  color: var(--secondary);
  background: #e8f7f5;
}

.mobile-menu-toggle {
  display: block;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 40;
  background: var(--secondary);
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #fff;
  transition: background 0.17s;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* Desktop nav hiding burger */
@media (min-width: 1040px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1039px) {
  .main-nav {
    display: none !important;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 100;
  background: rgba(26,34,56,0.95);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 20px 22px 20px 0px;
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 102;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100vw;
  align-items: flex-start;
  padding: 10px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 0;
  width: 100%;
  border-radius: 0 16px 16px 0;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  min-height: 42px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}


/* ==================================================  
   HERO & GENERAL CTA SECTIONS  
================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section:last-child {
  margin-bottom: 0;
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(33,192,170,0.07);
  transition: background 0.17s, box-shadow 0.18s, color 0.16s, transform 0.12s;
  margin: 6px 0 6px 0;
}
.cta-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-xs);
  border-bottom: 4px solid #18a18a;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(33,192,170,0.15);
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
}


/* ==================================================  
   BLOG/FILTERS
================================================== */
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin-bottom: 24px;
  margin-left: 0;
}
.categories-filter li {
  background: #fff;
  border: 2px solid var(--secondary);
  border-radius: 25px;
  padding: 8px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
  transition: border-color 0.15s, background 0.18s, color 0.16s;
  cursor: pointer;
}
.categories-filter li:hover, .categories-filter li.active {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
}

.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-post-list article {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 22px 16px 18px 16px;
  width: 100%;
  min-width: 240px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: box-shadow .16s, transform .16s;
  border-left: 4px solid var(--primary);
}
.blog-post-list article:hover {
  box-shadow: 0 6px 22px 0 rgba(26,34,56,0.11);
  transform: translateY(-2px) scale(1.015);
}
.blog-post-list article h3 { font-size: 1.16rem; margin-bottom: 8px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
.blog-post-list article a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 4px;
}

/* ==================================================  
   TESTIMONIALS SLIDER / STARS  
================================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
  justify-content: flex-start;
}
.stars {
  color: #FFD700;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
  margin-top: -4px;
}
.author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #888aa3;
  font-weight: 500;
}

/* ==================================================  
   CUSTOM UL/LI ICON STYLES   
================================================== */
ul li, ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}
ul li img, ol li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
  filter: none;
}

/* ==================================================  
   FOOTER
================================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0 0 0 0;
  font-size: 1rem;
  border-top: 6px solid var(--secondary);
  margin-top: 42px;
  letter-spacing: 0.01em;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 4px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
max-width: 50px;
margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
  padding: 3px 9px;
  transition: background 0.14s, color 0.14s;
  margin-bottom: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 9px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #fff;
  padding: 3px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.15s, filter 0.14s;
}
.footer-social img:hover {
  box-shadow: 0 2px 14px 0 rgba(33,192,170,0.13);
  filter: drop-shadow(0 0 1px #21c0aa);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 12px 0 14px 0;
  font-size: .97rem;
  color: #e7e8ee;
  background: #171c30;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 18px;
}


/* ==================================================  
   COOKIE CONSENT BANNER & MODAL  
================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #fff;
  color: #191b2c;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 -2px 16px rgba(26,34,56,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-top: 4px solid var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner.hide {
  display: none !important;
}
.cookie-banner p {
  font-size: 1rem;
  margin: 0 0 6px 0;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 2em;
  padding: 9px 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  margin: 0 2px 2px 0;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--primary);
}
.cookie-reject {
  background: #F4F4F9;
  color: #1A2238;
  border: 2px solid var(--secondary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #ffe7ee;
  color: #1A2238;
  border: 2px solid var(--primary);
}
.cookie-settings {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 330;
  background: rgba(26,34,56,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  min-width: 90vw; max-width: 425px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 8px 42px 0 rgba(31,39,61,.15);
  color: #1A2238;
  padding: 36px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-family: 'Roboto', Arial, sans-serif;
  align-items: flex-start;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 9px;
  color: var(--primary);
}
.cookie-modal label {
  font-size: 1.05rem;
  margin-right: 7px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 19px;
  width: 100%;
  display: flex;
  gap: 17px;
}
.cookie-modal .toggle-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .toggle-group label {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1a2238;
}
.cookie-toggle {
  margin-left: 7px;
  appearance: none;
  border: 2px solid var(--secondary);
  width: 36px; height: 20px;
  border-radius: 18px;
  background: #F4F4F9;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.cookie-toggle:checked {
  background: var(--secondary);
  border-color: var(--primary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.cookie-toggle:checked:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-essential {
  opacity: .6;
  font-style: italic;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 18px;
  border: none;
  font-size: 1.3rem;
  background: none;
  color: #222a4c;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close-modal:hover {
  color: var(--secondary);
}

@media (min-width: 520px) {
  .cookie-modal {
    min-width: 370px;
  }
}

/* ==============================
   RESPONSIVE & FLEX LAYOUTS
=============================== */
@media (max-width: 1040px) {
  .content-wrapper,
  .features-grid,
  .service-cards,
  .testimonial-slider,
  .content-grid,
  .blog-post-list {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .features-grid > div,
  .service-cards > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .features-grid,
  .service-cards,
  .testimonial-slider,
  .content-grid,
  .blog-post-list,
  .footer-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }
  .card-container {
    flex-direction: column !important;
  }
  .features-grid > div,
  .service-cards > div,
  .blog-post-list article {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 22px !important;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    top: 8px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  section {
    padding: 28px 7px;
    gap: 0 !important;
  }
  .container {
    padding: 0 7px;
  }
  .footer-brand img {
    width: 80px;
  }
  .footer-bottom {
    font-size: .93rem;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
  .cookie-banner p { font-size: .98rem; }
  .cta-primary, .cta-secondary {
    padding: 10px 11px;
    font-size: 1.025rem;
  }
  .features-grid > div,
  .service-cards > div {
    padding: 17px 6px 16px 6px;
  }
}

/* ================
  UTILITIES
================ */
.geometric-shape {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: var(--secondary);
  mask-image: url('assets/icons/hexagon.svg');
  mask-size: cover;
  margin-right: 14px;
  vertical-align: middle;
}

/* ========================
   SHADOW LIFT
======================== */
.lift:hover, .lift:focus {
  box-shadow: 0 6px 26px 0 rgba(26,34,56,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* ===================
   FORM FIELDS (newsletter)
=================== */
input, textarea, select {
  font: inherit;
  border-radius: 8px;
  border: 1.5px solid #ccd3ea;
  padding: 9px 13px 9px 13px;
  margin-bottom: 9px;
  background: #fff;
  color: #222a39;
  appearance: none;
  transition: border .14s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
}

/* ===================
   GEOMETRIC TYPOGRAPHY 
=================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&display=swap');
html, body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .main-nav > a, .footer-nav a, .cta-primary, .cta-secondary, .stars, .mobile-nav a, .categories-filter li, .blog-post-list article h3, .author {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* =======================
   ACCESSIBILITY/FOCUS STATES
======================= */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* =======================
   SPACING CLARITY
======================= */
.features-grid > div:not(:last-child),
.service-cards > div:not(:last-child),
.testimonial-card:not(:last-child),
.blog-post-list article:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > * + * {
  margin-top: 0px !important;
}

/* =======================
   SPECIAL FLEX SECTION SPACINGS
======================= */
.features-grid, .service-cards, .testimonial-slider, .card-container {
  gap: 24px;
  margin-bottom: 4px;
}

/* =======================
     PRINT BASIC
======================= */
@media print {
  body, html {
    background: #fff;
    color: #181c23;
  }
  .main-nav, .footer-nav, .footer-social, .cta-primary, .cta-secondary, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container, section, .content-wrapper { padding: 0 !important; margin: 0 !important; }
  a { text-decoration: underline !important; color: #000 !important; }
}
