/* --- 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background-color: #F6F2ED;
  color: #294065;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* --- BRAND & NATURE ORGANIC COLORS --- */
:root {
  --primary: #294065;
  --primary-90: #24385a;
  --secondary: #B7A99A;
  --secondary-light: #e4d8cc;
  --accent: #F6F2ED;
  --contrast-text: #fff;
  --organic-green: #69946d;
  --organic-olive: #b2aa8e;
  --organic-earth: #BA9B80;
  --shadow: rgba(41, 64, 101, 0.07);
  --shadow-lg: rgba(41, 64, 101, 0.13);
}

/* --- TYPOGRAPHY SYSTEM --- */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 2.25rem;
  line-height: 1.18;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--organic-green);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, .h4 {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.subheadline {
  color: var(--organic-olive);
  font-size: 1.2rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 22px;
  line-height: 1.4;
}
p {
  color: var(--earth-ink, #294065);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

@media (min-width: 768px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2.2rem; }
  h3, .h3 { font-size: 1.4rem; }
}

/* --- GENERAL LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px 32px 18px 36px / 30px 18px 32px 20px;
  box-shadow: 0 2px 16px 0 var(--shadow);
}

@media (min-width: 992px) {
  .section {
    padding: 64px 32px;
    margin-bottom: 80px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: 18px 40px 16px 36px / 28px 18px 28px 14px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 var(--shadow-lg);
  transform: translateY(-3px) scale(1.01);
}
.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: #fff;
  border-radius: 26px 18px 30px 22px / 24px 28px 14px 28px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  padding: 28px 24px 18px 24px;
  min-width: 220px;
  max-width: 380px;
  margin-bottom: 20px;
  color: #212930;
}
.testimonial-card p {
  color: #294065;
  font-size: 1.03rem;
  font-style: italic;
}
.testimonial-info {
  font-size: 0.95rem;
  color: var(--organic-green);
  font-weight: 600;
}
.testimonial-stars {
  display: flex;
  align-items: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-item {
  background: var(--accent);
  border-radius: 18px 26px 16px 20px/ 18px 24px 16px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 20px 18px;
}


/* --- NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 800;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 3px rgba(109,137,90,0.04));
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.main-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.07rem;
  padding: 7px 4px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--organic-green);
  background: var(--secondary-light);
}
.cta-btn {
  background: var(--organic-green);
  color: #fff;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 30px 18px 30px 16px;
  box-shadow: 0 4px 14px var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-left: 12px;
  letter-spacing: 0.02em;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-link {
  color: var(--organic-green);
  font-weight: 600;
  text-underline-offset: 3px;
  text-decoration: underline;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.cta-link:hover {
  color: var(--primary);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--organic-green);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  margin-left: 8px;
  z-index: 990;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #F6F2ED 80%, #bedeaf 120%);
  box-shadow: 0 6px 40px 0 var(--shadow-lg);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.38,.42,.22,1.01);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 32px;
  gap: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: var(--organic-green);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.2s;
  border: none;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 52px;
  padding-left: 28px;
}
.mobile-nav a {
  color: var(--organic-green);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary-light);
  color: var(--primary);
}

@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    font-size: 0.99rem !important;
    padding: 10px 18px !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* --- HERO/BANNERS --- */
.hero {
  position: relative;
  background: linear-gradient(120deg, #bedeaf 0%, var(--accent) 60%);
  min-height: 340px;
  display: flex;
  align-items: center;
  border-radius: 0 0 52px 52px/ 0 0 34px 34px;
  box-shadow: 0 2px 18px var(--shadow);
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
}
.hero h1 {
  color: var(--organic-green);
}

/* --- FEATURES --- */
.features {
  background: #f1f7f1;
}
.features .feature-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.features .feature-grid li, .features ul li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px 18px 18px 26px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 16px 22px 16px 14px;
  min-width: 210px;
  gap: 15px;
  font-size: 1.06rem;
  color: var(--primary);
  margin-bottom: 0;
}

.features img {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

/* --- SERVICES, PACKAGES --- */
.service-highlights, .service-list, .package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-highlights > div, .service-list > li, .package-item {
  background: #fff;
  border-radius: 22px 30px 16px 24px;
  box-shadow: 0 2px 16px var(--shadow);
  flex: 1 1 240px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.service-highlights > div:hover, .service-list > li:hover, .package-item:hover {
  box-shadow: 0 8px 33px 0 var(--shadow-lg);
  transform: translateY(-2px) scale(1.01);
}
.service-highlights img,
.service-list img {
  width: 36px;
  margin-bottom: 4px;
}
.package-item.best-seller {
  border: 2px solid var(--organic-green);
  box-shadow: 0 6px 33px 0 var(--shadow-lg);
  position: relative;
}
.badge {
  position: absolute;
  top: -22px;
  right: 18px;
  background: var(--organic-green);
  color: #fff;
  font-size: 0.97rem;
  border-radius: 14px 8px 16px 8px;
  padding: 6px 15px;
  letter-spacing: 0.01em;
  font-weight: 700;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #eff5ec;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  background: #fff;
  color: #222;
  max-width: 350px;
  min-height: 180px;
  border-left: 6px solid var(--organic-green);
  box-shadow: 0 2px 14px 0 var(--shadow);
  border-radius: 18px 22px 18px 30px;
  padding: 22px 18px 16px 20px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.testimonial-info {
  font-weight: 700;
  color: var(--organic-green);
  margin-top: 2px;
  font-size: 0.94rem;
}
.testimonial-stars img {
  width: 90px;
}

/* --- CONTACT / CTA / FOOTER --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  margin-top: 5px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px 18px 10px 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 10px 16px;
  font-size: 1rem;
  color: var(--primary);
}
.contact-details a {
  color: var(--organic-green);
  font-weight: 600;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.footer-social a:hover img {
  filter: brightness(1.2) contrast(1.1);
  transform: scale(1.06);
}
.footer-social img {
  width: 28px;
}
footer {
  background: #fff;
  border-top: 2px solid var(--secondary-light);
  margin-top: 40px;
  padding: 40px 0 10px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  width: 80px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--organic-green);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--primary);
}
.footer-contact img {
  width: 20px;
  margin-right: 7px;
}

/* --- LEGAL SECTION/ THANK YOU --- */
.legal, .thanks {
  background: #f2f7f2;
  border-radius: 26px 16px 36px 20px;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 46px;
  padding: 36px 18px 32px 18px;
}
.thanks ul {
  margin-bottom: 14px;
  padding-left: 22px;
  list-style: disc inside;
  color: var(--organic-green);
}
.thanks ul li {
  margin-bottom: 4px;
  font-size: 1.01rem;
}

/* --- MISC --- */
.text-section ul {
  padding-left: 24px;
  margin-bottom: 12px;
  list-style: disc;
  color: var(--organic-green);
  font-size: 1rem;
}
.text-section li {
  margin-bottom: 5px;
}
.social-links .footer-social {
  margin: 12px 0 0 0;
}
.process-steps, .benefits {
  background: #f7f8f7;
  border-radius: 18px 18px 26px 20px;
  margin-bottom: 60px;
  padding: 34px 16px;
}
.process-steps ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-steps li {
  background: #fff;
  border-radius: 10px 18px 16px 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 18px 14px;
  font-size: 1rem;
  color: var(--primary);
}
.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.benefits li {
  background: #fff;
  border-radius: 16px 20px 18px 10px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 16px 22px 12px 15px;
  font-size: 1.05rem;
  color: var(--organic-green);
  min-width: 210px;
}

/* --- COOKIES --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--primary);
  z-index: 10010;
  box-shadow: 0 -2px 22px var(--shadow-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 28px 16px 22px 16px;
  font-size: 1.04rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  border-radius: 34px 34px 0 0 / 20px 26px 0 0;
  transition: transform 0.33s cubic-bezier(.18,.58,.36,1.12), opacity 0.19s;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 320px;
  color: var(--primary);
  margin-right: 12px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 20px 8px 16px 13px;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.01rem;
  background: var(--organic-olive);
  color: #fff;
  transition: background 0.22s, color 0.17s;
}
.cookie-btn.accept {
  background: var(--organic-green);
}
.cookie-btn.accept:hover {
  background: var(--primary);
}
.cookie-btn.reject {
  background: var(--organic-earth);
}
.cookie-btn.reject:hover {
  background: var(--primary-90);
}
.cookie-btn.settings {
  background: var(--organic-olive);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(67, 90, 42, 0.35);
  z-index: 10012;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-box {
  min-width: 340px;
  max-width: 94vw;
  background: #fff;
  border-radius: 22px 32px 18px 36px / 30px 18px 32px 20px;
  box-shadow: 0 9px 38px var(--shadow);
  padding: 38px 24px 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-box h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: var(--organic-green);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal-close:hover {
  background: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  background: #f6f2ed;
  border-radius: 14px 8px 16px 14px;
  padding: 12px 18px;
  gap: 14px;
  color: var(--primary);
  font-size: 1.03rem;
  box-shadow: 0 1px 7px 0 var(--shadow);
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--organic-green);
}
.cookie-category.essential label {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  padding: 11px 36px;
  border-radius: 20px 8px 16px 13px;
  border: none;
  font-size: 1.03rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.21s, color 0.18s;
}
.cookie-modal-actions .accept {background: var(--organic-green);}
.cookie-modal-actions .accept:hover {background: var(--primary);}
.cookie-modal-actions .cancel {background: var(--organic-earth);}
.cookie-modal-actions .cancel:hover {background: var(--primary-90);}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .card, .feature-item, .testimonial-card, .footer-contact, .footer-brand, .footer-nav {
    min-width: unset;
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .hero {
    border-radius: 0 0 36px 36px/ 0 0 24px 24px;
    min-height: 190px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .section {
    border-radius: 18px 22px 12px 22px;
    margin-bottom: 38px;
    padding: 24px 5px;
  }
  .content-grid, .card-container, .service-highlights, .service-list, .package-grid, .benefits ul, .testimonial-slider, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .card, .testimonial-card, .faq-item, .service-highlights > div, .service-list > li, .package-item {
    padding: 12px 6px 12px 10px;
  }
  .hero {
    border-radius: 0 0 18px 18px/ 0 0 12px 12px;
    min-height: 120px;
    padding: 10px 2px 12px 2px;
  }
  .cookie-modal-box {
    padding: 20px 6px;
  }
}

/******************/
/* --- ANIMATION --- */
/******************/
.mobile-menu,
.mobile-menu.open,
.cookie-modal,
.cookie-banner {
  will-change: transform, opacity;
}
.mobile-menu {
  opacity: 0.99;
}
.mobile-menu.open {
  opacity: 1 !important;
}
.cookie-banner {
  animation: fadein-bottom 0.7s cubic-bezier(0.47,1.64,0.41,0.8);
}
@keyframes fadein-bottom {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- FORM FIELDS GENERAL (for future forms) ---*/
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 18px;
  border: 1.5px solid var(--secondary);
  border-radius: 10px 8px 12px 6px;
  background: #fff;
  font-size: 1.05rem;
  color: var(--primary);
  font-family: inherit;
  transition: border 0.21s, box-shadow 0.17s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--organic-green);
  box-shadow: 0 2px 8px 0 var(--shadow);
}
label {
  font-weight: 600;
  font-size: 1.01rem;
  color: var(--primary);
}

/* --- OVERRIDES FOR COMMON HTML --- */
main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 38px;
}
section {
  width: 100%;
}

/* --- MICRO-INTERACTIONS FOR ALL BUTTONS --- */
button:active, .cta-btn:active, .cookie-btn:active {
  filter: brightness(0.92);
  transform: scale(0.97);
}

/* --- REMOVE OUTLINE (ACCESSIBLE) --- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--organic-green);
  outline-offset: 2px;
}

/* --- Z-INDEX LAYER MANAGEMENT --- */
header, .mobile-menu, .cookie-modal, .cookie-banner {
  z-index: 1000;
}

/* --- PRINT --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
}

/* --- CUSTOM SCROLLBARS --- */
::-webkit-scrollbar { width: 9px; background: #ede9df; }
::-webkit-scrollbar-thumb { background: var(--secondary-light); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--organic-green); }
