/* ========================================================================
   CSS RESET & NORMALIZE (mobile first)
   ======================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  background: #f6f4ee;
  color: #233067;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #34A572;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #34A572;
  outline-offset: 2px;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1.25em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1d2552;
  margin-bottom: 0.7em;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.18rem; }
h4 { font-size: 1rem; }
h5, h6 { font-size: 0.95rem; }
p, li {
  margin-bottom: 12px;
  font-size: 1rem;
}
strong { font-weight: 600; }

/* ========================================================================
   VARIABLES (with fallbacks)
   ======================================================================== */
:root {
  --primary: #233067;
  --secondary: #f6f4ee;
  --accent: #34A572;
  --surface: #fff;
  --earth: #a18b6b;
  --leaf: #7AC46A;
  --brown: #7b6653;
  --green-dark: #285743;
  --text: #1d2552;
  --text-light: #3e3e3e;
  --muted: #839078;
  --radius: 18px;
  --shadow-low: 0 2px 8px 0 rgba(52, 165, 114, 0.05);
  --shadow-med: 0 4px 16px 0 rgba(52, 165, 114, 0.12);
}

/* Hide outline for mouse only, keep for keyboard navigation */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ========================================================================
   LAYOUT UTILS & CONTAINERS
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
}

/* ========================================================================
   HEADER/NAVIGATION
   ======================================================================== */
header {
  background: var(--surface);
  border-bottom: 2.5px solid #e8e4d9;
  box-shadow: var(--shadow-low);
  width: 100%;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo-link img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 0;
  font-size: 1rem;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-low);
  cursor: pointer;
  transition: background 0.2s, box-shadow .22s, color .2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--leaf);
  color: #1d2552;
  box-shadow: var(--shadow-med);
}
.btn-secondary {
  display: inline-block;
  background: #EDEDED;
  color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  box-shadow: var(--shadow-low);
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s, box-shadow .19s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-med);
}

/* Responsive: hide .main-nav + .btn-primary + show hamburger on mobile */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: 6px;
  z-index: 31;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #e6e9e2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--earth);
  background-image: url('../assets/textures/organic_bg.png');
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.59,.04,.37,1.02);
  box-shadow: -2px 0 12px 0 rgba(36,51,25,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  margin: 24px 28px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 48px 36px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.19s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .main-nav{
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .content-grid {
    gap: 14px !important;
  }
}
@media (max-width: 768px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
  .btn-primary { display: inline-block !important; }
}

/* ========================================================================
   HERO / CTA / SECTION STYLING
   ======================================================================== */
.hero-section {
  background: linear-gradient(120deg, #e1ede3 0%, #f6f4ee 70%) no-repeat, url('../assets/textures/organic_bg.png');
  background-size: cover, auto;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.hero-section h1 {
  font-size: 2.3rem;
  color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero-section .subhead {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 17px;
  margin-top: 7px;
}
.cta-section {
  background: #EDEDED;
  border-radius: var(--radius);
  margin-top: 48px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-low);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: var(--accent);
}
.cta-section p {
  color: var(--primary);
}

/* ========================================================================
   FLEX UTILS & CARD GRIDS (ALWAYS FLEX ONLY)
   ======================================================================== */
.card-container,
.features-section .feature-grid,
.service-list,
.service-cards,
.resources-grid,
.content-grid,
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .service-card, .resource-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-low);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px 24px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover, .service-card:hover, .resource-item:hover {
  box-shadow: var(--shadow-med);
  transform: translateY(-4px) scale(1.025);
}

/* Feature Item (for feature grid) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #e9f6eb;
  border-radius: 30px 30px 16px 26px;
  padding: 28px 21px 18px 21px;
  box-shadow: var(--shadow-low);
  min-height: 240px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .13s;
}
.feature-item img {
  max-width: 44px;
  margin-bottom: 7px;
  border-radius: 16px;
  background: #daf8e2;
  box-shadow: 0 2px 5px 0 rgba(52, 165, 114, 0.05);
  padding: 5px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: var(--green-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: var(--shadow-med);
  transform: scale(1.025);
}

.service-card {
  background: #f1f9f4;
  color: var(--primary);
  border-radius: 22px 22px 40px 22px;
  min-width: 220px;
  box-shadow: var(--shadow-low);
  margin-bottom: 20px;
  flex: 1 1 250px;
  transition: box-shadow 0.19s, transform .18s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.service-card h2,.service-card h3 {
  font-size: 1.19rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
}
.service-card p {
  color: #223710;
  font-size: 1.03rem;
}
.service-card .price {
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 6px;
}
.service-card:hover {
  box-shadow: var(--shadow-med);
  background: #e7f2eb;
  transform: translateY(-3px) scale(1.03);
}

.resource-item {
  background: #fff;
  border-radius: 18px 35px 18px 25px;
  min-width: 220px;
  box-shadow: var(--shadow-low);
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resource-item h2 {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
}
.resource-item ul { margin-top: 0px; margin-bottom: 4px; }

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px 38px 20px 20px;
  box-shadow: var(--shadow-low);
  min-width: 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform .18s;
  flex: 1 1 270px;
  flex-direction: column;
}
.testimonial-card p {
  color: #222;
  font-size: 1.06rem;
  line-height: 1.5;
}
.testimonial-name {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: .99rem;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-med);
  transform: scale(1.018);
  background: #ecfbf1;
}

/* Specialized layout classes */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Table Styling */
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-low);
}
.comparison-table th, .comparison-table td {
  padding: 15px 10px;
  text-align: left;
  font-size: 1rem;
}
.comparison-table th {
  background: #e9f6eb;
  color: var(--green-dark);
  font-family: 'Montserrat', Arial, sans-serif;
}
.comparison-table tbody tr:nth-child(even) {
  background: #f7fafb;
}
.comparison-table tbody tr:nth-child(odd) {
  background: #fafcfa;
}
.comparison-table tr td:last-child, .comparison-table tr th:last-child {
  font-weight: 600;
}

/* Forms */
input[type="email"], input[type="text"], textarea {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #DDE3DC;
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  margin-bottom: 12px;
  background: #fff;
  transition: border 0.2s;
}
input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }
  .newsletter-form input[type="email"] {
    max-width: 340px;
    margin-bottom: 0;
  }
}

/* Map Placeholder */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 24px 0;
  padding: 18px;
  background: #F2F6F5;
  border-radius: 22px;
  min-height: 75px;
}
.map-placeholder img {
  width: 60px;
  border-radius: 14px;
  background: #e3ffe2;
}
.map-placeholder span {
  color: #326142;
  font-size: 1.04rem;
}

/* Thank You / Next Steps */
.next-steps-info ul { list-style: disc inside; }
.next-steps-info li { margin-bottom: 4px; }

/* Contact Details */
.contact-details p {
  margin-bottom: 3px;
  font-size: 1.06rem;
  color: #374e3d;
}

/* Text Section (about, privacy, etc) */
.text-section {
  background-color: #fcfdfb;
  border-radius: 18px 29px 18px 21px;
  box-shadow: var(--shadow-low);
  padding: 30px 22px 15px 22px;
  margin-bottom: 40px;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
footer {
  background: #EDEDED;
  border-top: 2.5px solid #d8ddb8;
  width: 100%;
  margin-top: 40px;
  padding-top: 24px;
  padding-bottom: 14px;
  font-size: 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #12571b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  color: #526d56;
  font-size: 0.96rem;
}

/* Responsive alignment footer */
@media (max-width:600px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .logo-link img { height: 34px; }
}

/* ========================================================================
   RESPONSIVENESS (MOBILE FIRST)
   ======================================================================== */
@media (max-width: 980px) {
  .testimonial-slider, .testimonial-list, .features-section .feature-grid, .service-cards, .resources-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.58rem;
  }
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.20rem; }
  
  .section { padding: 25px 8px; margin-bottom: 38px; }
  .card, .service-card, .resource-item, .feature-item, .testimonial-card {
    min-width: unset;
    padding: 20px 14px 18px 14px;
  }
  .feature-item { padding: 17px 11px 11px 11px; }
  .content-wrapper, .content-grid {
    gap: 8px;
  }
  .card-container,
  .features-section .feature-grid,
  .service-list,
  .service-cards,
  .resources-grid,
  .testimonial-slider,
  .testimonial-list,
  .content-grid {
    flex-direction: column !important;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: center;
  }
  .footer-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1.03rem; }
  body { font-size: 0.98rem; }
}

/* ========================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1200;
  background: #37563c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 13px 18px 13px;
  box-shadow: 0 -2px 16px rgba(52, 165, 114, 0.15);
  border-radius: 18px 18px 0 0;
  animation: slideUp-cookie .38s cubic-bezier(.56,.6,.38,1.13);
}
.cookie-banner__text {
  font-size: 1.08rem;
  margin-bottom: 15px;
  text-align: center;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 11px 18px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow-low);
  transition: background 0.17s, color 0.1s;
}
.cookie-btn--accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: var(--leaf);
  color: #1d2552;
}
.cookie-btn--reject {
  background: #e6ecea;
  color: var(--primary);
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #b1c2b6;
  color: #fff;
}
.cookie-btn--settings {
  background: #fff;
  color: var(--accent);
  border: 1.4px solid #aaa;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #daeada;
  border-color: var(--accent);
}

@media (max-width:768px) {
  .cookie-banner__actions {
    gap: 10px;
  }
}
@keyframes slideUp-cookie {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1300;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(64,70,42,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadein-cookie .19s linear;
}
@keyframes fadein-cookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  min-width: 320px;
  max-width: 90vw;
  border-radius: 16px;
  padding: 37px 30px 15px 30px;
  box-shadow: var(--shadow-med);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: popCookie .27s cubic-bezier(.45,.44,.31,1.2);
}
@keyframes popCookie {
  from { transform: scale(.86); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6em;
}
.cookie-modal__section {
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-switch-disabled {
  opacity: .57;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  color: #233067;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =======================================================================
   ORGANIC/NATURE VISUALS
   ======================================================================= */
.section, .card, .feature-item, .service-card, .testimonial-card, .resource-item, .text-section {
  box-shadow: var(--shadow-low);
  border-radius: var(--radius);
  background: #fff;
}
.features-section {
  background: #f4fdf6;
  border-radius: 0 0 48px 48px;
}

/* Subtle background textures */
body, .features-section, .hero-section, .cta-section {
  background-image: url('../assets/textures/organic_bg.png');
  background-size: 2800px auto;
  background-repeat: repeat;
  background-blend-mode: lighten;
}

/* Organic shapes (clip-path, border radius variations) */
.feature-item, .service-card, .testimonial-card, .resource-item {
  border-radius: 30px 22px 22px 42px / 28px 40px 22px 28px;
}

/* Leaves/accents for some visual separation (optional deco) */
.organic-accent {
  background: var(--accent);
  border-radius: 53% 47% 61% 39% / 52% 48% 52% 48%;
  width: 36px;
  height: 36px;
  display: inline-block;
  margin: -8px 10px 0 0;
  opacity: .12;
  z-index: 0;
}

/* Hover, active micro-interactions for all clickable cards, buttons */
.card:active, .feature-item:active, .service-card:active, .testimonial-card:active, .btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 7px 0 rgba(36,51,25,0.06);
}

/* ========================================================================
   MISC UTILS, SPACING, ACCESSIBILITY
   ======================================================================== */
.section + .section,
.section + section,
.text-section + .section,
.section + .cta-section {
  margin-top: 32px;
}
@media (max-width: 600px) {
  .section + .section {
    margin-top: 12px;
  }
}
::-webkit-input-placeholder { color: #adcfae; opacity:1; }
::-moz-placeholder { color: #adcfae; opacity:1; }
:-ms-input-placeholder { color: #adcfae; opacity:1; }
::placeholder { color: #adcfae; opacity:1; }

/* Accessibility: increase contrast for testimonials and reviews */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-name {
  background: #fff !important;
  color: #223b36 !important;
}
.testimonial-card .testimonial-name {
  color: var(--accent) !important;
  margin-top: 8px;
}

/* Consistent spacing to prevent overlaps */
.card, .feature-item, .service-card, .resource-item, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .testimonial-list, .resources-grid, .content-grid {
  gap: 20px;
  margin-bottom: 13px;
}

/* =======================================================================
   SCROLLBAR STYLING
   ======================================================================= */
::-webkit-scrollbar {
  width: 11px;
  background: #dbe8d7;
}
::-webkit-scrollbar-thumb {
  background: #b3cdb4;
  border-radius: 8px;
}
section {
  padding: 15px;
}
/* =======================================================================
   END
   ======================================================================= */
