/* --------------------
   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, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F6F9F3;
  font-family: 'Roboto', Arial, sans-serif;
  color: #22517D;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2F917A;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:focus, a:hover {
  color: #22517D;
  outline: none;
}
input, button, textarea, select {
  font: inherit;
}
strong {
  font-weight: bold;
}

/* -----------
   VARIABLES
   ----------- */
:root {
  --color-primary: #22517D;
  --color-secondary: #2F917A;
  --color-accent: #F6F9F3;
  --color-pastel-blue: #BFD7ED;
  --color-pastel-green: #D2F6E2;
  --color-pastel-lavender: #F2D7FF;
  --color-pastel-yellow: #FFF7D6;
  --color-pastel-pink: #FFE3EE;
  --shadow-soft: 0 4px 16px 0 rgba(34,81,125,0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition-fast: 0.15s cubic-bezier(.77,.11,.36,.99);
}

/* ---------------
   TYPOGRAPHY
   --------------- */
body {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #22517D;
  background: var(--color-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #22517D;
  letter-spacing: 0.01em;
  line-height: 1.17;
}
h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  margin-top: 0;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
  font-weight: 400;
}
.section p, .section ul, .section ol, .section li {
  color: #22517D;
}
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

/* -----------
   CONTAINER
   ----------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------
   SECTION SPACING
   ----------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--color-accent);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

/* -----------
   HEADER & NAV
   ----------- */
header {
  background: linear-gradient(90deg, #BFD7ED 0%, #D2F6E2 100%);
  box-shadow: 0 2px 12px 0 rgba(34,81,125,0.04);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 12px;
  color: #22517D;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
header nav a:hover, header nav a:focus {
  background: #E4E8F2;
  color: #2F917A;
}
header .cta-btn {
  background: #2F917A;
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: bold;
  margin-left: 16px;
  transition: background 0.18s, transform 0.12s;
  box-shadow: 0 2px 8px 0 rgba(47,145,122,0.08);
  letter-spacing: 0.01em;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: #22517D;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
}
/* Hide hamburger by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22517D;
  cursor: pointer;
  z-index: 30;
  padding: 8px 12px;
  transition: background 0.14s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E4E8F2;
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #BFD7ED 70%, #FFE3EE 100%);
  box-shadow: 0 4px 24px 0 rgba(34,81,125,0.09);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.49,.81,.31,.98);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #22517D;
  cursor: pointer;
  margin-bottom: 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 4px;
  font-size: 1.25rem;
  color: #22517D;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius-sm);
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #E8FCF6;
  color: #2F917A;
}
@media (max-width: 992px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 992px) {
  header .container {
    justify-content: space-between;
    gap: 10px;
  }
}
/* --------------
   HERO SECTION
   -------------- */
.hero {
  background: linear-gradient(120deg, #BFD7ED 55%, #D2F6E2 100%);
  padding: 60px 0 48px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 28px 0 rgba(34,81,125,0.03);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero h1 {
  color: #22517D;
  text-shadow: 0 2px 8px #fff3;
}
.hero p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #20516e;
  text-align: center;
  margin-bottom: 0;
}
.hero .cta-btn {
  margin-top: 18px;
  font-size: 1.125rem;
  min-width: 180px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 28px 0;
  }
  .hero .content-wrapper {
    padding: 0 2vw;
    gap: 12px;
  }
}

/* -----------
   FEATURES / ADVANTAGES GRID
   ----------- */
.features-grid, .services-teaser, .services-list, .articles-list, .categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.features-grid > div, .services-teaser > div, .services-list > div, .categories-grid > div, .articles-list > article {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.features-grid > div:hover, .services-teaser > div:hover, .services-list > div:hover, .articles-list > article:hover, .categories-grid > div:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 26px rgba(47,145,122,0.13);
}
.features-grid img {
  width: 42px; height: 42px; margin-bottom: 6px;
}
.features-grid h3, .services-teaser h3, .services-list h2, .articles-list h2 {
  margin-top: 0;
  color: #22517D;
}
.features-grid p, .services-teaser p, .services-list p {
  color: #2F917A;
}
@media (max-width: 900px) {
  .features-grid > div, .services-teaser > div, .services-list > div, .articles-list > article {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .features-grid, .services-teaser, .services-list, .articles-list, .categories-grid {
    gap: 16px;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .features-grid, .services-teaser, .services-list, .articles-list, .categories-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* -----------
   SERVICE & CARD CONTAINERS
   ----------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(34,81,125,0.13);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 600px) {
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    padding: 18px 12px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

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

/* -------
  FOOTER
  ------- */
footer {
  background: linear-gradient(90deg, #BFD7ED 0%, #D2F6E2 80%);
  padding: 40px 0 16px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-navigation a {
  color: #22517D;
  font-size: 1rem;
  margin-bottom: 3px;
  transition: color 0.14s;
  border-radius: var(--radius-sm);
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #2F917A;
  background: #fff;
}
.footer-contact {
  font-size: 0.95rem;
  color: #22517D;
  line-height: 1.6;
}
.footer-contact img {
  display: inline-block;
  width: 18px; height: 18px; vertical-align: text-bottom;
  margin-right: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a img {
  width: 28px; height: 28px;
  transition: filter 0.16s, transform 0.16s;
}
.footer-social a:hover img {
  filter: brightness(0.7) saturate(1.2);
  transform: scale(1.1) rotate(-3deg);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
  }
}

/* --------------
   TESTIMONIALS
   -------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe6;
  color: #22517D;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(34,81,125,0.05);
  border-left: 6px solid #2F917A;
  transition: box-shadow 0.13s, transform 0.13s;
}
.testimonial-card p {
  font-weight: 500;
  color: #22517D;
  font-size: 1.12rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #2F917A;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(47,145,122,0.12);
  transform: scale(1.018);
}
.rating-summary {
  font-size: 1.16rem;
  color: #22517D;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 14px 0 0 0;
}

/* -----------
   BUTTONS
   ----------- */
.cta-btn, .cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 26px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(47,145,122,0.12);
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  margin-right: 14px;
}
.cta-btn:focus, .cta-btn:hover, .cookie-btn:focus, .cookie-btn:hover {
  background: #22517D;
  color: #fff;
  outline: none;
  transform: translateY(-1.5px) scale(1.03);
}
.cookie-btn.reject {
  background: #FFE3EE;
  color: #22517D;
  border: 1.5px solid #F2D7FF;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F2D7FF;
  color: #2F917A;
}
.cookie-btn.settings {
  background: #FFF7D6;
  color: #22517D;
  border: 1.5px solid #BFD7ED;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #BFD7ED;
  color: #22517D;
}
/* Remove margin on last cookie button */
.cookie-btn:last-child {
  margin-right: 0;
}

/* -------------
   FAQ & ACCORDIONS
   ------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #F6F9F3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px;
  transition: box-shadow 0.12s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 20px 0 rgba(34,81,125,0.07);
}
.faq-accordion strong {
  color: #22517D;
  font-size: 1.07rem;
  margin-bottom: 8px;
  display: block;
}
.faq-accordion p {
  color: #2F917A;
}

/* -------------
   LISTS
   ------------- */
ul, ol {
  margin-bottom: 18px;
  padding-left: 1.7em;
}
li {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.55;
  color: #22517D;
}

/* -------------
   FORMS & INPUTS (contact pages, modals)
   ------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #BFD7ED;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  transition: border 0.14s;
  color: #22517D;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #2F917A;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22517D;
  font-size: 1rem;
  margin-bottom: 4px;
  display: block;
}

/* -------------
   SPECIAL SECTIONS
   ------------- */
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.articles-list article {
  flex: 1 1 260px;
}
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.categories-grid > div {
  background: #F2D7FF;
  color: #22517D;
  border-radius: var(--radius-md);
  font-weight: bold;
  padding: 14px 30px;
  min-width: 130px;
  box-shadow: 0 2px 10px 0 rgba(47,145,122,0.05);
  transition: box-shadow 0.13s, transform 0.13s;
  text-align: center;
}
.categories-grid > div:hover {
  box-shadow: 0 6px 20px 0 #FFD6EC88;
  transform: scale(1.03);
}

/* -------------
   RESPONSIVE MEDIA QUERIES
   ------------- */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 768px) {
  .hero { padding: 24px 0 20px 0; }

  .section {
    padding: 24px 6px;
    margin-bottom: 24px;
  }
  footer { padding: 25px 0 8px 0; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.14rem; }
  .footer-navigation, .footer-contact, .footer-social {
    align-items: flex-start;
  }
  .features-grid > div, .services-teaser > div, .services-list > div, .articles-list > article {
    min-width: unset;
    max-width: 100%;
  }
}

/* -------------
   COOKIE CONSENT BANNER STYLES
   ------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFF7D6 90%, #F2D7FF 100%);
  box-shadow: 0 -2px 20px 0 rgba(34,81,125,0.10);
  padding: 26px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  transition: transform 0.34s, opacity 0.22s;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-text {
  font-size: 1.05rem;
  color: #22517D;
  margin-bottom: 4px;
  text-align: center;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 5px;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 22px 4vw 20px 4vw;
  }
  .cookie-btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    margin-right: 0!important;
  }
}

/* -------------
   COOKIE MODAL POPUP
   ------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,81,125,0.25);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(47,145,122,0.13);
  max-width: 410px;
  min-width: 275px;
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInCookieModal 0.45s cubic-bezier(.21,.65,.54,1.02);
}
@media (max-width: 600px) {
  .cookie-modal {
    width: 92vw;
    min-width: unset;
    max-width: 99vw;
    padding: 22px 10px 18px 10px;
  }
}
@keyframes fadeInCookieModal {
  0% {opacity: 0; transform: translateY(32px) scale(0.97);}
  100% {opacity:1; transform: translateY(0) scale(1);}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #22517D;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category-label {
  font-size: 1rem;
  color: #2F917A;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px; height: 26px;
}
.cookie-toggle input { display: none; }
.cookie-switch {
  position: absolute;
  cursor: pointer;
  background: #D2F6E2;
  border-radius: 13px;
  width: 44px;
  height: 100%;
  transition: background 0.12s;
}
.cookie-toggle input:checked + .cookie-switch {
  background: #2F917A;
}
.cookie-switch:after {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: left 0.14s;
}
.cookie-toggle input:checked + .cookie-switch:after {
  left: 22px;
}
.cookie-modal .cookie-description {
  font-size: 0.96rem;
  color: #22517D;
}
.cookie-modal .modal-btn-group {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal .modal-btn-group .cookie-btn {
  min-width: 110px;
  margin-right: 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #2F917A;
  cursor: pointer;
}
.close-modal:hover, .close-modal:focus {
  color: #22517D;
}

/* -----------------
   MICRO INTERACTIONS
   ----------------- */
.cta-btn, .cookie-btn {
  will-change: transform, background, color;
}
.card, .features-grid > div, .services-teaser > div, .testimonial-card, .articles-list > article {
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .features-grid > div:hover, .services-teaser > div:hover, .testimonial-card:hover, .articles-list > article:hover {
  z-index: 2;
}

/* FOCUS VISIBLE FOR ACCESSIBILITY */
*:focus-visible {
  outline: 2px solid #2F917A;
  outline-offset: 2px;
}

/* Utility classes (optional if needed by JS) */
.hide {
  display: none !important;
}

/* Ensure images scale in flex layouts and icon images are clean */
img, svg {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

/* Minimum gap between all cards and content blocks */
.card + .card,
.testimonial-card + .testimonial-card,
.feature-item + .feature-item,
.articles-list > article + article,
.categories-grid > div + div {
  margin-top: 20px;
}

/* Ensure no content overlapping – enforced spacing */
.content-wrapper > *,
.section > * {
  margin-bottom: 20px;
}
.content-wrapper > *:last-child,
.section > *:last-child {
  margin-bottom: 0;
}

/* --------------
   SCROLLBAR STYLING
   -------------- */
::-webkit-scrollbar {
  width: 7px;
  background: #F2D7FF;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #BFD7ED;
  border-radius: 6px;
}

/* --------------
   END CSS
   -------------- */
