/* Amber Breeze Legal - Scandinavian Clean Style 
-------------------------------------------------- 
RESET & NORMALIZE
-------------------------------------------------- */
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,
main,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;
}
/* HTML5 display-role reset */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1C2331;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a { color: #1C2331; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FECB57; outline: none; }
img { max-width: 100%; height: auto; display: block; }

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

/* --------------------------------------------------
COLOR VARIABLES AND SCANDINAVIAN THEME
-------------------------------------------------- */
:root {
  --primary: #1C2331;
  --secondary: #FECB57;
  --accent: #F6F6F6;
  --white: #fff;
  --black: #1C2331;
  --gray-light: #EBEBEB;
  --gray: #A6A6A6;
  --shadow: 0 3px 16px 0 rgba(28,35,49,0.05);
  --radius: 12px;
  --shadow-card: 0 1.5px 8px 0 rgba(28,35,49,0.08);
}

/* --------------------------------------------------
LAYOUT HELPERS
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
main { min-height: 70vh; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(28,35,49,0.13); 
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 260px;
}
@media (max-width: 768px) {
  .testimonial-card {
    min-width: unset;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --------------------------------------------------
TYPOGRAPHY
-------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
h1 { font-size: 2.2rem; margin-bottom: 18px; }
h2 { font-size: 1.6rem; margin-top: 18px; }
h3 { font-size: 1.1rem; }
h4, h5, h6 { font-size: 1rem; }
p,li,span,table,td,th {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
}
strong { font-weight: 700; }
ul,ol {
  padding-left: 20px;
  margin-bottom: 16px;
  line-height: 1.7;
}
li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
}

/* --------------------------------------------------
HEADER / NAVIGATION
-------------------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 3px 16px rgba(28,35,49,0.03);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2px solid var(--secondary);
  color: var(--secondary);
}
.cta-primary {
  background: var(--secondary);
  color: var(--primary) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 36px;
  border-radius: 999px;
  font-size: 1rem;
  border: none;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(28,35,49,0.06);
  transition: background 0.20s, box-shadow 0.22s, color 0.18s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none; 
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFD983;
  color: var(--primary);
  box-shadow: 0 6px 32px 0 rgba(28,35,49,0.10);
}

/* Hamburger (mobile only) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.15s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--secondary);
  outline: none;
}
@media (max-width: 1000px) {
  header nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  box-shadow: 0 5px 40px rgba(28,35,49,0.22);
  z-index: 201;
  transform: translateX(-120%);
  transition: transform 0.33s cubic-bezier(.76,0,.24,1);
  overflow-y: auto;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 0 7px 6px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --------------------------------------------------
HERO + CTA SECTIONS
-------------------------------------------------- */
.hero {
  background: var(--accent);
  border-bottom: 1px solid var(--gray-light);
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.hero .container { justify-content: center; }
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.2rem;
  color: #454B5A;
  margin-bottom: 24px;
  max-width: 780px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
  .hero h1 { font-size: 1.35rem; }
  .hero p { font-size: 1rem; }
}
.cta {
  margin-bottom: 0;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
  background: var(--secondary);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -5px 18px 0 rgba(28,35,49,0.03);
}
.cta h2 {
  margin-bottom: 18px;
  color: var(--primary);
}
.cta .cta-primary {
  margin-top: 10px;
}

/* --------------------------------------------------
FEATURES & SERVICES LISTS
-------------------------------------------------- */
.features {
  background: var(--white);
  padding-bottom: 0;
  margin-bottom: 60px;
}
.features .content-wrapper ul,
.features .content-wrapper ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
}
.features .content-wrapper ul li,
.features .content-wrapper ol li {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.16s;
}
.features .content-wrapper ul li:hover,
.features .content-wrapper ol li:hover {
  box-shadow: 0 7px 40px 0 rgba(28,35,49,0.10);
}
.features .content-wrapper ul li img,
.features .content-wrapper ol li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: grayscale(12%);
}
.features h3 {
  font-size: 1.08rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.features p {
  color: #454B5A;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .features .content-wrapper ul,
  .features .content-wrapper ol {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .features .content-wrapper ul li,
  .features .content-wrapper ol li {
    min-width: unset;
    padding: 18px 12px;
  }
}

.services {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
}
.services .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0 0 18px 0;
}
.services .content-wrapper ul li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  transition: box-shadow 0.16s;
}
.services .content-wrapper ul li:hover {
  box-shadow: 0 7px 35px 0 rgba(28,35,49,0.08);
}
.services .content-wrapper ul li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: grayscale(12%);
}
.services h3 { color: var(--primary); }
.services p strong { color: var(--primary); font-weight: 700; }
@media (max-width: 900px) {
  .services .content-wrapper ul {
    flex-direction: column;
    gap: 18px;
  }
}

/* --------------------------------------------------
ARTICLES / ARTICLE LISTS
-------------------------------------------------- */
.articles {
  background: var(--white);
  padding-bottom: 10px;
  margin-bottom: 60px;
}
.article-categories {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
}
.article-categories a {
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.article-categories a:hover, .article-categories a.active {
  background: var(--secondary);
  color: var(--primary);
}
.article-list {
  list-style: none;
  margin: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.article-list li {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
}

/* --------------------------------------------------
TABLES & PRICING
-------------------------------------------------- */
.pricing {
  padding: 32px 0 32px 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
}
.pricing table {
  width: 100%;
  border-radius: var(--radius);
  border-collapse: collapse;
  background: var(--accent);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 18px 14px;
  text-align: left;
}
.pricing th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
}
.pricing tr {
  border-bottom: 1px solid var(--gray-light);
}
.pricing tr:last-child { border-bottom: none; }
.pricing td {
  font-size: 1rem;
}
@media (max-width: 700px) {
  .pricing table, .pricing thead, .pricing tbody, .pricing th, .pricing td, .pricing tr {
    display: block;
    width: 100%;
  }
  .pricing th, .pricing td {
    padding: 12px 8px;
    font-size: 0.98rem;
  }
}

/* --------------------------------------------------
TESTIMONIALS & REVIEWS
-------------------------------------------------- */
.testimonials {
  background: var(--white);
  margin-bottom: 60px;
  padding-bottom: 28px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 290px;
  margin-bottom: 20px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.07rem;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 24px 20px 18px 22px;
  min-width: 220px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 34px 0 rgba(28,35,49,0.11);
  transform: translateY(-2px);
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #777E8D;
  margin-top: 6px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: normal;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    min-width: unset;
  }
}

/* --------------------------------------------------
CONTACT PAGE
-------------------------------------------------- */
.contact {
  background: var(--accent);
  padding: 40px 0 30px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 50px;
}
.contact .content-wrapper {
  gap: 28px;
  max-width: 700px;
}
.text-section {
  margin-bottom: 12px;
}
.brand-contact {
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
  margin-bottom: 0;
}
.brand-contact a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.15s;
}
.brand-contact a:hover, .brand-contact a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* --------------------------------------------------
LEGAL INFO PAGES (PRIVACY, GDPR, COOKIES, TERMS)
-------------------------------------------------- */
.legal {
  background: var(--accent);
  padding: 40px 0 30px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
}
.legal .content-wrapper {
  gap: 18px;
  padding-top: 12px;
}
.legal ul {
  padding-left: 18px;
  margin-bottom: 9px;
  list-style: disc;
}
.legal li {
  margin-bottom: 7px;
}

/* --------------------------------------------------
FOOTER (SCANDINAVIAN STYLE)
-------------------------------------------------- */
footer {
  background: var(--accent);
  border-top: 1px solid var(--gray-light);
  padding: 36px 0 24px 0;
  min-height: 110px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
footer nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 4px 0;
  border-radius: 5px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  background: var(--gray-light);
}
footer .brand-contact {
  font-size: 0.95rem;
  color: #404050;
  gap: 2px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --------------------------------------------------
CONFIRMATION PAGE (THANK YOU)
-------------------------------------------------- */
.confirmation {
  background: var(--accent);
  padding: 48px 0 44px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  min-height: 280px;
  text-align: center;
}
.confirmation h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 18px;
}
.confirmation p {
  font-size: 1.15rem;
  color: #454B5A;
  margin-bottom: 24px;
}

/* --------------------------------------------------
COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 3000;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(28,35,49,0.10);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 480px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hide {
  opacity: 0; 
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  margin-right: 6px;
}
.cookie-accept {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #FFD983;
  color: var(--primary);
}
.cookie-reject {
  background: var(--gray-light);
  color: var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-settings {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-light);
}
.cookie-settings:hover, .cookie-settings:focus {
  border-color: var(--secondary);
  background: var(--accent);
  color: var(--primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(32,36,52,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.34s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 420px;
  width: 96%;
  padding: 32px 24px;
  box-shadow: 0 6px 28px 0 rgba(28,35,49,0.17);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  animation: fadeInUp 0.35s cubic-bezier(.76,0,.24,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(90px); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
}
.cookie-pref-item .toggle {
  accent-color: var(--secondary);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-modal button {
  padding: 9px 18px;
}
.cookie-modal .close-btn {
  background: var(--gray-light);
  color: var(--primary);
  border: 1px solid var(--gray);
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}


/* --------------------------------------------------
MICRO-INTERACTIONS & ANIMATIONS
-------------------------------------------------- */
button, .cta-primary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.19s, color 0.12s, box-shadow 0.22s, transform 0.14s;
}
.card, .testimonial-card, .article-list li, .services .content-wrapper ul li {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:active, .testimonial-card:active, .services .content-wrapper ul li:active {
  transform: scale(0.99);
}

/* Focus style for accessibility */
a:focus, button:focus, .cta-primary:focus, input:focus, select:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* --------------------------------------------------
RESPONSIVENESS (MOBILE-FIRST)
-------------------------------------------------- */
@media (max-width: 700px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .section { padding: 28px 5px; }
  .card, .article-list li, .testimonial-card {
    padding: 14px 10px;
    min-width: unset;
  }
  .card-container, .content-wrapper { gap: 14px; }
  .features .content-wrapper ul li,
  .services .content-wrapper ul li {
    padding: 14px 7px; min-width: unset;
  }
  .hero { padding-bottom: 20px; padding-top: 23px; }
  .cta { padding: 19px 0; }
}
@media (max-width: 500px) {
  .cookie-banner { left: 4px; right: 4px; max-width: 99vw; padding: 16px 7px; }
}

/*---------------------
SCROLLBAR (optional)
---------------------*/
::-webkit-scrollbar {width:10px; background:var(--accent);}
::-webkit-scrollbar-thumb {background:var(--gray-light); border-radius:8px;}

/*----------------------
UTILITIES
----------------------*/
.hide { display: none !important; }

/* END CSS */
