/* -----------------------------
   CSS RESET & NORMALIZE RULES
----------------------------- */
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;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  background: #E8EEF1;
  color: #184A54;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* -----------------------------
   BRAND FONTS & COLORS
----------------------------- */
:root {
  --sm-primary: #184A54;
  --sm-secondary: #E8EEF1;
  --sm-accent: #DCA96B;
  --sm-dark: #153236;
  --sm-light: #FFFFFF;
  --sm-gradient: linear-gradient(98deg, #184A54 0%, #4bd3c9 100%);
  --sm-gradient-light: linear-gradient(98deg, #E8EEF1 0%, #BFE3EA 100%);
  --sm-radius: 16px;
  --sm-shadow: 0 6px 24px rgba(24, 74, 84, 0.10), 0 1.5px 4.5px rgba(24,74,84,0.09);
  --sm-transition: 0.19s cubic-bezier(.53,.01,.49,1.3);
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
  font-display: swap;
}

/* -----------------------------
   GENERIC CONTAINER & LAYOUT
----------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -----------------------------
   TYPOGRAPHY
----------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #184A54;
  line-height: 1.2;
}
h1 {
  font-size: 2.8rem;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.33rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.5em;
  color: #184A54;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 0.5em;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

/* Typography for legal/policy pages */
.legal h1, .legal h2, .legal h3 {
  color: #184A54;
  margin-bottom: 14px;
}
.legal ul {
  list-style: disc;
  margin-bottom: 18px;
}

/* -----------------------------
   HEADER, NAVIGATION & BRAND
----------------------------- */
header {
  background: var(--sm-gradient);
  box-shadow: 0 4px 20px rgba(24, 74, 84, 0.13);
  padding: 0;
  z-index: 20;
  position: relative;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.main-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 8px 4px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: rgba(220,169,107, 0.13);
  color: var(--sm-accent);
}
.header-container .btn-primary {
  margin-left: 18px;
}

/* Burger menu (mobile) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 21px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 101;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(24,74,84,0.18);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--sm-gradient);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.72,-0.23,.42,1.28);
  padding: 24px 32px 32px 20px;
  box-shadow: 0 6px 24px rgba(24, 74, 84, .14);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 12px;
  margin-bottom: 14px;
  margin-left: auto;
  background: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  border: none;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(31,31,31,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #fff;
  padding: 10px 0;
  letter-spacing: 0.04em;
  border-radius: 7px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--sm-accent);
  background: rgba(255,255,255,0.08);
}

/* Responsive Nav: hide desktop on mobile, show burger */
@media (max-width: 1000px) {
  .main-navigation {
    display: none;
  }
  .header-container .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
  background: var(--sm-gradient-light);
  border-bottom-left-radius: var(--sm-radius);
  border-bottom-right-radius: var(--sm-radius);
  min-height: 340px;
  margin-bottom: 48px;
  box-shadow: 0 4px 18px rgba(24, 74, 84, 0.07);
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: var(--sm-primary);
}
.hero p {
  color: var(--sm-dark);
  font-size: 1.13rem;
  max-width: 650px;
}
.hero .btn-primary {
  margin-top: 14px;
}

/* -----------------------------
   FEATURES SECTION
----------------------------- */
.features {
  background: #fff;
  border-radius: var(--sm-radius);
  box-shadow: var(--sm-shadow);
  margin-bottom: 52px;
}
.features .content-wrapper {
  gap: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--sm-secondary);
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(24,74,84,0.05);
  padding: 24px 18px;
  transition: box-shadow .23s, transform .23s;
}
.feature img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.feature h3 {
  color: var(--sm-primary);
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 32px rgba(24,74,84,0.13);
  transform: translateY(-4px) scale(1.02);
}

/* USP, Brand Values */
.usp-list, .brand-values {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 10px 0;
}
.usp-list li, .brand-values li{
  padding-left: 20px;
  position: relative;
  color: var(--sm-primary);
  font-size: 1.04rem;
}
.usp-list li::before, .brand-values li::before{
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sm-accent);
  margin-right: 10px;
  position: absolute; left: 0; top: 7px;
}

/* -----------------------------
   SERVICES / CARDS
----------------------------- */
.services, .services-details {
  background: #fff;
  border-radius: var(--sm-radius);
  margin-bottom: 52px;
  box-shadow: var(--sm-shadow);
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--sm-secondary);
  border-radius: 11px;
  padding: 24px 19px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(24,74,84,0.05);
  transition: box-shadow .22s, transform .22s;
}
.service-card h3 {
  color: var(--sm-primary);
  margin-bottom: 0;
}
.service-card .price {
  display: inline-block;
  background: var(--sm-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.03rem;
  border-radius: 8px;
  padding: 3px 12px;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(24,74,84,0.065);
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 30px rgba(24,74,84,0.10);
  transform: translateY(-3px) scale(1.015);
}

.service-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 16px 0;
}
.pricing-highlights {
  background: var(--sm-secondary);
  border-radius: 10px;
  padding: 17px 18px;
  margin-top: 23px;
  box-shadow: 0 1px 5px rgba(24,74,84,0.045);
}
.pricing-highlights h3 {
  margin-bottom: 11px;
}
.pricing-highlights ul {
  padding-left: 28px;
}

/* -----------------------------
   ABOUT HOME & ABOUT SECTION
----------------------------- */
.about-home, .about-section, .contact-content, .contact-section {
  background: #fff;
  border-radius: var(--sm-radius);
  box-shadow: var(--sm-shadow);
  margin-bottom: 54px;
}
.about-home .content-wrapper, .about-section .content-wrapper {
  gap: 16px;
}

/* -----------------------------
   TESTIMONIALS
----------------------------- */
.testimonials {
  background: #fff;
  border-radius: var(--sm-radius);
  box-shadow: var(--sm-shadow);
  margin-bottom: 52px;
  padding-bottom: 0;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F8F9;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px rgba(24,74,84,0.08);
  position: relative;
  color: #184A54;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #184A54;
  margin-right: 15px;
}
.testimonial-card span {
  font-size: 0.96rem;
  font-weight: 600;
  color: #184A54;
  opacity: 0.75;
}

/* -----------------------------
   CTA SECTION
----------------------------- */
.cta {
  background: var(--sm-gradient);
  color: #fff;
  border-radius: var(--sm-radius);
  box-shadow: 0 4px 18px rgba(24, 74, 84, 0.10);
  margin-bottom: 40px;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2, .cta h1, .cta p {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 10px;
}

/* -----------------------------
   BUTTONS & INTERACTIVES
----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 9px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .22s, color .22s, box-shadow .23s, transform .17s;
  box-shadow: 0 2px 10px rgba(24, 74, 84, 0.07);
  border: none;
  outline: none;
  text-align: center;
  margin-top: 6px;
}
.btn-primary {
  background: var(--sm-accent);
  color: #fff;
  box-shadow: 0 2.5px 12px rgba(220, 169, 107, .12);
}
.btn-primary:hover, .btn-primary:focus {
  background: #b68547;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 32px rgba(220,169,107,0.13);
}
.btn-secondary {
  background: #fff;
  color: var(--sm-primary);
  border: 1.5px solid var(--sm-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--sm-secondary);
  color: var(--sm-primary);
  box-shadow: 0 5px 22px rgba(24, 74, 84, .08);
}

/* -----------------------------
   FOOTER
----------------------------- */
footer {
  background: var(--sm-dark);
  color: #e5e5ea;
  margin-top: 60px;
  padding-top: 24px;
  padding-bottom: 22px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}
.footer-navigation {
  flex: 3 1 360px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: flex-start;
}
.footer-navigation a {
  color: #b5cad1;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 3px;
  padding: 3px 2px;
  border-radius: 5px;
  transition: color .18s, background .19s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: var(--sm-accent);
  background: rgba(220,169,107,0.07);
}
.footer-social {
  flex: 1 1 95px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.footer-social a img {
  width: 27px;
  height: 27px;
  display: block;
  opacity: 0.82;
  filter: grayscale(.18);
  transition: opacity .15s, filter .15s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 2px 5px rgba(220,169,107,0.17));
}
footer p {
  font-size: 0.93rem;
  color: #8FB3BC;
  margin-top: 14px;
}
footer a {
  color: inherit;
}

/* -----------------------------
   CONTACT DETAILS BLOCKS
----------------------------- */
.contact-details {
  background: var(--sm-secondary);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 10px rgba(24,74,84,0.05);
  color: #184A54;
  font-size: 1.06rem;
}

/* -----------------------------
   LEGAL PAGE LAYOUT
----------------------------- */
.legal {
  background: #fff;
  border-radius: var(--sm-radius);
  box-shadow: var(--sm-shadow);
  margin-bottom: 60px;
}
.legal .content-wrapper {
  gap: 18px;
  color: #184A54;
}

/* -----------------------------
   MISC
----------------------------- */
.price {
  font-weight: 600;
  color: var(--sm-accent);
}

/* -----------------------------
   FLEXBOX LAYOUTS (MANDATORY PATTERNS)
----------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------
   RESPONSIVE
----------------------------- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .service-cards, .feature-grid,
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 12px; padding-right: 12px; }
  .section { padding: 28px 7px; margin-bottom: 38px; }
  .hero { padding: 22px 7px 26px 7px; }
  .features, .about-home, .about-section, .services, .services-details, .cta, .testimonials, .legal, .contact-content, .contact-section {
    padding: 22px 7px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .feature, .service-card, .testimonial-card {
    padding: 16px 11px;
    border-radius: 9px;
    min-width: 0;
  }
  .footer-container { gap: 14px; }
  .content-wrapper { gap: 15px; }
  .feature-grid, .service-cards, .content-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .hero h1, .cta h1, .cta h2, .section h2 { font-size: 2rem; }
  .main-navigation { display: none; }
  .header-container .btn-primary { display: none; }
  .footer-navigation { flex-wrap: wrap; gap: 12px 9px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .footer-brand p,
  footer p { font-size: 0.89rem; }
  .hero h1, .cta h1, .cta h2 { font-size: 1.45rem; }
}

/* -----------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #184A54;
  box-shadow: 0 -6px 26px rgba(24,74,84,0.09);
  padding: 19px 24px 18px 24px;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform .32s cubic-bezier(.52,.16,.74,1.25), opacity .21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-actions {
  display: flex;
  gap: 17px;
}
.cookie-banner .btn {
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(24,74,84,.04);
  margin-top: 0;
}
.cookie-banner .btn-accept {
  background: var(--sm-accent);
  color: #fff;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #b68547;
}
.cookie-banner .btn-reject {
  background: #E8EEF1;
  color: var(--sm-primary);
  border: 1.2px solid var(--sm-primary);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #D2E3EA;
}
.cookie-banner .btn-settings {
  background: var(--sm-primary);
  color: #fff;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #153236;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,74,84,0.22);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .27s;
  opacity: 1;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
/* Cookie modal */
.cookie-modal {
  background: #fff;
  border-radius: 21px;
  padding: 38px 28px 24px 28px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 7px 30px rgba(24,74,84,0.25);
  color: #184A54;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.42rem;
  color: #184A54;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 0 8px 2px;
  border-radius: 8px;
  transition: background .14s;
}
.cookie-category.essential {
  font-weight: 600;
  color: var(--sm-accent);
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--sm-accent);
  margin-right: 3px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 19px;
  background: none;
  color: #184A54;
  cursor: pointer;
  font-size: 1.32rem;
  border-radius: 6px;
  border: none;
  transition: background .13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: rgba(24,74,84,0.075);
}

@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 20px 7px 14px 7px;
    border-radius: 15px;
  }
  .cookie-banner {
    padding: 11px 8px 12px 8px;
    font-size: .98rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
}

/* -----------------------------
   MICRO-INTERACTIONS & TRANSITIONS
----------------------------- */
a, .btn, .service-card, .feature, .mobile-nav a, .main-navigation a, .footer-navigation a {
  transition-property: background, color, box-shadow, transform;
  transition-duration: .19s, .19s, .19s, .17s;
  transition-timing-function: cubic-bezier(.72,-0.11,.61,1.18);
}

/* -----------------------------
   SYSTEM CLASSES OVERRIDES
----------------------------- */
[hidden], .hidden { display: none !important; }

/* -----------------------------
   Z-INDEX LAYERING
----------------------------- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 9999;
}
section {
  padding: 20px 0;
}