/* 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  color: #243723;
  background: #FCFBF8;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
/* NATURE ORGANIC DESIGN VARIABLES */
:root {
  --primary: #23415A;                /* Brand deep blue */
  --secondary: #87A1B6;              /* Cool desaturated blue */
  --accent: #F3F6F9;                 /* Very light blue, almost white */
  --earth-olive: #78834a;            /* Nature-inspired olive green */
  --earth-sand: #E7DDC6;             /* Light sand background */
  --earth-brown: #AD8762;            /* Earthen brown accent */
  --organic-bg: #F6F3EB;             /* Soft organic vanilla */
  --organic-card: #fffefb;           /* Card background */
  --heading: 'Montserrat', Arial, sans-serif;
  --body: 'Roboto', Arial, sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 18px rgba(57,81,52,0.08);
  --shadow-light: 0 2px 12px rgba(135,161,182,0.12);
}

body {
  background: var(--organic-bg);
  font-family: var(--body);
  color: #243723;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
}
h3 {
  font-size: 1.35rem;
  color: var(--earth-olive);
}

p, ul, ol {
  color: #25342B;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
strong {
  color: var(--earth-olive);
  font-weight: 600;
}

/* BRAND CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER NAVIGATION */
header {
  background: var(--accent);
  border-bottom: 1.5px solid var(--earth-sand);
  box-shadow: 0 1px 8px rgba(135,161,182,0.09);
}
.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo-link img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  background: var(--organic-card);
  box-shadow: 0 2px 10px rgba(136,178,133,0.07);
  padding: 3px;
}
nav.main-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a,
.footer-nav a {
  font-family: var(--heading);
  font-size: 1.02rem;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 0;
  border-radius: 6px;
  transition: color 0.17s, background 0.18s;
}
.main-nav a:hover, .footer-nav a:hover {
  color: var(--earth-olive);
  background: var(--earth-sand);
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.07rem;
  border-radius: var(--radius-md);
  background: var(--earth-olive);
  color: #fff;
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 16px rgba(120,131,74,0.09);
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.17s, transform 0.14s;
  margin-top: 8px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 26px rgba(35,65,90,0.13);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--earth-olive);
  font-size: 2.2rem;
  padding: 5px 10px;
  border-radius: var(--radius-md);
  transition: background 0.16s;
  z-index: 200;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--earth-sand);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(243,246,249,0.98);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.72,.08,.51,1.12);
  box-shadow: 2px 0 20px rgba(120,131,74,0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 26px 24px 22px 0;
  transition: color 0.16s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--earth-olive);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--heading);
  font-size: 1.32rem;
  color: var(--primary);
  font-weight: 600;
  padding: 15px 8px 15px 0;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background-color: var(--earth-sand);
  color: var(--earth-olive);
}

@media (max-width: 1024px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO/HEADER BANNERS */
.hero {
  background: linear-gradient(120deg, var(--organic-bg) 80%, var(--earth-sand) 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  margin: 0 0 48px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 4px 32px rgba(135,161,182,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 18px;
  color: #262a21;
}

.cta-banner {
  background: var(--earth-olive);
  color: #fff;
  text-align: center;
  padding: 36px 20px 35px 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
  box-shadow: 0 2px 20px rgba(135,161,182,0.06);
  position: relative;
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--earth-olive);
}
.cta-banner .btn-primary:hover {
  background: #F9F9F6;
  color: var(--primary);
}

/* FLEXBOX LAYOUTS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--organic-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 26px 24px;
  min-width: 266px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--organic-card);
  padding: 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
}

/* Feature & Value Lists */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.feature-grid li {
  background: var(--earth-sand);
  box-shadow: 0 2px 12px rgba(120,131,74,0.04);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid img {
  width: 39px;
  height: 39px;
  margin-bottom: 6px;
}
.service-list li, .service-detail-list li {
  margin-bottom: 20px;
  background: var(--organic-card);
  box-shadow: var(--shadow-light);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-icons,
.value-benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.benefit-icons li,
.value-benefit-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--earth-sand);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
}
.benefit-icons img, .value-benefit-icons img {
  width: 30px;
  height: 30px;
}
.value-benefit-icons span {
  font-size: 1rem;
}

/**** STEP LIST for Ablauf ****/
.step-list-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 28px;
}
.step-list-horizontal > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--earth-sand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  min-width: 180px;
  padding: 24px 12px;
  flex: 1 1 160px;
  gap: 11px;
}
.step-list-horizontal img {
  width: 36px;
  height: 36px;
}

/****** PRICING TABLE ******/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--organic-card);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--earth-sand);
  font-size: 1.04rem;
}
.pricing-table th {
  background: var(--earth-olive);
  color: #fff;
  font-weight: 600;
  font-family: var(--heading);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.price-tag {
  background: var(--earth-brown);
  color: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 1rem;
  margin-left: 10px;
  white-space: nowrap;
  font-weight: 500;
}
.service-included-list {
  margin: 16px 0 11px 22px;
  color: var(--earth-olive);
  list-style: disc inside;
  font-size: 0.97rem;
}
.price-notes {
  color: #7a6d44;
  font-size: 0.98rem;
  margin-bottom: 18px;
}

/**** FAQ Styles ****/
.faq-accordion > div {
  background: var(--organic-card);
  border: 1.5px solid var(--earth-sand);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(120,131,74,0.05);
  transition: background 0.16s;
}
.faq-accordion h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.13rem;
}
.faq-accordion p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

/**** TESTIMONIALS SLIDER (Adapter to Card List) ****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  max-width: 380px;
  color: #212a1c;
  font-size: 1.06rem;
  margin-bottom: 24px;
  border-left: 5px solid var(--earth-olive);
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 12px 30px rgba(35,65,90,0.09);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card strong {
  color: var(--earth-brown);
  font-size: 1.01rem;
}
.testimonial-card p {
  color: #243723; /* ensure readable on white */
}

/**** VALUES & TEAM GRIDS ****/
.core-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 18px 0;
}
.core-values-grid > div {
  flex: 1 1 240px;
  background: var(--earth-sand);
  padding: 26px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  font-size: 1.06rem;
}

/**** CONTACT BLOCKS ****/
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--organic-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  padding: 36px 22px;
  margin-bottom: 20px;
}
.contact-block > div {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section {
  background: var(--earth-sand);
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 20px 24px;
  margin-top: 6px;
  font-size: 1.05rem;
  color: #345023;
}
.map-section {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--organic-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-light);
  padding: 18px 24px;
  margin-top: 12px;
}
.directions-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  background: var(--earth-sand);
  border-radius: 8px;
  padding: 7px 20px 7px 13px;
  margin-left: 20px;
  transition: background 0.17s, color 0.14s;
}
.directions-link:hover, .directions-link:focus {
  background: var(--earth-olive);
  color: #fff;
}

/**** THANK YOU PAGE ****/
section.thankyou {
  background: var(--organic-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin: 60px 0 60px 0;
  padding: 60px 16px;
}

/***** FOOTER ******/
footer {
  background: var(--earth-sand);
  border-top: 2.5px solid var(--accent);
  box-shadow: 0 -1px 10px rgba(135,161,182,0.07);
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 20px 0;
  gap: 18px;
}
.footer-bar .logo-link img {
  height: 39px;
  width: auto;
  border-radius: 30%;
  background: #fff;
  padding: 1px;
  box-shadow: none;
}
footer small {
  font-size: 0.98rem;
  color: #6e644a;
  margin-left: 16px;
}

/**** SPACING HELPER CLASSES ****/
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-center { text-align: center !important; }

/**** ANIMATIONS ****/
.btn-primary, .directions-link, .testimonial-card, .card, .card-container > * {
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, transform 0.18s;
}
.card:hover, .card:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 32px rgba(135,161,182,0.12);
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--earth-sand);
  box-shadow: 0 -2px 18px rgba(120,131,74,0.14);
  color: #25342B;
  font-size: 1.04rem;
  z-index: 10001;
  padding: 22px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: slide-up-cookie 0.53s cubic-bezier(.8,.29,.45,1) 1;
}
@keyframes slide-up-cookie {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-consent-banner p {
  flex: 1 1 220px;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-btn {
  font-family: var(--heading);
  border-radius: var(--radius-sm);
  background: var(--earth-olive);
  color: #fff;
  padding: 10px 22px;
  margin: 0 8px;
  border: none;
  font-size: 1.01rem;
  box-shadow: 0 1px 7px rgba(120,131,74,0.06);
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-consent-banner .cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #edeae0;
  color: var(--earth-olive);
  border: 1.5px solid var(--earth-olive);
}
.cookie-consent-banner .cookie-btn:hover {
  background: var(--earth-brown);
  color: #fff;
}
.cookie-consent-banner .cookie-btn.reject:hover {
  background: #e7ddc6;
  color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,65,90,0.46);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in-modal 0.4s cubic-bezier(.85,.18,.57,1);
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(35,65,90,0.16);
  min-width: 350px;
  max-width: 95vw;
  padding: 35px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: drop-cookie-modal 0.46s cubic-bezier(.77,.03,.27,1);
}
@keyframes drop-cookie-modal {
  from { transform: translateY(-48px) scale(.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: var(--earth-sand);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  background: var(--earth-olive);
}
.cookie-modal .cookie-slider:before {
  content: '';
  position: absolute;
  height: 15px; width: 15px;
  left: 4px; bottom: 3.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
  box-shadow: 0 1px 5px rgba(135,161,182,0.12);
}
.cookie-modal .cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  font-size: 1.06rem;
  padding: 11px 22px;
}
.cookie-modal .cookie-btn.close {
  background: #edeae0;
  color: var(--earth-olive);
  border: 1px solid var(--earth-olive);
}
.cookie-modal .cookie-btn.close:hover {
  background: var(--earth-olive);
  color: #fff;
}
/* Always enabled styling for essential */
.cookie-modal .cookie-category.essential label {
  color: var(--earth-olive);
  font-weight: 700;
}
.cookie-modal .cookie-switch input[disabled] + .cookie-slider {
  background: var(--earth-sand);
  opacity: 0.6;
  cursor: not-allowed;
}

/********* RESPONSIVE DESIGN ***********/
@media (max-width: 900px) {
  .content-wrapper,
  .container {
    max-width: 100%;
    padding-left: 10px; padding-right: 10px;
  }
  .feature-grid, .step-list-horizontal, .card-container {
    gap: 12px;
  }
  .contact-block {
    flex-direction: column;
    padding: 26px 10px;
  }
  .core-values-grid {
    gap: 14px;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .cta-banner {
    padding: 26px 10px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .header-bar, .footer-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .content-wrapper {
    padding: 0;
    gap: 16px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
  .feature-grid, .benefit-icons, .value-benefit-icons, .core-values-grid, .testimonial-slider, .card-container, .step-list-horizontal {
    flex-direction: column;
    gap: 14px;
  }
  .card, .testimonial-card {
    min-width: 100px;
    padding: 18px 10px 12px 10px;
  }
  .service-list li, .service-detail-list li {
    padding: 10px 8px;
  }
  .map-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 8px;
  }
  .hero {
    min-height: 160px;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 0;
  }
  .testimonial-card {
    padding: 14px 7px 12px 12px;
  }
  .cta-banner .btn-primary {
    width: 100%;
    padding: 16px 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.61rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.11rem; }
  .footer-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 16px 0 12px 0;
  }
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  .cookie-consent-banner p {
    font-size: 0.96rem;
  }
}

/**** UTILITY FOR FLEXBOX VERTICAL ALIGNMENT (MATCH INSTRUCTIONS) ****/
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

/**** HIDE COOKIE/CLOSE GENERAL (used for script) ****/
.hide { display: none !important; }

/* ACCESSIBILITY FOCUS STATES */
a:focus-visible, .btn-primary:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid var(--earth-olive);
  outline-offset: 2px;
  background: #e7ddc6;
}

/**** CUSTOM SCROLLBAR (nature organic) ****/
::-webkit-scrollbar {
  width: 10px;
  background: var(--earth-sand);
}
::-webkit-scrollbar-thumb {
  background: var(--earth-olive);
  border-radius: 14px;
}

/******** END OF FILE ********/
