/* ---------------------------------------------------
   RaumOrdnung – Style CSS (Warm + Friendly)
   ---------------------------------------------------
   Responsive, modern, approachably warm brand design
   CRITICAL: Only uses FLEXBOX for all layouts (NO GRID)
   ---------------------------------------------------
*/

/* --------------------
   CSS RESET & BASE
-------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #264653;
  background: #fff;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #264653;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A4B494;
  outline-offset: 3px;
}
ul, ol {
  padding-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------
   TYPOGRAPHY
-------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: #264653;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.1rem;
  color: #6A6563;
  font-weight: 400;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}

p, li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* --------------
   CONTAINER
-------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ------------
   HEADER
------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(42, 50, 61, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  color: #264653;
  transition: background 0.12s, color 0.12s;
}
nav a:hover,
nav a:active {
  background: #A4B494;
  color: #fff;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #A4B494;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(164,180,148,0.11);
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  display: inline-block;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #264653;
  color: #fff;
  box-shadow: 0 8px 20px rgba(38, 70, 83, 0.12);
  transform: translateY(-2px) scale(1.024);
}
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #F5F5F5;
  color: #264653;
  border: 2px solid #A4B494;
  border-radius: 24px;
  padding: 12px 28px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(164,180,148,0.07);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #A4B494;
  color: #fff;
  border-color: #264653;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  color: #264653;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 6px 16px;
  margin-left: 12px;
  box-shadow: 0 1px 4px rgba(38,70,83,0.07);
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A4B494;
}

/* ---------------
   MOBILE MENU
--------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 22px rgba(38,70,83,0.07);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.79,.04,.31,.82);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 28px 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #264653;
  font-size: 2rem;
  border: none;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.12s;
}
.mobile-menu-close:hover {
  color: #A4B494;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #264653;
  background: #F5F5F5;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 4px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #A4B494;
  color: #fff;
}
/* Hide desktop nav and cta-primary when mobile menu is open */
body.menu-open header nav,
body.menu-open .cta-primary {
  display: none !important;
}

/* -------------
   HERO SECTION
-------------- */
.hero {
  background: #F5F5F5;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 3px 24px rgba(164,180,148,0.07);
  padding: 44px 0 36px 0;
  margin-bottom: 48px;
  width: 100vw;
  left: 50%;
  right: 50%;
  position: relative;
  transform: translateX(-50%);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #264653;
  font-size: 2.35rem;
  margin-bottom: 10px;
  text-align: center;
}
.hero .subheadline {
  text-align: center;
  color: #6A6563;
}

.team-photo-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(164,180,148,0.13);
  padding: 18px;
  margin-top: 12px;
}

/* ---------------
   SECTIONS
---------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features, .services, .about, .cta, .testimonials, .faq,
.services-overview, .services, .legal, .contact {
  margin-bottom: 60px;
  padding: 40px 0;
}
.about {
  background: #F5F5F5;
  border-radius: 28px;
}

/* Card container and Content grids */
.card-container, .feature-grid, .service-list, .service-detailed-list,
.testimonial-slider, .testimonial-grid, .workshop-list, .home-office-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(164,180,148,0.085);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 14px 34px 0 rgba(38,70,83,0.16);
  transform: translateY(-4px) scale(1.01);
}
/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(164,180,148,0.07);
  padding: 26px 20px 22px 20px;
  width: 260px;
  min-width: 220px;
  flex: 1 1 190px;
  min-height: 180px;
  transition: box-shadow 0.13s;
}
.feature-item img {
  height: 38px; width: 38px; border-radius: 10px; background: #F5F5F5;
}
.feature-item h3 {
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(164,180,148,0.13);
}

.service-highlight, .service-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(164,180,148,0.08);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow .17s;
}
.service-item img {
  width: 44px; height: 44px; background: #F5F5F5; border-radius: 12px; margin-right: 10px; flex-shrink: 0;
}
.service-item div > h3 span, .service-highlight h3 span {
  color: #A4B494;
  font-size: 1.05rem;
  margin-left: 10px;
  font-weight: 600;
}
.service-highlight:hover, .service-item:hover {
  box-shadow: 0 14px 34px rgba(38,70,83,0.12);
}

.workflow-overview, .process-explanation, .organizational-tips, .pricing-highlights,
.tipps-overview, .space-saving-ideas, .room-specific-tips
{
  background: #fffbe6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(255,204,112,0.07);
  padding: 18px 20px 12px 20px;
  margin-bottom: 20px;
}
.pricing-highlights {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  font-size: 1.06rem;
  font-weight: 600;
}

/* -----------------
   TESTIMONIALS
------------------ */
.testimonials {
  background: #fdfaf5;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(164,180,148,0.10);
  color: #264653;
  min-width: 260px;
  max-width: 360px;
  min-height: 164px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
  font-size: 1.06rem;
}
.testimonial-card p {
  color: #264653;
  font-size: 1.06rem;
  margin-bottom: 0px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: #A4B494;
  font-size: 1rem;
  align-self: flex-end;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px 0 rgba(38,70,83,0.09);
  transform: translateY(-3px);
}

/* ---------------- 
     CTA Section
-----------------*/
.cta {
  background: #A4B494;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 4px 22px rgba(38,70,83,0.10);
  margin-bottom: 60px;
  padding: 40px 0;
}
.cta .container, .cta .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta h2, .cta p {
  color: #fff; text-align: center;
}
.cta .cta-primary, .cta-primary.cta-primary {
  background: #fff;
  color: #264653;
  border: none;
  margin-top: 12px;
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #264653;
  color: #fff;
}

/* ---------------
   FAQ / Accordion
--------------- */
.faq .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.faq-accordion > div {
  background: #fff;
  border-left: 6px solid #A4B494;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(164,180,148,0.10);
  padding: 18px 18px 12px 22px;
  transition: box-shadow 0.14s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 24px rgba(38,70,83,0.09);
}
.faq-accordion h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #264653;
}

/* -----------------
   LEGAL PAGES
------------------ */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(164,180,148,0.07);
  margin-bottom: 60px;
  padding: 38px 20px;
}
.legal h1 {
  margin-bottom: 16px;
  font-size: 2rem;
}
.legal h2 {
  color: #A4B494;
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.legal p, .legal ul, .legal li {
  color: #3D4152;
}

/* ---------
   FOOTER
----------- */
footer {
  background: #264653;
  padding: 48px 0 12px 0;
  color: #fff;
  margin-top: 48px;
}
footer .container {
  gap: 24px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 40px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.91;
  padding: 6px 0;
  border-radius: 10px;
  transition: background .13s, color .13s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #A4B494;
  background: rgba(255,255,255,.06);
  text-decoration: underline;
}
.footer-contact {
  margin: 18px 0;
  font-size: 1rem;
  color: #d4e6cf;
}
.footer-contact a {
  color: #A4B494;
  font-size: 1rem;
  text-decoration: underline dotted;
  transition: color .13s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 10px;
  padding-top: 12px;
  color: #c7efcf;
  text-align: center;
  font-size: 0.92rem;
}

/* -------------------------
   PAGE SPECIFIC ELEMENTS
-------------------------- */
.success {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(164,180,148,0.08);
  margin-bottom: 60px;
  padding: 38px 0;
  text-align: center;
}
.success .thank-you-message {
  font-size: 1.17rem;
  margin-bottom: 18px;
  color: #264653;
}

.next-steps-info {
  margin-bottom: 20px;
  background: #fffbe6;
  border-radius: 10px;
  padding: 14px 10px;
  color: #A4B494;
  font-size: 0.95rem;
}

.address-details, .email-phone, .office-hours {
  margin-bottom: 10px;
}

/* -------------------------
   FLEXBOX HELPER CLASSES
-------------------------- */
.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; }

/* Guarantee minimum spacing in all flex containers */
.features .content-wrapper,
.services .content-wrapper,
.cta .content-wrapper,
.about .content-wrapper {
  gap: 22px;
}

/* ---------------
   COOKIE CONSENT
---------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fffbe6;
  color: #264653;
  box-shadow: 0 -2px 14px rgba(38,70,83,0.08);
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 16px 22px 16px;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  animation: banner-fadein .7s cubic-bezier(.31,.76,.32,1.17);
  transition: transform .28s;
}
@keyframes banner-fadein {
  from { transform: translateY(130px); opacity: 0; }
  to { transform: translateY(0);opacity:1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(164,180,148,0.08);
  transition: background 0.15s, color 0.13s, transform 0.13s, box-shadow 0.11s;
  background: #A4B494;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #264653;
  color: #fff;
}
.cookie-btn.reject {
  background: #e57373;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #be2222;
  color: #fff;
}
.cookie-btn.settings {
  background: #F5F5F5;
  color: #264653;
  border: 2px solid #A4B494;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A4B494;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-51%) scale(1);
  background: #fff;
  box-shadow: 0 8px 32px rgba(38,70,83,0.19);
  border-radius: 22px;
  z-index: 220;
  width: 94vw;
  max-width: 430px;
  padding: 38px 24px 26px 24px;
  animation: modal-pop 0.3s cubic-bezier(.8,-0.02,.95,1.11);
}
@keyframes modal-pop {
  from { opacity: 0; transform: translate(-50%,-56%) scale(0.88); }
  to { opacity: 1; transform: translate(-50%,-51%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #264653;
  text-align: center;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F5F5F5;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-size: 1rem;
  color: #264653;
}
.cookie-btn.save {
  background: #A4B494;
  color: #fff;
  margin-top: 18px;
  width: 100%;
}
.cookie-btn.save:hover {
  background: #264653;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 20px; top: 16px;
  background: none; border: none;
  font-size: 2rem;
  color: #A4B494;
  cursor: pointer;
}

/*
   Switch toggle (for Analytics/Marketing)
*/
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  margin-left: 12px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  background: #eee;
  border-radius: 24px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background .19s;
}
.cookie-switch-slider:before {
  position: absolute;
  content: '';
  height: 19px; width: 19px;
  left: 3px; top: 2.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform .14s, background .13s;
  box-shadow: 0 2px 5px rgba(164,180,148,0.08);
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: #A4B494;
}
.cookie-switch input:checked + .cookie-switch-slider:before {
  transform: translateX(18px);
  background: #264653;
}

/*
  Essential cookies disabled
*/
.cookie-switch[aria-disabled='true'] .cookie-switch-slider {
  background: #bccbb4 !important;
  cursor: not-allowed;
}
.cookie-switch[aria-disabled='true'] .cookie-switch-slider:before {
  background: #f3efee !important;
}

/* ========== RESPONSIVE (Mobile-first) ========== */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .footer-top, .card-container, .feature-grid, .service-list, .service-detailed-list,
  .testimonial-slider, .testimonial-grid, .workshop-list, .home-office-packages {
    gap: 18px;
  }
  .features .content-wrapper, .services .content-wrapper,
  .about .content-wrapper, .cta .content-wrapper {
    gap: 18px;
  }
  header .container {
    gap: 6px;
  }
}
@media (max-width: 880px) {
  .footer-top, .card-container, .feature-grid, .service-list, .service-detailed-list,
  .testimonial-slider, .testimonial-grid, .workshop-list, .home-office-packages {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .feature-item {
    min-width: 120px;
    width: 100%;
    min-height: 120px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.22rem; }
  .hero {
    padding: 20px 0 18px 0;
    border-radius: 0 0 22px 22px;
  }
  header .container {
    flex-direction: row;
    height: auto;
    padding-top: 10px; padding-bottom: 10px;
  }
  nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .container {
    max-width: 100vw;
    padding: 0 3px;
  }
  .features,
  .services,
  .about,
  .cta,
  .testimonials,
  .faq,
  .legal, .contact {
    padding: 24px 0 !important;
  }
  .section {
    padding: 18px 3px !important;
  }
  .hero {
    border-radius: 0 0 10px 10px;
  }
  .cta {
    border-radius: 10px;
    margin-bottom: 40px;
  }
  .about {
    border-radius: 10px;
  }
  .testimonial-card {
    min-width: 140px;
    max-width: 100%;
    font-size: 0.93rem;
  }
  .service-item, .feature-item, .service-highlight, .faq-accordion > div {
    padding: 12px 7px;
    font-size: 0.95rem;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 16px 4vw 16px 4vw;
    border-radius: 10px;
  }
  .cookie-banner {
    border-radius: 12px 12px 0 0;
    font-size: 0.96rem;
    padding: 16px 3vw 12px 3vw;
  }
}

/* ---------------
   Focus Styles
--------------- */
a, button, .cta-primary, .cta-secondary, .cookie-btn, .mobile-nav a {
  outline: none;
}
a:focus-visible, button:focus-visible,
.cta-primary:focus-visible, .cta-secondary:focus-visible,
.cookie-btn:focus-visible, .mobile-nav a:focus-visible {
  outline: 2px solid #A4B494;
  outline-offset: 3px;
}

/* ---------------
   Micro-interactions
--------------- */
.card, .service-item, .feature-item, .service-highlight,
.testimonial-card, .faq-accordion > div {
  cursor: default;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .service-item:hover, .feature-item:hover,
.service-highlight:hover, .testimonial-card:hover, .faq-accordion > div:hover {
  box-shadow: 0 12px 32px rgba(38,70,83,0.13);
  transform: translateY(-2px);
}

/* ---------------
   Miscellaneous
--------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #A4B494;
  border-radius: 12px;
}

::selection {
  background: #A4B494;
  color: #fff;
}

/* END OF STYLE */
