/* =============================================================
   CSS RESET & BASE STYLES (Normalize + Reset for consistency)
   ============================================================= */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  background: #F3F7F0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3A42;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
a {
  color: #197278;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3f625a;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 0.8em;
}
li {
  margin-bottom: 0.2em;
}
strong {
  font-weight: 700;
}
hr {
  border: 0;
  border-top: 1px solid #e3e6da;
  margin: 40px 0;
}

/* ======================
   TYPOGRAPHY
   ====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2B3A42;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.125rem;
}

p, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
}
.subheadline {
  font-size: 1.125rem;
  color: #51725b;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.125rem; }
  h3 { font-size: 1rem; }
  .subheadline { font-size: 1rem; }
}

/* =================================
   LAYOUT STRUCTURE & CONTAINERS
   ================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .section {
    padding: 25px 10px;
    margin-bottom: 36px;
  }
}

/* =========================
   NATURE ORGANIC STYLE BASE
   ========================= */
body {
  background-color: #F3F7F0; /* accent color as page bg */
  background-image: url('../assets/organic-bg.png'), linear-gradient(to bottom, #f3f7f0 0%, #eef2eb 100%);
  background-size: 600px, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: top right, top;
}

/* Organic section backgrounds */
section {
  border-radius: 28px 32px 36px 30px/24px 30px 40px 28px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(43, 58, 66, 0.06);
  margin-bottom: 32px;
}

/* ==================
   NAVIGATION STYLING
   ================== */
header {
  background: #F3F7F0;
  width: 100%;
  padding-top: 12px;
  box-shadow: 0 2px 18px 0 rgba(43, 58, 66, 0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 0;
  color: #197278;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e6eddf;
  color: #235940;
}


/* Button primary in nav */
.main-nav .btn-primary {
  margin-left: 16px;
  padding: 9px 22px;
  font-size: 1rem;
  color: #fff !important;
  background: #197278;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.28s, box-shadow 0.28s;
  box-shadow: 0 2px 8px 0 rgba(33,49,39,.10);
  outline: none;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #29675a;
  color: #fff !important;
}

/* =========================
   MOBILE MENU RESPONSIVITY
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #197278;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .2s;
  z-index: 21;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #d4e4d1;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49, 62, 44, 0.96);
  z-index: 1005;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 24px 10px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1010;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #aee3b7;
}
.mobile-nav {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 10px 0;
  border-radius: 7px;
  letter-spacing: 0.03em;
  width: 100%;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #197278;
  color: #fff;
}
@media (max-width: 700px) {
  .mobile-nav {
    padding-left: 18px;
  }
}
/* Hide mobile menu by default on desktop */
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}


/* ===================================
   HERO/HEADER SECTIONS (index/about)
   =================================== */
.hero, .about-hero, .services-hero, .testimonial-hero, .faq-hero, .contact-hero, .thank-you {
  background: linear-gradient(100deg,#F3F7F0 60%, #eafdea 100%);
  box-shadow: 0 8px 30px rgba(76,107,94,0.06);
  border-radius: 34px 38px 38px 37px/32px 36px 38px 32px;
  margin-bottom: 48px;
  padding: 54px 0 46px 0;
  position: relative;
}
.hero::after,
.about-hero::after,
.services-hero::after,
.testimonial-hero::after,
.faq-hero::after,
.contact-hero::after,
.thank-you::after {
  content: '';
  display: block;
  position: absolute;
  right: 1.2em;
  top: 1.8em;
  width: 78px; height: 72px;
  background: url('../assets/leaf-decor.svg') no-repeat center/contain;
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 750px) {
  .hero, .about-hero, .services-hero, .testimonial-hero, .faq-hero, .contact-hero, .thank-you {
    padding: 36px 0 28px 0;
    border-radius: 18px 18px 20px 18px/18px 18px 20px 18px;
  }
}


/* =================================
   SECTION/CONTENT PATTERNS + SPACING
   ================================= */
.features, .mission-values, .team-intro, .case-studies, .faq-list, .contact-details, .services-detail, .process, .legal-text {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .features, .mission-values, .team-intro, .case-studies, .faq-list, .contact-details, .services-detail, .process, .legal-text {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f7faf6;
  border-radius: 20px 16px 20px 22px/20px 20px 24px 16px;
  box-shadow: 0 2px 12px 0 rgba(43,58,66,0.07);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 260px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f5f9f3;
  border-left: 5px solid #197278;
  border-radius: 18px 22px 20px 16px/18px 18px 24px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(79,99,80,0.06);
  color: #2B3A42;
  font-size: 1.05rem;
  transition: box-shadow 0.23s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(43,58,66,0.14);
}
.testimonial-name {
  font-weight: 600;
  color: #197278;
  margin-left: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   ICON FEATURES
   =============== */
.feature-icons {
  display: flex;
  gap: 32px;
  margin: 18px 0 14px 0;
  flex-wrap: wrap;
}
.feature-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #e3eee7;
  border-radius: 16px 18px 16px 18px/16px 18px 18px 16px;
  box-shadow: 0 1px 10px 0 rgba(43,58,66,0.03);
  min-width: 90px; min-height: 108px;
  padding: 18px 13px;
  flex: 1 1 110px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #336862;
}
.feature-icons img {
  height: 38px; width: auto;
}

/* ===========================
   SERVICE CARDS & DISPLAY
   =========================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-cards > div {
  background: #ecf7ef;
  border-radius: 16px 22px 18px 24px/16px 16px 18px 20px;
  box-shadow: 0 1px 8px 0 rgba(64,79,65,0.08);
  padding: 26px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  transition: box-shadow 0.20s, transform 0.18s;
  border: 1.5px solid #e3eddf;
  margin-bottom: 12px;
}
.service-cards > div:hover {
  box-shadow: 0 4px 17px 0 rgba(17, 73, 36, 0.12);
  transform: translateY(-2px) scale(1.015);
}
.service-cards h3 {
  color: #235940;
  margin-bottom: 9px;
  font-size: 1.175rem;
}

/* ===============
   CASE STUDIES
   =============== */
.case-summary {
  background: #f7faf6;
  border-radius: 17px 18px 21px 15px/16px 15px 20px 14px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 9px 0 rgba(42,70,44,0.05);
  border-left: 4px solid #b1ccbc;
}
.case-summary h3 { margin-bottom: 7px; color: #197278; }


/* =============
   CTA BANNER
   ============= */
.cta-banner {
  background: #e1f2ec;
  border-radius: 27px 28px 33px 20px/22px 26px 32px 23px;
  box-shadow: 0 2px 18px 0 rgba(41,94,68,0.07);
  margin-bottom: 36px;
  text-align: center;
  padding: 38px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner h2 {
  margin-bottom: 12px;
}
@media (max-width: 650px) {
  .cta-banner {
    padding: 26px 4px;
  }
}

/* ===========
   FAQ STYLES
   =========== */
.faq-item {
  margin-bottom: 28px;
  padding: 22px 18px;
  border-radius: 18px 20px 22px 15px/16px 16px 18px 14px;
  background: #f2fbf2;
  box-shadow: 0 1px 11px 0 rgba(51,79,59,0.06);
  border-left: 4px solid #197278;
}
.faq-item h3 {
  color: #197278;
  font-size: 1.12rem;
  margin-bottom: 8px;
}

/* ===================
   FOOTER STRUCTURE
   =================== */
footer {
  background: #dee9e0;
  border-radius: 20px 20px 0 0/18px 16px 0 0;
  padding: 32px 0 16px 0;
  box-shadow: 0 -2px 14px 0 rgba(79,99,80,0.12);
  font-size: 0.99rem;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-nav nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #197278;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 6px;
  border-radius: 4px;
  transition: background 0.17s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #c5e0d1;
  color: #2b3a42;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  align-items: flex-start;
}
.brand-info p {
  color: #42735a;
  font-size: 1rem;
}
.brand-info .btn-primary {
  margin-top: 10px;
  align-self: flex-start;
}
@media (max-width: 800px) {
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========
   BUTTONS
   ========== */
.btn-primary {
  display: inline-block;
  background: #197278;
  color: #fff !important;
  border: none;
  border-radius: 26px 34px 29px 26px/18px 21px 20px 17px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(23,71,46,0.11);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.25s, transform 0.2s;
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #295c46;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 18px 0 rgba(31,81,46,0.18);
}

.btn-secondary {
  background: #fff;
  color: #197278 !important;
  border: 2px solid #197278;
  box-shadow: none;
  border-radius: 24px 32px 27px 28px/16px 18px 18px 18px;
  padding: 11px 27px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
  margin-right: 7px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e5ffe8;
  color: #235940 !important;
  border-color: #235940;
}

/* =========================
   FORMS (Contact, Cookies)
   ========================= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3A42;
  border: 1.6px solid #b9c6bc;
  border-radius: 10px 13px 12px 12px/8px 9px 10px 8px;
  padding: 14px 14px;
  background: #f5f9f7;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.18s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #197278;
  box-shadow: 0 2px 8px 0 rgba(25,114,120,0.09);
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B3A42;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  display: inline-block;
}

/* ================
   LEGAL & MODALS
   ================ */
.legal-text {
  color: #384a3a;
}
.legal-text h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #197278;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS: Mobile-first
   ======================================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .service-cards {
    gap: 14px;
  }
  .feature-icons {
    gap: 13px;
  }
}
@media (max-width: 700px) {
  .content-wrapper {
    gap: 10px;
  }
  .hero, .about-hero, .services-hero, .testimonial-hero, .faq-hero, .contact-hero, .thank-you {
    padding: 24px 0;
  }
  .service-cards > div {
    min-width: 160px;
    padding: 18px 10px;
    font-size: 0.96rem;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  .footer-nav nav {
    gap: 8px;
  }
}

/* Ensure all elements use flex for layout (per requirements) */
main, .content-wrapper, .service-cards, .feature-icons, .footer-nav, .brand-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
/* Card containers should be flex on all screens */


/* ==============================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================== */
.btn-primary, .btn-secondary {
  transition: background .22s, box-shadow .25s, color 0.21s, transform .18s;
}

/* Testimonial animated icon-decor (optional, subtle leaves) */
.testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  left: 7px;
  top: 7px;
  width: 32px;
  height: 24px;
  background: url('../assets/leaf-decor.svg') no-repeat center/contain;
  opacity: 0.05;
  z-index: 1;
}

/* =========
   UTILITIES
   ========= */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.pt-2 { padding-top: 16px; }
.pt-4 { padding-top: 32px; }
.text-center { text-align: center; }

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #235940;
  box-shadow: 0 -3px 18px 0 rgba(38,65,54,0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 2000;
  animation: cookieDown 0.43s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieDown {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 2 1 auto;
  font-size: 1rem;
  color: #2B3A42;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 0.98rem;
}
.cookie-settings-btn {
  background: #e7f1ea;
  color: #197278;
  border: 1.5px solid #197278;
  border-radius: 20px 22px 18px 16px / 10px 12px 14px 10px;
  padding: 9px 16px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.015em;
  transition: background 0.18s, color 0.18s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #c3e4d5;
  color: #295c46;
  outline: none;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
    font-size: 0.98rem;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(49, 62, 44, 0.73);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookie 0.36s;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 25px 27px 24px / 22px 26px 20px 16px;
  box-shadow: 0 10px 40px 0 rgba(43,58,66,0.27);
  width: 96vw;
  max-width: 430px;
  padding: 32px 30px 22px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  z-index: 4010;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #197278;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 500;
  color: #355c49;
  font-size: 1.07rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #197278;
  width: 20px; height: 20px;
}
.cookie-category.cookie-essential label {
  color: #888c80;
}
.cookie-category.cookie-essential input[type='checkbox'] {
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .btn-primary {
  padding: 10px 28px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #197278;
  font-size: 2rem;
  position: absolute;
  top: 18px; right: 20px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 4020;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #60b18a;
  outline: none;
}

/* Cookie slider animation for modal */
.cookie-modal {
  animation: modalSlideIn 0.38s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes modalSlideIn {
  0% { transform: translateY(32px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===============
   ACCESSIBILITY
   =============== */
:focus-visible {
  outline: 2px dashed #197278;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #6b8b74; }
::-moz-placeholder          { color: #6b8b74; }
:-ms-input-placeholder      { color: #6b8b74; }
::placeholder              { color: #6b8b74; }

/* ===============================
   LEAF/ORGANIC SHAPE DECORATIONS
   (Optional, if assets are present)
   =============================== */
.organic-decor {
  position: absolute;
  z-index: 0;
  opacity: 0.13;
}

/* ===================
   SCROLLBAR STYLING
   =================== */
::-webkit-scrollbar {
  width: 10px;
  background: #f3f7f0;
}
::-webkit-scrollbar-thumb {
  background: #b1ccbc;
  border-radius: 8px;
}

/* ============================
   END OF CSS. ONLY FLEXBOX IS USED FOR ALL LAYOUTS!
   No grid, no columns, and no forbidden properties.
============================== */
