/* ========================== */
/*        CSS RESET           */
/* ========================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { font-size: 16px; scroll-behavior: smooth; background: #F5F3EF; }
body { min-height: 100vh; font-family: 'Roboto', Arial, sans-serif; background: #F5F3EF; color: #2B3D32; }
img, picture, video { max-width: 100%; display: block; }
fieldset, legend { border: 0; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }
a { text-decoration: none; color: inherit; }

/* ================================ */
/*      NATURE ORGANIC COLORS       */
/* ================================ */
:root {
  --color-primary: #274B6D;
  --color-secondary: #8E9A9F;
  --color-accent: #F5F3EF;
  --color-green: #2B7A4B;
  --color-brown: #8C6E53;
  --color-sand: #EDE2D1;
  --color-text-dark: #2B3D32;
  --color-text-body: #385241;
  --color-light: #F8F8F5;
  --color-success: #2B7A4B;
  --color-error: #C94C3D;
}

/* ================================= */
/*         TYPOGRAPHY SCALE          */
/* ================================= */
h1, .h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.75rem; font-weight: 800; color: #274B6D; line-height: 1.1; margin-bottom: 24px; }
h2, .h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 700; color: #2B7A4B; margin-bottom: 18px; line-height: 1.2; }
h3, .h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.25rem; font-weight: 700; color: #274B6D; margin-bottom: 12px; }
p, ul, ol, li { font-family: 'Roboto', Arial, sans-serif; color: #385241; font-size: 1rem; line-height: 1.7; }
strong { color: #274B6D; font-weight: 700; }
ul, ol { margin-left: 1.5rem; margin-bottom: 16px; }
li { margin-bottom: 8px; }
.section h2, .content-wrapper h2, .content-wrapper h1 { letter-spacing: -1px; }
hr { border: 0; border-top: 2px solid #EDE2D1; margin: 32px 0; }

/* ======================= */
/*       CONTAINER         */
/* ======================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ========================= */
/*     HEADER / NAVIGATION   */
/* ========================= */
header {
  background: var(--color-accent);
  box-shadow: 0 2px 16px 0 rgba(75, 72, 54, 0.09);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-green);
  color: #fff;
}
.button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--color-green);
  color: #fff;
  border-radius: 32px;
  padding: 12px 28px;
  box-shadow: 0 2px 8px 0 rgba(43, 122, 75, 0.09);
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: #256c41;
  box-shadow: 0 4px 12px 0 rgba(53, 148, 83, 0.15);
  transform: translateY(-2px) scale(1.04);
}

/* ======================= */
/*    BURGER MENU MOBILE   */
/* ======================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-green);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px 14px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #dde9df;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--color-secondary);
  color: #fff;
  transform: translateX(100%);
  box-shadow: -8px 0 24px rgba(0,0,0,0.11);
  transition: transform 0.35s cubic-bezier(.83,.13,.37,1.02);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 32px 24px;
  gap: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  margin-bottom: 12px;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #556770;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EDE2D1;
}

/* Hide desktop nav & show burger on small screens */
@media (max-width: 980px) {
  header nav, header .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* ============================= */
/*         FOOTER                */
/* ============================= */
footer {
  background: #FAF9F6;
  border-top: 2px solid #EDE2D1;
  margin-top: 80px;
  padding: 32px 0 0 0;
  font-size: 0.97rem;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-navigation {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #274B6D;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-navigation a {
  color: #274B6D;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #2B7A4B;
  opacity: 1;
}
.branding {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: #385241;
}
.branding img { height: 36px; width: auto; }

/* ====================================== */
/*          UTILITY FLEX CLASSES          */
/* ====================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(146, 157, 109, 0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(51,67,38,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  padding: 24px 20px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(87,179,106,0.19);
  transform: translateY(-4px) scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAF9F6;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(39,75,109,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 rgba(43,122,75,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #FFF;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(111,195,77,0.08);
}

/* ================ */
/*     HERO         */
/* ================ */
.hero {
  background: linear-gradient(160deg, #EDE2D1 75%, #D6DECB 100%);
  padding-top: 54px;
  padding-bottom: 56px;
  border-radius: 0 0 52px 52px;
  position: relative;
  margin-bottom: 44px;
}
.hero .content-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 26px;
  max-width: 680px;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.18rem;
  color: #385241;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* FEATURES SECTION */
.features {
  background: #F5F3EF;
  border-radius: 42px;
  margin-bottom: 50px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.feature-grid li {
  list-style: none;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(39,75,109,0.10);
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 210px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
  border-left: 5px solid #2B7A4B;
}
.feature-grid li img { height: 36px; width: auto; margin-bottom: 10px; }
.feature-grid li strong { color: #2B7A4B; margin-bottom: 4px; }

/* ================ */
/*   ABOUT SHORT    */
/* ================ */
.about-short, .about, .why-us, .gdpr, .privacy-policy, .cookie-policy, .terms-of-use, .thank-you-section, .contact-section, .business-info { background: #F5F3EF; }
.text-section {
  margin-bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 2px 7px rgba(180,175,151,0.06);
}
.usps-list {
  margin: 0 0 0 1.3rem;
  color: #274B6D;
  margin-bottom: 8px;
}
.usps-list li::marker { color: #2B7A4B; font-size: 1.2em; }

/* ==================== */
/*     CTA BANNERS      */
/* ==================== */
.cta-banner {
  background: linear-gradient(80deg, #EDE2D1 73%, #DBECD4 100%);
  border-radius: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 13px 0 rgba(77,122,66,0.07);
  margin-bottom: 38px;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.cta-banner h2 { color: var(--color-green); }
.contact-short {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #394c3a;
  font-weight: 500;
  justify-content: center;
}
.contact-short img { height: 18px; vertical-align: middle; margin-right: 4px; }

/* ===================== */
/*    PROJECT CARDS      */
/* ===================== */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(37,75,109,0.06);
  transition: box-shadow 0.2s, transform 0.16s;
}
.project-card h2 {
  font-size: 1.28rem;
  color: #2B7A4B;
  margin-bottom: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.project-card:hover {
  box-shadow: 0 5px 20px 0 rgba(54,82,55,0.14);
  transform: translateY(-2px) scale(1.02);
}
.before-after-descriptions {
  margin-top: 22px;
  color: #274B6D;
}
.before-after-descriptions h3 { color: #2B7A4B; }
.before-after-descriptions ul { color: #385241; }

/* =========================== */
/*    TESTIMONIALS & TRUST     */
/* =========================== */
.testimonials-section {
  background: #F5F3EF;
  padding-top: 38px;
  border-radius: 0 0 30px 30px;
}
.testimonial-card {
  background: #fff;
  color: var(--color-text-dark);
  border-left: 8px solid #2B7A4B;
  min-width: 260px;
  box-shadow: 0 2px 12px rgba(39,75,109,0.09);
  transition: box-shadow 0.18s;
}
.testimonial-card p { color: #2B3D32; font-size: 1.1rem; margin-bottom: 6px; }
.testimonial-card span { color: #2B7A4B; font-size: 1rem; font-family: 'Montserrat', Arial, sans-serif; }
.star-rating {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-left: 6px;
}
.star-rating img {
  height: 20px;
  width: 20px;
  display: inline-block;
}
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  margin: 20px 0 16px 0;
}
.certifications img {
  height: 30px;
  width: auto;
  display: inline-block;
}
.certifications span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #274B6D;
  font-size: 1rem;
  margin-right: 16px;
}
.guarantee-list { margin-left: 1.5rem; margin-bottom: 8px; }

/* ========================== */
/*    SERVICES & DETAILS      */
/* ========================== */
.services-overview, .service-details {
  background: #fff7ec;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(129,142,153,0.06);
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.service-grid li {
  list-style: none;
  background: #fff;
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2B7A4B;
  font-weight: 600;
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px rgba(39,75,109,0.07);
  transition: box-shadow 0.13s;
}
.service-grid li img { height: 28px; margin-right: 8px; }

.service-details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.service-details-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(85,166,83,0.09);
  padding: 22px 18px 18px 18px;
  flex: 1 1 280px;
  margin-bottom: 20px;
}
.service-details-list h3 { color: #274B6D; font-weight: 600; font-size: 1.11rem; margin-bottom: 10px; }

/* =============== */
/*    CONTACT      */
/* =============== */
.contact-section {
  background: #F5F3EF;
}
.contact-section .container {
  gap: 24px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: flex-start;
  margin: 20px 0;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #274B6D;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  background: #EDE2D1;
  border-radius: 12px;
  padding: 12px 14px;
}
.contact-details img {
  height: 22px; width: 22px;
}
.map-embed {
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  color: #274B6D;
  margin-top: 10px;
  font-size: 1.03rem;
}
.business-info ul {
  margin-left: 1rem;
  margin-top: 8px;
}
.business-info ul li { margin-bottom: 8px; }

/* ==================== */
/*    THANK YOU PAGE    */
/* ==================== */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.thank-you-section ul {
  text-align: left;
  margin: 0 auto 16px auto;
  max-width: 400px;
  color: #274B6D;
  font-size: 1.05rem;
}
.thank-you-section .button-primary { margin-top: 14px; }

/* ==================== */
/*   POLICY PAGES       */
/* ==================== */
.privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
  background: #F5F3EF;
}
.privacy-policy h1, .gdpr h1, .cookie-policy h1, .terms-of-use h1 {
  color: #274B6D;
  margin-bottom: 22px;
  font-size: 2rem;
}
.privacy-policy h2, .gdpr h2, .cookie-policy h2, .terms-of-use h2 {
  color: #2B7A4B;
  margin-top: 20px;
}

/* ===================== */
/*      MODALS           */
/* ===================== */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 44, 38, 0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  animation: fadeIn 0.28s ease;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 38px 26px 32px 26px;
  box-shadow: 0 2px 33px rgba(39,75,109,0.15);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.modal-content h3 {
  color: #2B7A4B;
  margin-top: 0;
  margin-bottom: 16px;
}
.modal-content .close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #274B6D;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-content .close-modal-btn:hover { background: #eef3e8; }

/* Category toggles */
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #385241;
  margin-right: 10px;
  flex: 1 1 auto;
}
.switch {
  width: 46px;
  height: 28px;
  border-radius: 14px;
  background: #D6DECB;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(24,38,29,0.07);
  transition: transform 0.18s, background 0.13s;
}
.switch input:checked + .switch-slider {
  background: #2B7A4B;
  transform: translateX(18px);
}
.switch input:checked ~ .switch {
  background: #6DBF68;
}

/* ========================= */
/*   COOKIE CONSENT BANNER   */
/* ========================= */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #274B6D;
  color: #fff;
  font-size: 1.05rem;
  padding: 22px 18px;
  z-index: 1500;
  box-shadow: 0 -2px 18px 0 rgba(39,75,109,0.10);
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  animation: slideInUp 0.5s cubic-bezier(.63,.13,.37,1.09);
}
@keyframes slideInUp {
  from { transform: translateY(140%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1 1 auto;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 10px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  background: #2B7A4B;
  color: #fff;
  border: none;
  border-radius: 21px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(39,75,109,0.08);
  transition: background 0.18s, color 0.17s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #2B7A4B;
}
.cookie-btn.reject {
  background: #8C6E53;
}
.cookie-btn.settings {
  background: #8E9A9F;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #256c41;
  box-shadow: 0 2px 8px 0 rgba(43,122,75,0.13);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #617179;
}

/* Essential category label */
.cookie-category.essential label {
  opacity: 0.55;
  font-style: italic;
}

/* =============== */
/* MEDIA QUERIES   */
/* =============== */
@media (max-width: 980px) {
  .container { max-width: 98vw; }
  .card-container, .service-details-list, .feature-grid, .project-grid, .content-grid { flex-direction: column; gap: 22px; }
  .project-card, .card, .service-details-list li, .feature-grid li { max-width: 100%; min-width: 0; }
  .feature-grid { gap: 16px; }
  .testimonial-card, .feature-item, .card { width: 100%; }
  .contact-details { flex-direction: column; gap: 13px; }
}
@media (max-width: 768px) {
  .section, .hero, .about-short, .about, .cta-banner, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use, .thank-you-section, .contact-section, .business-info {
    padding: 28px 6px;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.37rem; }
  .hero {
    border-radius: 0 0 24px 24px;
    padding-top: 32px; padding-bottom: 30px;
  }
  .mobile-menu { width: 100vw; max-width: 95vw; padding-left: 10px; }
  .testimonials-section, .about-short, .about, .gdpr, .privacy-policy, .terms-of-use, .thank-you-section {
    border-radius: 0;
  }
  .content-wrapper { padding: 0; }
  .cta-banner { border-radius: 16px; }
  .contact-details > div { font-size: 0.99rem; }
  .footer-navigation { flex-direction: column; gap: 7px; align-items: center; }
}
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; padding: 14px 8px; }
  .cta-banner .content-wrapper { gap: 8px; }
  .branding img { height: 25px; }
}

/* ======================= */
/*   MICRO-INTERACTIONS   */
/* ======================= */
button, .button-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
button:active, .button-primary:active, .cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
}

/* =============== */
/*   ORGANIC EDGE  */
/* =============== */
.section, .cta-banner, .features, .hero, .about-short, .about, .why-us, .services-overview, .service-details, .project-card, .card, .testimonial-card, .modal-content {
  /* Organic subtle organic patterns using SVG data-uris for texture impressions */
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='25' viewBox='0 0 70 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse opacity='0.07' cx='35' cy='12.5' rx='34' ry='10.5' fill='%232B7A4B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 120px 40px;
}

/* ============================ */
/*  A11Y FOCUS OUTLINE STYLES   */
/* ============================ */
a:focus, button:focus, .button-primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #2B7A4B;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #81bc8c2b;
}

/* ======================== */
/*   SCROLLBAR STYLING     */
/* ======================== */
::-webkit-scrollbar { width: 10px; background: #F5F3EF; }
::-webkit-scrollbar-thumb { background: #D6DECB; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #B8CCB7; }

/* END */
