/* ===============================================================================
   Meisterhand Reparaturservice - nature_organic DESIGN - CSS by Senior UI Dev
   ==============================================================================
   BRAND COLORS: 
     Primary: #28415B (deep blue, trustworthy),
     Secondary: #FEF6E3 (off-white sandy beige),
     Accent: #AA4900 (earthy orange/brown),
     Extra nature_organic shades: Olive: #63875a, Moss: #44623f, Light sand: #f9f6ef
   TYPOGRAPHY:  
     Display: 'Roboto Slab', serif;
     Body:    'Open Sans', sans-serif;
   SHAPES: Organic, rounded corners, soft drop shadows
   FLEXBOX ONLY - NO GRID/NO COLUMNS
   =============================================================================== */

/* === 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, 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #28415B;
  background: #FEF6E3;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #AA4900;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #63875a;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
:focus {
  outline: 2px solid #63875a;
  outline-offset: 2px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #28415B;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, li {
  font-size: 1rem;
  color: #384A32;
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong { font-weight: 700; color: #28415B; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

/* === GENERAL LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* === HEADER === */
header {
  background: #f9f6ef;
  box-shadow: 0 2px 18px 0 rgba(68,98,63,0.05);
  border-bottom-left-radius: 36px 24px;
  border-bottom-right-radius: 42px 20px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 88px;
}
header img {
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(99, 135, 90, 0.08);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #28415B;
  font-size: 16px;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #e2ece2;
  color: #63875a;
}
.button.primary {
  background: #63875a;
  color: #FEF6E3;
  border: none;
  border-radius: 24px 18px 24px 18px;
  padding: 10px 26px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px 0 rgba(99,135,90,0.11);
  transition: box-shadow 0.2s, background 0.19s, color 0.18s;
  cursor: pointer;
  margin-left: 20px;
  min-width: 148px;
  text-align: center;
}
.button.primary:hover,
.button.primary:focus {
  background: #44623f;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(99,135,90,0.24);
}
.button.accent {
  background: #AA4900;
  color: #fff;
  border: none;
  border-radius: 25px 23px 20px 19px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 10px 30px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px 0 rgba(170,73,0,0.10);
  transition: background 0.18s, box-shadow 0.2s;
}
.button.accent:hover,
.button.accent:focus {
  background: #E2742B;
  color: #fffbe0;
  box-shadow: 0 10px 24px 0 rgba(170,73,0,0.23);
}
.button,
.button.primary,
.button.accent {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.15s, color 0.12s;
}

@media (max-width: 950px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 12px;
  }
  .main-nav {
    gap: 18px;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
  background: #63875a;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 60% 32% 54% 48%/52% 70% 46% 60%;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  z-index: 2001;
  box-shadow: 0 2px 10px 0 rgba(99, 135, 90, 0.13);
  border: 0;
}
@media (max-width: 950px) {
  .main-nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #44623f;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(0.7,0,0.3,1), opacity 0.35s;
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  padding-left: 0;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  box-shadow: 4px 0 42px 7px rgba(99,135,90,0.12);
}
.mobile-menu-close {
  margin-left: 24px;
  background: #f9f6ef;
  color: #44623f;
  border-radius: 16px 38px 17px 34px;
  border: none;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(68,98,63,0.12);
  margin-bottom: 14px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #63875a;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 32px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #f9f6ef;
  font-size: 1.3rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  padding: 12px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #E2742B;
}

/* Overlay for body when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* === SECTIONS, GAPS, CARDS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 38px 36px 24px/32px 46px 36px 22px;
  box-shadow: 0 4px 22px 0 rgba(99,135,90,0.10);
}
section:last-child { margin-bottom: 0; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FEF6E3;
  border-radius: 22px 24px 22px 14px/32px 18px 34px 20px;
  box-shadow: 0 2px 14px 0 rgba(68,98,63,0.08);
  padding: 28px 22px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: 16px;
    align-items: flex-start;
  }
}

.feature-grid,
.usp-grid,
.services-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-item, .usp-item, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FEF6E3;
  border-radius: 22px 20px 18px 24px/20px 24px 36px 22px;
  box-shadow: 0 2px 14px 0 rgba(68,98,63,0.05);
  padding: 26px 18px;
  flex: 1 1 228px;
  min-width: 200px;
  margin-bottom: 20px;
  border: 1.5px solid #eae4d5;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-item:hover, .usp-item:hover, .feature-item:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 8px 30px 0 rgba(99,135,90,0.16);
}

@media (max-width: 950px) {
  .feature-grid, .usp-grid, .services-category-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-item, .usp-item, .feature-item {
    min-width: 0;
    width: 100%;
  }
}

/* === TABLE (PRICES) === */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FEF6E3;
  border-radius: 16px 24px 14px 22px/24px 13px 18px 19px;
  margin-bottom: 38px;
  box-shadow: 0 2px 18px 0 rgba(99,135,90,0.08);
  overflow: hidden;
}
.price-table th,
.price-table td {
  padding: 16px 14px;
  font-size: 1rem;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  border-bottom: 1px solid #eae4d5;
}
.price-table thead th {
  background: #63875a;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.07rem;
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .price-table th, .price-table td {
    padding: 11px 7px;
    font-size: 0.98rem;
  }
}

/* === SERVICE HIGHLIGHTS & BENEFITS === */
.service-highlights,
.pricing-benefits,
.included-services,
.next-steps-info {
  background: #f9f6ef;
  border-radius: 16px 12px 30px 16px/22px 23px 31px 13px;
  margin: 24px 0;
  padding: 20px 18px;
  box-shadow: 0 2px 10px 0 rgba(99,135,90,0.09);
}

/* === FAQ STYLE === */
.faq-list {
  background: #FEF6E3;
  border-radius: 19px 22px 18px 23px;
  box-shadow: 0 2px 10px 0 rgba(99,135,90,0.05);
  padding: 20px 16px 16px 16px;
  margin-top: 8px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list li {
  font-size: 1rem;
  color: #28415B;
  margin: 0 0 5px 0;
}
.faq-list strong {
  color: #63875a;
}

/* === TESTIMONIAL CARD === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f9f6ef;
  border-radius: 22px 32px 18px 24px/20px 30px 26px 21px;
  box-shadow: 0 2px 16px 0 rgba(68,98,63,0.11);
  margin-bottom: 20px;
  min-width: 220px;
  border: 1.5px solid #eae4d5;
  font-size: 1.08rem;
  color: #28415B;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card p {
  margin: 0 12px 0 0;
  font-family: 'Roboto Slab', serif;
  line-height: 1.4;
  font-style: italic;
  font-size: 1.05rem;
  color: #384A32;
  flex: 1 1 0%;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #63875a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 0 rgba(68,98,63,0.17);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 614px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 14px 10px;
    font-size: .98rem;
  }
}

/* === PROJECT CARD (REFERENZEN) === */
.project-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.project-item {
  background: #FEF6E3;
  border-radius: 20px 18px 14px 28px/16px 29px 32px 22px;
  box-shadow: 0 2px 10px 0 rgba(68,98,63,0.07);
  padding: 22px 14px;
  flex: 1 1 270px;
  margin-bottom: 20px;
}
@media (max-width: 950px) {
  .project-summaries {
    flex-direction: column;
    gap: 16px;
  }
  .project-item { min-width: 0; width: 100%; }
}

/* === FOOTER === */
footer {
  background: #28415B;
  color: #fff;
  border-top-left-radius: 44px 22px;
  border-top-right-radius: 32px 26px;
  padding: 34px 0 14px 0;
  margin-top: 46px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  justify-content: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-links a {
  color: #FEF6E3;
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-links a:hover { color: #AA4900; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 0.98rem;
  color: #fffbe0;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.footer-contact a {
  color: #fdf6e7;
  font-weight: 500;
}
.footer-contact a:hover { color: #E2742B; }
.footer-contact img { height: 1.14em; margin-bottom: -2px; margin-right: 5px; filter: brightness(0.9) saturate(0.7); }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  font-size: 0.96rem;
  color: #fff8f0;
}
.footer-brand img {
  height: 34px;
  margin-bottom: 3px;
  border-radius: 13px;
  box-shadow: 0 0 11px 0 rgba(239,220,207,0.10);
}

@media (max-width: 414px) {
  .footer-links { gap: 12px; }
}
@media (max-width: 650px) {
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
}

/* === CONTACT/DETAILS/ICON LISTS === */
.contact-details ul, .contact-details li, .contact-map {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.04rem;
  color: #28415B;
}
.contact-details img { height: 21px; }
.contact-map {
  margin-top: 18px;
  color: #44623f;
  font-size: .99rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Highlighted Results (Referenzen) */
.highlighted-results ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #63875a;
  padding-top: 4px;
}

/* === UTILITY SPACING & FLEX PATTERNS (MANDATORY) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === FORM/INPUT STYLES === */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #28415B;
  padding: 10px 13px;
  border: 1.3px solid #d6ceb7;
  border-radius: 12px 19px 17px 13px;
  margin-bottom: 16px;
  transition: border 0.17s;
  background: #f9f6ef;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #63875a;
  background: #f3f9f3;
}

/* === COOKIE CONSENT BANNER & MODAL === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdf7;
  color: #28415B;
  box-shadow: 0 -3px 34px 0 rgba(68,98,63,0.12);
  padding: 19px 14px 20px 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  z-index: 3000;
  border-top-right-radius: 33px 22px;
  border-top-left-radius: 26px 18px;
  transition: transform 0.32s, opacity 0.28s;
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
#cookie-banner .cookie-text {
  flex: 1 1 0;
  font-size: 1rem;
  color: #28415B;
  font-family: 'Open Sans', Arial, sans-serif;
  padding-right: 8px;
}
.cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-actions .cookie-btn {
  background: #63875a;
  color: #fff;
  border: none;
  border-radius: 19px 15px 19px 13px;
  font-size: 1.04rem;
  padding: 9px 19px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-actions .cookie-btn.settings {
  background: #AA4900;
}
.cookie-actions .cookie-btn.reject {
  background: #fffbe0;
  color: #44623f;
  border: 1.5px solid #63875a;
}
.cookie-actions .cookie-btn:hover, .cookie-actions .cookie-btn:focus {
  background: #44623f;
  color: #fffbe0;
}
.cookie-actions .cookie-btn.settings:hover {
  background: #E2742B;
}
#cookie-banner .cookie-btn:active {
  transform: scale(0.97);
}
@media (max-width: 650px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.93rem;
  }
}

/* Cookie Preferences Modal */
#cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(50,60,44,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #FEF6E3;
  border-radius: 32px 22px 19px 21px;
  padding: 38px 33px 25px 33px;
  width: 98vw;
  max-width: 390px;
  box-shadow: 0 8px 32px 0 rgba(68,98,63,0.19);
  color: #28415B;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookie-modal-in 0.45s cubic-bezier(0.65, 0, 0.25, 1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 9px;
  color: #28415B;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #63875a;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  margin-right: 7px;
}
.cookie-category.essential label {
  color: #63875a;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #63875a;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 94px;
}
#cookie-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #AA4900;
  color: #fff;
  border-radius: 9px;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  text-align: center;
  box-shadow: 0 1px 5px 0 rgba(99,135,90,0.15);
  border: none;
  cursor: pointer;
}
#cookie-modal .close-btn:hover {
  background: #63875a;
}

@media (max-width: 430px) {
  .cookie-modal-content {
    padding: 19px 5vw 18px 5vw;
    max-width: 98vw;
  }
}

/* === MICRO-ANIMATIONS & HOVERS === */
.button, button {
  transition: box-shadow 0.18s, background 0.15s, color 0.12s, transform 0.13s;
}
.button:active, button:active {
  transform: scale(0.99);
}
.feature-item, .card, .service-item, .usp-item, .project-item {
  transition: box-shadow 0.25s, transform 0.16s;
}
.card:hover, .feature-item:hover, .service-item:hover, .usp-item:hover, .project-item:hover {
  box-shadow: 0 10px 28px 0 rgba(170,73,0,0.11);
  transform: translateY(-7px) scale(1.013);
}

/* === RESPONSIVE LAYOUT (MOBILE-FIRST) === */
@media (max-width: 710px) {
  section {
    padding: 25px 7px;
    border-radius: 18px 14px 18px 20px;
  }
  .card, .feature-item, .service-item, .usp-item, .project-item {
    padding: 17px 6px;
    border-radius: 16px 13px 13px 19px;
  }
}
/* Smaller table font and scroll */
@media (max-width: 540px) {
  .price-table { font-size: 0.92rem; overflow-x: scroll; }
}
/* General column direction adjustments, gaps, etc. */
@media (max-width: 740px) {
  .container { padding-left: 6px; padding-right: 6px; }
}

/* === SCROLLBAR DESIGN (ORGANIC) === */
body::-webkit-scrollbar {
  width: 10px;
  background: #f9f6ef;
  border-radius: 12px;
}
body::-webkit-scrollbar-thumb {
  background: #63875a;
  border-radius: 9px;
}

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