/* ===== 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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1FAEE;
  color: #1D3557;
}
button,input,select,textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  list-style-position: inside;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1FAEE;
  color: #1D3557;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,.cta,
nav a,.cta-block h2,th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

/* ===== LAYOUT & CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

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

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(29,53,87,0.06), 0 1.5px 8px rgba(168,218,220,0.035);
  position: relative;
  z-index: 150;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 32px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #1D3557;
  padding: 8px 0;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-bottom 0.18s;
}
header nav a:hover,header nav a:focus {
  color: #A8DADC;
  border-bottom: 3px solid #A8DADC;
}
header .cta.primary {
  margin-left: 24px;
}

/* ====== HERO ====== */
.hero {
  background: #1D3557;
  color: #F1FAEE;
  border-radius: 0 0 48px 48px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero h1, .hero p {
  color: #F1FAEE;
  text-shadow: 0 2px 8px rgba(29,53,87,0.14);
}
.hero a.cta.primary {
  margin-top: 32px;
  background: #A8DADC;
  color: #1D3557;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}

/* ====== CTA BUTTONS ======*/
.cta {
  display: inline-block;
  border-radius: 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-align: center;
  padding: 14px 38px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, border 0.18s;
  outline: none;
  border: none;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(29,53,87,0.08);
}
.cta.primary {
  background: #A8DADC;
  color: #1D3557;
  border: 2.5px solid #A8DADC;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1D3557;
  color: #F1FAEE;
  border-color: #1D3557;
  box-shadow: 0 6px 28px rgba(29,53,87,0.14);
}
.cta.secondary {
  background: #1D3557;
  color: #F1FAEE;
  border: 2.5px solid #1D3557;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A8DADC;
  color: #1D3557;
  border-color: #A8DADC;
  box-shadow: 0 6px 28px rgba(29,53,87,0.14);
}

/* ===== FEATURES / SERVICES GRID ===== */
.features-grid, .services-grid, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.features-grid > .feature, .services-grid > .service-card, .testimonials-grid > .testimonial-card {
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  color: #1D3557;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(168,218,220,0.14);
  padding: 32px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.14s, transform 0.14s;
  position: relative;
  z-index: 1;
}
.features-grid .feature img, .services-grid .service-card img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.features-grid .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.features-grid .feature p {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.features-grid > div:hover, .services-grid > div:hover {
  box-shadow: 0 12px 36px rgba(29,53,87,0.19);
  transform: translateY(-4px) scale(1.018);
}


.services-grid > .service-card h3 {
  margin-bottom: 6px;
}
.services-grid > .service-card .price {
  display: inline-block;
  font-weight: 900;
  background: #A8DADC;
  color: #1D3557;
  border-radius: 12px;
  padding: 4px 14px;
  font-size: 1.01rem;
  margin-top: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #A8DADC;
  color: #1D3557;
  border-radius: 40px;
}
.testimonials .content-wrapper > h2 {
  color: #1D3557;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  color: #1D3557;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(29,53,87,0.10);
  min-width: 260px;
  flex: 1 1 260px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 600;
}
.testimonial-card span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #457B9D;
  font-weight: 800;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(29,53,87,0.13);
  transform: translateY(-2px) scale(1.012);
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: #1D3557;
  color: #F1FAEE;
  border-radius: 38px;
  text-align: center;
  margin-bottom: 60px;
}
.cta-block h2 {
  color: #F1FAEE;
  font-size: 2rem;
}
.cta-block .cta.primary {
  margin-top: 24px;
  font-size: 1.15rem;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(29,53,87,0.10);
  margin-bottom: 32px;
  overflow: hidden;
  margin-top: 10px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
}
.pricing-table th {
  background: #A8DADC;
  color: #1D3557;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.pricing-table tr {
  border-bottom: 1.5px solid #e2e8f0;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1D3557;
}

/* ===== FAQ & RESOURCES ===== */
.faq-list, .resource-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 1rem;
}
.resource-list li a {
  color: #1D3557;
  font-weight: 700;
  position: relative;
}
.resource-list li a::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #A8DADC;
  border-radius: 2px;
  margin-top: 6px;
  transition: width 0.16s;
}
.resource-list li a:hover::after {
  width: 60px;
}

/* ===== BRAND VALUES & LISTS ===== */
.brand-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.brand-values li {
  font-size: 1.09rem;
  font-weight: 600;
  color: #1D3557;
}

ul, ol {
  margin-left: 18px;
  margin-bottom: 14px;
}

/* ====== SERVICE/FEATURE ITEMS FOR .dienstleistungen.html ===== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(29,53,87,0.08);
  padding: 24px 20px;
  flex: 1 1 275px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.12s;
}
.service-item h2 {
  font-size: 1.27rem;
}
.service-item .price {
  display: inline-block;
  background: #A8DADC;
  color: #1D3557;
  border-radius: 12px;
  padding: 5px 14px;
  font-size: 1.01rem;
  font-weight: bold;
  margin-top: 6px;
}
.service-item:hover {
  box-shadow: 0 8px 28px rgba(29,53,87,0.13);
  transform: scale(1.016);
}

/* ====== GENERAL TEXT BLOCKS ====== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.neutral-placeholder {
  background: #ECEFF1;
  color: #8ca0b3;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  margin: 16px 0;
}

/* ====== CONTACT DETAILS ====== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details a {
  color: #1D3557;
  text-decoration: underline;
  font-weight: 700;
}

/* ====== FOOTER ====== */
footer {
  background: #1D3557;
  color: #F1FAEE;
  padding: 34px 0 28px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #A8DADC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.95;
  transition: color 0.14s;
}
footer nav a:hover {
  color: #F1FAEE;
}
.footer-contact {
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.65;
}
.footer-contact a {
  color: #A8DADC;
  font-weight: 700;
  text-decoration: underline;
}

/* ====== MOBILE MENU ====== */
.mobile-menu-toggle {
  display: none;
  height: 48px;
  width: 48px;
  background: #A8DADC;
  color: #1D3557;
  border: none;
  border-radius: 16px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 14px;
  position: relative;
  z-index: 210;
  box-shadow: 0 2px 6px rgba(29,53,87,.10);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #1D3557;
  color: #F1FAEE;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #1D3557;
  color: #F1FAEE;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.65,.05,.36,1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 35px 22px 22px 22px;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  box-shadow: 0 0 48px rgba(29,53,87,.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: #A8DADC;
  color: #1D3557;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  padding: 7px 17px 7px 17px;
  cursor: pointer;
  z-index: 999;
  transition: background 0.14s;
}
.mobile-menu-close:hover {
  background:#F1FAEE;
  color: #457B9D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 54px;
  width: 100%;
}
.mobile-nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: left;
  padding: 12px 0;
  border-radius: 9px;
  transition: background 0.18s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #A8DADC;
  color: #1D3557;
}

@media (max-width: 1050px) {
  header .container {
    gap: 12px;
  }
  nav {
    gap: 14px;
  }
  .features-grid, .services-grid, .testimonials-grid, .services-list {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .features-grid, .services-grid, .testimonials-grid, .services-list {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .services-list > .service-item, .features-grid > .feature, .testimonials-grid > .testimonial-card, .services-grid > .service-card {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Layout */
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .container {
    padding: 0 10px;
  }
  section, .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
  /* Hide nav, show burger */
  header nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .services-list {
    flex-direction: column;
    gap: 13px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cta-block {
    border-radius: 16px;
  }
  .testimonials {
    border-radius: 18px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}

/* ====== LIST/TEXT-IMAGE/UTILITY FLEX CONTAINERS ====== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap:18px;
  }
}

/* Feature Items inside flex containers */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials special flex appearance */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Enforce Margin Between Cards */
.features-grid > *,.services-grid > *, .testimonials-grid > *, .services-list > * {
  margin-bottom: 20px;
}

/* Prevent any element overlap */
section, .features-grid>*, .services-grid>*, .testimonials-grid>*, .services-list>*, .service-item, .feature, .card, .testimonial-card {
  margin-right: 0;
  margin-left: 0;
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #1D3557;
  color: #F1FAEE;
  box-shadow: 0 -2px 16px rgba(29,53,87,0.11);
  padding: 24px 18px 20px 18px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.19s, opacity 0.23s;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.cookie-banner button {
  padding: 9px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner .cookie-accept {
  background: #A8DADC;
  color: #1D3557;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #F1FAEE;
  color: #1D3557;
}
.cookie-banner .cookie-reject {
  background: transparent;
  color: #A8DADC;
  border: 2px solid #A8DADC;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #A8DADC;
  color: #1D3557;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #F1FAEE;
  border: 2px solid #F1FAEE;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #F1FAEE;
  color: #1D3557;
}

/* ===== Cookie Preferences Modal ===== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(29,53,87,0.48);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.19s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  color: #1D3557;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(29,53,87,0.20);
  padding: 36px 24px;
  min-width: 320px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.cookie-category-label {
  font-size: 1rem;
  font-weight: 700;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #A8DADC;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  border: none;
}
.cookie-toggle[aria-checked='true'] {
  background: #1D3557;
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.13s;
}
.cookie-toggle[aria-checked='true']::before {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 22px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.03rem;
  border: none;
  background: #A8DADC;
  color: #1D3557;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-modal-actions button:hover {
  background: #1D3557;
  color: #F1FAEE;
}
@media (max-width: 480px) {
  .cookie-modal-dialog {
    min-width: 0;
    padding: 18px 7px;
    font-size: 0.97rem;
  }
}

/* ===== Misc Utilities ===== */
::-webkit-input-placeholder { color: #8ca0b3; opacity: 1; }
::-moz-placeholder { color: #8ca0b3; opacity: 1; }
:-ms-input-placeholder { color: #8ca0b3; opacity: 1; }
::placeholder { color: #8ca0b3; opacity: 1; }

[tabindex]:focus,
button:focus {
  outline: 3px solid #A8DADC;
  outline-offset: 2px;
}

/* Remove number input arrows */
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* ===== Animations ===== */
@keyframes slideInMenu {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes slideOutMenu {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-22px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open {
  animation: slideInMenu 0.38s cubic-bezier(.65,.05,.36,1);
}
.mobile-menu:not(.open) {
  animation: slideOutMenu 0.19s cubic-bezier(.65,.05,.36,1);
}

.cookie-banner {
  animation: fadeInUp 0.44s cubic-bezier(.38,1.3,.7,1) both;
}
.cookie-modal.open {
  animation: fadeInDown 0.32s cubic-bezier(.38,1.3,.7,1) both;
}

/* ==== Custom Scrollbar for Modern Look (Optional) ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #F1FAEE;
}
::-webkit-scrollbar-thumb {
  background: #A8DADC;
  border-radius: 8px;
}
/*==== END OF CSS ====*/
