/* =========================
   CSS 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, 
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-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F7F3EF;
  color: #263028;
  min-height: 100%;
}

body {
  line-height: 1.7;
  font-size: 16px;
  background-color: #F7F3EF;
  color: #263028;
}

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

ol, ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border-radius: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
}

/* ==============
   BRAND COLORS & FONTS
=============== */
:root {
  --primary: #12406A;
  --secondary: #D9E6F2;
  --accent: #F7B538;
  --nature-green: #307A39;
  --earth-brown: #A97D52;
  --forest-dark: #263028;
  --sand: #F7F3EF;
  --organic-cream: #F2EDE4;
  --soft-gray: #E7E5DF;
  --shadow: rgba(48, 64, 47, 0.08);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--forest-dark);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p, ul, ol, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--forest-dark);
}

strong {
  font-weight: 700;
}

/* ===============
   LAYOUT & CONTAINERS
================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-cream);
  border-radius: 24px;
  box-shadow: 0 2px 8px var(--shadow);
}

/* HERO/ BANNERS */
.hero, .market-hero, .resources-hero, .trends-hero, .strategy-hero, .thank-you-section, .about-section, .contact-section {
  background: linear-gradient(120deg, #F2EDE4 68%, #D9E6F2 100%);
  border-radius: 0 0 36px 36px;
  margin-bottom: 44px;
  box-shadow: 0 4px 24px 0 var(--shadow);
  padding: 48px 0 36px 0;
}
.hero h1, .market-hero h1, .resources-hero h1, .trends-hero h1, .strategy-hero h1, .about-section h1, .thank-you-section h1, .contact-section h1 {
  color: var(--nature-green);
  font-weight: 900;
  letter-spacing: -1px;
}
.hero p, .market-hero p, .resources-hero p, .trends-hero p, .strategy-hero p, .about-section p, .thank-you-section p, .contact-section p {
  font-size: 1.125rem;
  color: var(--forest-dark);
  margin-bottom: 22px;
}

.cta-banner {
  background: linear-gradient(90deg, #D9E6F2 40%, #F7F3EF 100%);
  border-radius: 20px;
  margin: 32px 0 0 0;
  padding: 36px 0 32px 0;
  box-shadow: 0 2px 16px var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner p {
  color: var(--nature-green);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

/* =============
   ORGANIC SHAPES
============== */
.section, .card, .feature-item, .strategy-type, .testimonial-card, .faq-list li, .resource-list li, .trends-articles-list li, .market-reports, .market-outlooks, .trend, .downloads li, .about-snippet, .approach-section, .hours-section {
  /* mimicking organic shape */
  border-radius: 28px 24px 32px 16px/36px 32px 24px 40px;
}

/* ==============
   HEADER & NAVIGATION
=============== */
header {
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
header img {
  height: 54px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-left: 16px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--nature-green);
}
.cta-button {
  background: var(--nature-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 11px 28px 11px 28px;
  border-radius: 30px 22px 30px 18px/30px 22px 24px 32px;
  font-weight: 700;
  outline: none;
  border: none;
  box-shadow: 0 4px 14px var(--shadow);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  letter-spacing: 0.01rem;
  margin-left: 30px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: var(--forest-dark);
  box-shadow: 0 6px 22px rgba(39, 59, 27, 0.13);
  transform: translateY(-2px) scale(1.03);
}

/* ====================
  MOBILE NAVIGATION
==================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 20px;
  z-index: 201;
  font-size: 2.3rem;
  background: var(--nature-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 16px var(--shadow);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--forest-dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248,247,245,0.99);
  box-shadow: -10px 0 32px rgba(39,59,27,0.05);
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.6,.04,.98,.34);
  opacity: 1;
  padding-right: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--nature-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  margin: 28px 24px 14px 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: var(--accent);
  color: var(--forest-dark);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--nature-green);
  padding: 14px;
  border-radius: 12px;
  width: 100%;
  display: block;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* HIDE main nav & show burger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================
   FLEX LAYOUTS & SPACING
========================= */
.features, .strategy-types-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features-grid, .strategy-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-item, .strategy-type {
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow);
  border-radius: 22px 26px 18px 30px/30px 18px 30px 24px;
  flex: 1 1 235px;
  min-width: 242px;
  max-width: 330px;
  padding: 28px 18px 26px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid var(--soft-gray);
  transition: border 0.2s, box-shadow 0.2s;
}
.feature-item:hover, .strategy-type:hover {
  border-color: var(--nature-green);
  box-shadow: 0 4px 24px rgba(48,122,57,0.11);
}
.feature-item img, .strategy-type img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
}
.feature-item h3, .strategy-type h3 {
  color: var(--nature-green);
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.feature-item p, .strategy-type p {
  font-size: 1rem;
  color: var(--forest-dark);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .features-grid, .strategy-types-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  background: #fff;
  border-radius: 15px 30px 20px 24px/24px 24px 30px 18px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 28px 20px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(39,59,27,0.12);
}

.content-grid, .trends-teaser, .analyst-opinions, .market-reports {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .features-grid, .strategy-types-grid {
    flex-direction: column;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--sand);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px var(--shadow);
  border-radius: 20px 25px 20px 28px/22px 24px 32px 22px;
  border: 2px solid var(--secondary);
  font-size: 1.04rem;
  color: var(--forest-dark);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(48,122,57,0.15);
  border-color: var(--accent);
}
.testimonial-card span {
  color: var(--nature-green);
  font-weight: 700;
  font-size: 0.98rem;
}

.feature-item, .strategy-type, .testimonial-card, .resource-list li, .faq-list li, .trends-articles-list li {
  margin-bottom: 20px;
}

.value-propositions, .quick-stats, .faq-list, .trends-articles-list, .resource-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 14px;
}
.value-propositions li, .quick-stats li, .faq-list li, .trends-articles-list li, .resource-list li {
  background: #fff;
  padding: 15px 18px;
  border-radius: 19px 20px 18px 20px/16px 14px 20px 22px;
  box-shadow: 0 2px 6px var(--shadow);
  font-size: 1.05rem;
  color: var(--forest-dark);
  margin-bottom: 0;
}
.value-propositions strong {
  color: var(--nature-green);
}

/* 2-column splits for about/contact details */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contact-details ul {
  margin-bottom: 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}
@media (max-width: 850px) {
  .contact-details {
    flex-direction: column;
    gap: 24px;
  }
}

/* =============
   SECTIONS
============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 600px) {
  section {
    padding: 28px 8px;
    margin-bottom: 34px;
    border-radius: 20px 16px 22px 16px/24px 18px 18px 20px;
  }
  .hero, .market-hero, .resources-hero, .trends-hero, .strategy-hero {
    border-radius: 0 0 24px 24px;
    padding: 28px 0 24px 0;
  }
}

/* ================
   CARDS / LISTS
================ */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.feature-item:last-child, .strategy-type:last-child, .testimonial-card:last-child, .value-propositions li:last-child, .faq-list li:last-child, .trends-articles-list li:last-child, .resource-list li:last-child {
  margin-bottom: 0;
}

/* ================
   ANALYTICS / LISTS ETC
================ */
.sector-breakdown, .trending-markets, .interactive-charts, .analyst-opinions, .market-outlooks, .market-reports, .expert-opinions, .featured-trend {
  background: #fff;
  border-radius: 15px 18px 16px 28px/18px 22px 22px 18px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 20px 20px 18px 20px;
  margin-bottom: 18px;
}

/************************
  FOOTER
************************/
footer {
  background: var(--sand);
  border-radius: 30px 30px 0 0/32px 18px 0 0;
  box-shadow: 0 -2px 10px var(--shadow);
  padding: 44px 0 22px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: var(--nature-green);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.18s;
  padding: 2px 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 1rem;
  color: var(--forest-dark);
  margin-bottom: 6px;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  margin:0 6px -4px 0;
  vertical-align: middle;
}
.footer-copy {
  color: #6f7864;
  font-size: 0.98rem;
  margin-top: 5px;
}
@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}

/**********************
      COOKIES BANNER
**********************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--organic-cream);
  border-top: 2px solid var(--nature-green);
  box-shadow: 0 -2px 18px rgba(48, 122, 57, 0.09);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 14px;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.28s ease;
}
.cookie-banner__text {
  color: var(--forest-dark);
  font-size: 1rem;
  flex: 2;
  min-width: 210px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border: none;
  border-radius: 30px 16px 24px 20px/18px 20px 22px 14px;
  padding: 11px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 6px 0 0;
  outline: none;
  background: var(--nature-green);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.16s, color 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus,
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--accent);
  color: var(--forest-dark);
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--nature-green);
  border: 1px solid var(--nature-green);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--nature-green);
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 6px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    gap: 7px;
  }
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2501;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(47, 60, 57, 0.70);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 32px 22px 30px/26px 24px 30px 18px;
  box-shadow: 0 10px 32px rgba(39,59,27,0.13);
  padding: 32px 28px 22px 28px;
  max-width: 98vw;
  width: 432px;
  color: var(--forest-dark);
  text-align: left;
  z-index: 2502;
  animation: cookieModalIn 0.38s cubic-bezier(.7,.2,.36,.96);
}
@keyframes cookieModalIn {
  0% { transform: translateY(32px) scale(0.92); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-header {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nature-green);
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 30px;
  top: 26px;
  background: var(--secondary);
  color: var(--nature-green);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--shadow);
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--forest-dark);
}
.cookie-modal-cats {
  margin: 16px 0 18px 0;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
}
.cookie-cat-label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--soft-gray);
  border-radius: 22px;
  transition: 0.2s;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--nature-green);
  border-radius: 50%;
  transition: 0.22s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--secondary);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
  background: var(--accent);
}
.cookie-cat-desc {
  font-size: 0.99rem;
  color: var(--forest-dark);
  margin-left: 8px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

/**********************
    ANIMATIONS
**********************/
.hero, .market-hero, .resources-hero, .trends-hero, .strategy-hero {
  animation: fadeHeroIn 0.82s ease 0s 1;
}
@keyframes fadeHeroIn {
  from { opacity:0; transform: scale(0.96) translateY(24px); }
  to   { opacity:1; transform: none; }
}

.cta-button, .main-nav a, .feature-item, .strategy-type, .card, .testimonial-card {
  transition: box-shadow 0.18s, color 0.18s, border-color 0.12s, background 0.19s, transform 0.18s;
}

/**********************
   FORMATTING
**********************/
a {
  color: var(--primary);
  transition: color 0.13s;
}
a:hover, a:focus {
  color: var(--nature-green);
}

ul, ol {
  padding-left: 0;
  margin-bottom: 0;
}
main ul, main ol {
  margin-bottom: 16px;
}
ul li, ol li {
  line-height: 1.6;
  margin-bottom: 0.5em;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

/**********************
    LEGAL, FAQ, OTHERS
**********************/
.legal-section {
  background: var(--organic-cream);
  border-radius: 22px 32px 20px 20px/26px 28px 24px 18px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 40px 24px;
  margin-bottom: 40px;
  color: var(--forest-dark);
}
.legal-section h1 {
  color: var(--nature-green);
}
.legal-section ul {
  margin-block: 20px 12px;
  padding-left: 0;
  gap: 12px;
}
.legal-section li {
  background: #fff;
  border-radius: 14px 17px 16px 18px/17px 18px 18px 13px;
  padding: 15px 18px;
  margin-bottom: 17px;
  color: var(--forest-dark);
  box-shadow: 0 1px 6px var(--shadow);
}
.legal-section li:last-child { margin-bottom: 0; }

/**********************
    MEDIA QUERIES
**********************/
@media (max-width: 1060px) {
  .container {
    max-width: 96vw;
  }
  .features-grid, .strategy-types-grid {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .features-grid, .strategy-types-grid, .value-propositions, .faq-list, .resource-list {
    flex-direction: column;
    gap: 12px;
  }
  .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; margin-bottom: 13px; }
  h2 { font-size: 1.18rem; margin-bottom: 11px; }
  .feature-item, .strategy-type {
    min-width: 98vw;
    max-width: 100vw;
    padding: 18px 6px 20px 12px;
  }
}

/**********************
    UTILITY CLASSES
**********************/
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px!important; }
.mt-20 { margin-top: 20px!important; }

/*****************************
      ACCESSIBILITY FOCUS
*****************************/
a, button, .cta-button {
  outline: none;
}
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/*****************************
      CUSTOM SCROLLBARS
*****************************/
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--nature-green);
  border-radius: 10px;
}

/*****************************
      PRINT
*****************************/
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal-overlay {
    display: none !important;
  }
  header, footer {
    box-shadow: none !important;
  }
  section, .container {
    box-shadow: none !important;
    border: none !important;
  }
}
