/* ------------------
   RESET & BASELINE
------------------- */
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;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #151D13;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #265C3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AB8E04;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
}

/* 1. CONTAINER LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 2. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #265C3A;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.2rem;
  margin-top: 16px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.6rem;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.2rem;
  margin-top: 20px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-top: 16px;
}
p, li, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222820;
}
strong {
  font-weight: 700;
  color: #265C3A;
}
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-weight: 600;
}

/* 3. HEADER & MAIN NAVIGATION */
header {
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #EDEDED;
  box-shadow: 0 2px 10px rgba(38,92,58,0.06);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 0;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #265C3A;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  text-transform: uppercase;
}
header nav a.button-primary {
  background: #265C3A;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(38,92,58,0.14);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  font-size: 1rem;
  padding: 10px 18px;
  margin-left: 10px;
  border: none;
}
header nav a.button-primary:hover, header nav a.button-primary:focus {
  background: #AB8E04;
  color: #222820;
  box-shadow: 0 2px 12px rgba(171,142,4,0.18);
}
header nav a:hover, header nav a:focus {
  background: #EDEDED;
  color: #AB8E04;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #265C3A;
  margin-left: 12px;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #EDEDED;
}

/* Hamburger menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #265C3A;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 36px 8px rgba(38,92,58,0.25);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 22px;
  line-height: 1;
  padding: 4px 10px 0 0;
  border-radius: 3px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #AB8E04;
  color: #222820;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  padding: 14px 8px;
  border-radius: 6px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D9B504;
  color: #265C3A;
}

@media (max-width: 1100px) {
  header .container {
    flex-wrap: wrap;
    gap: 15px;
  }
  header nav {
    gap: 8px;
  }
}
@media (max-width: 880px) {
  header .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* 4. MAIN LAYOUT: SECTIONS, FLEX SPACING*/
section {
  padding: 40px 0 40px 0;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 2px rgba(38,92,58,0.03);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 44px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(38,92,58,0.07);
  border: 2.5px solid #EDEDED;
  position: relative;
  margin-bottom: 20px;
  padding: 30px 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  section {
    padding: 24px 0 24px 0;
    margin-bottom: 34px;
    border-radius: 9px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
/* Basic grid gap rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f6f9f7;
  border: 2.5px solid #EDEDED;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(38,92,58,0.07);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 500px;
  min-width: 240px;
}
.testimonial-card p {
  color: #265C3A;
  font-size: 1.06rem;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #AB8E04;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* 5. LISTS, ICONS, UL/LIS */
ul {
  list-style: none;
  padding-left: 0;
}
ul > li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0 16px 0;
  border-bottom: 1.5px dashed #EDEDED;
  font-size: 1.08rem;
  color: #13180F;
  margin-bottom: 0;
}
ul > li:last-child {
  border-bottom: none;
}
ul > li img {
  width: 36px;
  height: 36px;
  background: #EDEDED;
  border-radius: 7px;
  padding: 5px;
}

/* 6. BUTTONS */
.button-primary, .content-wrapper a.button-primary, .content-wrapper .button-primary {
  display: inline-block;
  background: #265C3A;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(38,92,58,.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.23s;
  margin-right: 16px;
}
.button-primary:hover,
.button-primary:focus {
  background: #AB8E04;
  color: #222820;
  transform: translateY(-2px) scale(1.033);
  box-shadow: 0 5px 21px 0 rgba(171,142,4,0.19);
}
.button-secondary{
  display: inline-block;
  background: #fff;
  color: #265C3A;
  border: 2px solid #265C3A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(38,92,58,.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.18s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #EDEDED;
  color: #AB8E04;
  border: 2px solid #AB8E04;
}
button[type='submit'] {
  background: #265C3A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  border-radius: 9px;
  padding: 10px 22px;
  margin-left: 9px;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(38,92,58,.1);
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.20s;
}
button[type='submit']:hover,
button[type='submit']:focus {
  background: #AB8E04;
  color: #265C3A;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(171,142,4,0.15);
}

/* 7. ADDRESS BLOCKS */
.address-block {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #f8f8f6;
  border-radius: 14px;
  border: 2px solid #EDEDED;
  padding: 18px 22px;
  box-shadow: 0 3px 12px rgba(38,92,58,0.04);
  min-width: 240px;
  margin: 10px 0 10px 0;
}
.address-block p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #265C3A;
}
.address-block a {
  color: #265C3A;
  font-weight: 700;
  text-decoration: underline;
}
.address-block a:hover {
  color: #AB8E04;
}
.address-block img {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 5px;
  padding: 2px;
  box-shadow: 0 1px 4px 0 rgba(38,92,58,0.09);
}

/* 8. FOOTER  */
footer {
  width: 100%;
  background: #265C3A;
  color: #fff;
  border-top: 5px solid #D9B504;
  margin-top: 30px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
  min-height: 160px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 2px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #AB8E04;
  background: #fff2be05;
  text-decoration: underline;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.social-links a img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #EDEDED;
  padding: 6px;
  transition: background 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 8px rgba(38,92,58,0.07);
}
.social-links a:hover img {
  background: #D9B504;
  box-shadow: 0 3px 14px rgba(171,142,4,0.23);
}
footer .text-section {
  color: #fff;
  margin-top: 0;
}
footer p, footer label {
  color: #fff;
}
footer form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
footer input[type='email'] {
  border: 2px solid #fff;
  border-radius: 7px;
  padding: 7px 13px;
  font-size: 1rem;
  background: #253F2E;
  color: #fff;
  outline: none;
  font-family: 'Open Sans', Arial, sans-serif;
}
footer input[type='email']:focus {
  border-color: #AB8E04;
}
footer button[type='submit'] {
  margin-left: 6px;
  margin-right: 0;
  border-radius: 8px;
  background: #AB8E04;
  color: #253F2E;
  font-weight: 700;
  border: none;
}
footer button[type='submit']:hover {
  background: #fff;
  color: #265C3A;
}
@media (max-width: 930px) {
  footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
    min-height: unset;
  }
}

/* 9. FORMS (contact, newsletter) */
form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  flex-wrap: wrap;
}
input[type='email'],
input[type='text'],
input,
textarea {
  border: 2px solid #EDEDED;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 1rem;
  margin-right: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FCFCFC;
  color: #191D11;
  outline: none;
}
input[type='email']:focus,
input[type='text']:focus,
textarea:focus {
  border-color: #AB8E04;
}

/* 10. COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  z-index: 3000;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #265C3A;
  box-shadow: 0 -2px 20px 0 rgba(38,92,58,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 20px 18px 20px;
  gap: 16px;
  border-radius: 26px 26px 0 0;
  animation: cookieSlideIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.02rem;
  color: #265C3A;
  margin-bottom: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  padding: 10px 18px;
  box-shadow: 0 2px 9px 0 rgba(38,92,58,.12);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: #265C3A;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #AB8E04;
  color: #222820;
}
.cookie-banner .reject {
  background: #fff;
  color: #265C3A;
  border: 2px solid #265C3A;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #AB8E04;
  border-color: #AB8E04;
  color: #222820;
}
.cookie-banner .settings {
  background: #EDEDED;
  color: #265C3A;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #D9B504;
  color: #265C3A;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%) scale(1);
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  color: #265C3A;
  border: 3px solid #D9B504;
  border-radius: 28px;
  box-shadow: 0 6px 46px 0 rgba(38,92,58,0.16);
  padding: 34px 24px 22px 24px;
  animation: cookieModalOpen 0.45s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.open {
  display: block;
}
@keyframes cookieModalOpen {
  from { transform: translate(-50%, -40%) scale(0.93); opacity: 0; }
  to { transform: translate(-50%, -56%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 7px 0 14px 0;
  font-size: 1rem;
}
.cookie-modal label {
  font-weight: 600;
  font-size: 1em;
  color: #222820;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #265C3A;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 26px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .close {
  background: #EDEDED;
  color: #265C3A;
}
.cookie-modal .close:hover {
  background: #D9B504;
  color: #265C3A;
}
.cookie-modal .save {
  background: #265C3A;
  color: #fff;
}
.cookie-modal .save:hover {
  background: #AB8E04;
  color: #253F2E;
}

/* 11. UTILITY CLASSES */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.rounded { border-radius: 8px; }
.hide { display: none !important; }

/* 12. RESPONSIVE MEDIA QUERIES */
@media (max-width: 600px) {
  h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.13rem;
    margin-top: 18px;
  }
  .card {
    padding: 18px 10px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 10px 6px;
    border-radius: 9px;
    font-size: 0.97rem;
  }
  .footer-menu {
    gap: 2px;
  }
  .address-block {
    padding: 10px 8px;
    border-radius: 7px;
  }
  .cookie-modal {
    border-radius: 11px;
    min-width: 0;
    padding: 18px 6px 16px 6px;
  }
}
@media (max-width:380px) {
  .cookie-banner {
    border-radius: 7px 7px 0 0;
    padding: 16px 4px 8px 4px;
  }
}

/* 13. GEOMETRIC/STRUCTURED VISUALS */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-variation-settings: 'wght' 700, 'opsz' 22;
  letter-spacing: 0.03em; 
  text-shadow: 1px 1px 0 #EDEDED, 2px 2px 0 #fff0;
}
.card, .testimonial-card, .address-block {
  box-shadow: 0 2px 24px 0 rgba(38,92,58,0.07);
  border-width: 2.5px;
  border-style: solid;
}
.card { border-color: #EDEDED; }
.testimonial-card { border-color: #D9B504; }
.address-block { border-color: #AB8E04; }

/* Visibly angular accent divider below H1/H2 */
h1:after, h2:after {
  content: '';
  display: block;
  margin: 7px 0 0 0;
  width: 44px;
  height: 5px;
  border-radius: 2.5px 12px 12px 2.5px;
  background: #D9B504;
  box-shadow: 3px 0 0 0 #AB8E04;
}

/* Geometric section backgrounds alternating */
section:nth-of-type(even) {
  background: #F6F9F7;
  box-shadow: 0 2px 20px 0 rgba(38,92,58,0.02);
}

/* Geometric border for features, testimonials */
ul li {
  position: relative;
}
ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #D9B504;
  border-radius: 2px;
  display: inline-block;
  margin-right: 7px;
}
/* Remove marker from list items with icons */
ul li img + strong:before,
ul li img + strong {
  margin-left: 0 !important;
}
ul li img ~ strong:before {
  display: none;
}

/* 14. MICRO INTERACTIONS & TRANSITIONS */
.card, .testimonial-card, .address-block {
  transition: box-shadow 0.23s, border-color 0.17s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(38,92,58,0.12);
  border-color: #D9B504;
  transform: translateY(-3px) scale(1.018);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 30px 0 rgba(171,142,4,0.17);
  border-color: #265C3A;
  transform: translateY(-2px) scale(1.013);
}
.address-block:hover {
  border-color: #265C3A;
}

/* 15. COLORS ACCORDING TO BRAND */
/*
Brand Colors:
  primary: #265C3A;
  secondary: #EDEDED / #ffffff;
  accent: #AB8E04 / #D9B504;
*/

/* 16. ACCESSIBILITY & FOCUS INDICATORS */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #D9B504;
  outline-offset: 2px;
  z-index: 2;
}

/* For testimonial text for contrast */
.testimonial-card p, .testimonial-card strong, .testimonial-card .testimonial-user {
  color: #222820 !important;
}

/* 17. Z-INDEX FOR OVERLAYS */
header, nav { z-index: 20; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3100; }

/* 18. NO ABSOLUTE CONTENT, ONLY DECORATIVE POSITIONING */

/* --- END OF STYLE --- */
