/* =======================
   CSS RESET & BASE STYLES
   ======================= */

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background-color: #FBFAF6;
  color: #3F4E5A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}

a {
  color: #355C7D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #E9C46A; }
a:focus { outline: 2px solid #E9C46A; }

::selection {
  background: #E9C46A;
  color: #2C3D48;
}

/* ================
   CONTAINER SIZING
   ================ */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/* =====================
   SOFT PASTEL PALETTE
   ===================== */
:root {
  --color-primary: #2C3D48;
  --color-secondary: #E9C46A;
  --color-accent: #FFFFFF; 
  --color-bg: #FBFAF6;
  --color-pastel-pink: #F9E4EC;
  --color-pastel-blue: #E3ECF9;
  --color-pastel-lilac: #ECE8F9;
  --color-pastel-mint: #E5F8F2;
  --color-pastel-peach: #FFF1E6;
  --color-pastel-yellow: #FFFBEA;
  --color-muted: #CBCFD6;
  --shadow-soft: 0 6px 32px rgba(44,61,72,0.08), 0 1.5px 4px rgba(44,61,72,0.04);
  --radius-large: 18px;
  --radius-small: 8px;
}

/* =====================
   TYPOGRAPHY HIERARCHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2C3D48;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
h2 {
  font-size: 2rem;
  line-height: 1.26;
  margin-top: 10px;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.34rem;
  margin-bottom: 6px;
}
h4 {
  font-size: 1.15rem;
}
h5, h6 {
  font-size: 1.03rem;
}

.subheadline {
  color: #6B7787;
  font-size: 1.16rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 12px;
}

p, ul, ol {
  margin-bottom: 12px;
  font-size: 1rem;
}
ul, ol {
  padding-left: 26px;
  margin-bottom: 12px;
  color: #2C3D48;
  display: block;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: #292E33;
}

/* ==================
   HEADER & NAV
   ================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #FBFAF6 70%, #F9E4EC 100%);
  box-shadow: 0 1px 4px rgba(44,61,72,0.06);
  position: relative;
  z-index: 40;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.header-bar a img {
  height: 45px;
  width: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-navigation a {
  color: #2C3D48;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 6px;
  border-radius: var(--radius-small);
  position: relative;
  transition: background 0.2s, color 0.15s;
}

.main-navigation a:hover, .main-navigation a:focus {
  background: var(--color-pastel-peach);
  color: #8A654A;
}

.cta-primary {
  background: #E9C46A;
  color: #2C3D48;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 12px 34px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(44,61,72,0.08);
  margin-left: 10px;
  transition: background .18s, color .18s, transform .12s;
  letter-spacing: 0.05em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFD796;
  color: #222E38;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 16px 0 rgba(233,196,106,.17);
  outline: none;
}

.link-special {
  color: #355C7D;
  background: var(--color-pastel-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 18px;
  border-radius: 999px;
  transition: background 0.2s, color 0.18s;
  font-size: 1rem;
  font-weight: 500;
}
.link-special:hover,
.link-special:focus {
  background: #E9C46A;
  color: #2C3D48;
}

/* ===============
   MOBILE MENU
   =============== */

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #E9C46A;
  color: #2C3D48;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 15px;
  z-index: 100;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 10px 0 rgba(44,61,72,0.09);
  cursor: pointer;
}
.mobile-menu-toggle:focus { outline: 2px solid #355C7D; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg, #F9E4EC 10%, #E5F8F2 90%);
  z-index: 1400;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.55,.31,.24,1);
  box-shadow: 2px 0 32px 0 rgba(44,61,72,0.1);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #FFFFFF;
  color: #2C3D48;
  font-size: 2.2rem;
  line-height: 1;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px rgba(44,61,72,0.08);
  cursor: pointer;
  transition: background .15s, color .15s;
  z-index: 1500;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F9E4EC;
  color: #E9C46A;
  outline: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 70px;
  padding: 24px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #2C3D48;
  background: none;
  padding: 12px 0;
  border-radius: var(--radius-small);
  transition: background 0.18s, color 0.16s;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8A654A;
  background: var(--color-pastel-peach);
}

@media (max-width: 1024px) {
  .main-navigation, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============
   HERO & HEADINGS
   =============== */

section:first-child {
  background: linear-gradient(120deg,#F9E4EC 10%, #E5F8F2 90%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 32px rgba(233,196,106,0.06);
}

/* ===============
   FEATURES GRID
   =============== */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
  margin-top: 18px;
}
.features-grid > div {
  flex: 1 1 270px;
  min-width: 220px;
  background: linear-gradient(120deg, #FFFFFF 80%, #F9E4EC 100%);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.12s;
  border: 1px solid #F7F7F7;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 12px 36px rgba(44,61,72,0.13);
  transform: translateY(-6px) scale(1.01);
}
.features-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
}
.features-grid h3 {
  font-size: 1.1rem;
  color: #355C7D;
}
.features-grid p {
  margin-bottom: 4px;
}
.features-grid strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-top: 8px;
  color: #513D38;
  display: block;
}

/* ============
   TEXT SECTIONS
   ============ */

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 8px;
}

/* ============
   CARDS, TESTIMONIALS
   ============ */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.1s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 36px 0 rgba(44,61,72,0.13);
  transform: translateY(-3px) scale(1.01);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 20px 20px;
  margin-bottom: 20px;
  background: var(--color-pastel-blue);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}
.testimonial-card strong {
  color: #2C3D48;
  font-weight: 700;
}
.testimonial-card span {
  color: #E9C46A;
  letter-spacing: 0.08em;
  font-size: 1.1em;
  margin-bottom: 0;
}
.testimonial-card p {
  color: #222E38;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

.case-study-summary {
  background: var(--color-pastel-mint);
  border-radius: var(--radius-large);
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(68,153,128,0.05);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  word-break: break-word;
}
.case-study-summary h3 {
  color: #568690;
  font-size: 1.15em;
  margin-bottom: 8px;
}

/* ===============
   CONTACT BLOCKS
   =============== */
.contact-block {
  background: var(--color-pastel-lilac);
  border-radius: var(--radius-large);
  padding: 28px 20px;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}
.contact-block a {
  color: #355C7D;
  font-weight: 500;
}
.contact-block a:hover, .contact-block a:focus {
  color: #E9C46A;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: linear-gradient(90deg, #FBFAF6 90%, #E3ECF9 100%);
  border-top: 1px solid #EFEDED;
  margin-top: 40px;
  font-size: 1rem;
  color: #6B7787;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0 20px 0;
  row-gap: 24px;
}
.footer-wrapper > * { flex: 1 1 170px; min-width: 0; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #2C3D48;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover { color: #E9C46A; }
.footer-contact {
  font-size: 0.98rem;
  color: #5C6A75;
}
.footer-contact a {
  color: #355C7D;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #E9C46A;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: grayscale(16%);
  transition: filter 0.2s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0%) brightness(1.15);
}

/* =============
   LIST STYLES
   ============= */
ul, ol {
  list-style: disc inside;
  color: #365C7D;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section ul, .content-wrapper ul {
  margin-left: 12px;
  list-style: disc inside;
}
.text-section ol, .content-wrapper ol {
  margin-left: 16px;
  list-style: decimal inside;
  counter-reset: item;
}
ol > li {
  counter-increment: item;
  margin-bottom: 10px;
}

/* ==============
   SPACING UTILS
   ============== */
.next-steps ul {
  margin-top: 8px;
}
.next-steps li {
  color: #2C3D48;
}

/* ==================
   FLEXBOX PATTERNS
   ================== */
.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;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1020px) {
  .container { max-width: 96vw; }
  .section { padding-left: 16px; padding-right: 16px; }
  .features-grid > div { flex: 1 1 250px; }
  .footer-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .section { padding: 26px 8px; margin-bottom: 34px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .header-bar { flex-direction: row; gap: 12px; min-height: 64px; }
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
  }
  .features-grid { gap: 16px; }
  .features-grid > div {
    min-width: 100%;
    margin-bottom: 18px;
    padding: 24px 14px;
  }
  .testimonial-card { padding: 16px 8px; flex-direction: column; gap: 10px; font-size: 0.98rem; }
  .card-container, .content-grid { gap: 14px; }
  .card { padding: 18px 7px; }
  .contact-block { padding: 18px 10px; }
  .main-navigation, .cta-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 540px) {
  body { font-size: 0.94rem; }
  .footer-social img { width: 20px; height: 20px; }
}

/* ============
   BUTTON RESET
   ============ */
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
}
button::-moz-focus-inner { border: none; }

/* ===============
   COOKIE CONSENT
   =============== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #FFFBEA 95%, #F9E4EC 100%);
  box-shadow: 0 -2px 18px rgba(44,61,72,0.09);
  padding: 22px 20px 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  min-height: 64px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3D48;
  transition: transform 0.36s cubic-bezier(.51,.36,.22,1);
}
#cookie-banner.hidden {
  transform: translateY(120%);
}
#cookie-banner .cookie-banner-msg {
  flex: 2 1 260px;
  max-width: 600px;
}
#cookie-banner .cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1 0 140px;
  justify-content: flex-end;
}
#cookie-banner button {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 2px 10px rgba(44,61,72,0.08);
}
#cookie-banner .btn-accept {
  background: #E9C46A;
  color: #2C3D48;
  font-weight: 600;
}
#cookie-banner .btn-accept:hover,
#cookie-banner .btn-accept:focus {
  background: #FFD796;
  color: #222E38;
}
#cookie-banner .btn-reject {
  background: #ECE8F9;
  color: #2C3D48;
  border: 1px solid #CAC6E6;
}
#cookie-banner .btn-reject:hover,
#cookie-banner .btn-reject:focus {
  background: #F9E4EC;
  color: #8A654A;
  border: 1px solid #E9C46A;
}
#cookie-banner .btn-settings {
  background: #E5F8F2;
  color: #2C3D48;
  border: 1px solid #92DBBF;
}
#cookie-banner .btn-settings:hover,
#cookie-banner .btn-settings:focus {
  background: #E9C46A;
  color: #2C3D48;
  border: 1px solid #E9C46A;
}

@media (max-width: 800px) {
  #cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 6px;
    text-align: left;
    min-height: 72px;
  }
  #cookie-banner .cookie-banner-btns { justify-content: center; gap: 10px; }
}

/* =========================
   COOKIE SETTINGS MODAL
   ========================= */
#cookie-settings-modal {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(48,57,66, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  pointer-events: none;
  opacity: 0;
}
#cookie-settings-modal.active {
  pointer-events: all;
  opacity: 1;
}
#cookie-settings-box {
  background: linear-gradient(120deg, #FFFBEA 85%, #F9E4EC 100%);
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 rgba(44,61,72,0.12);
  padding: 38px 34px 28px 34px;
  width: 98vw;
  max-width: 410px;
  min-width: 200px;
  transition: transform 0.28s cubic-bezier(.44,1,.22,1);
  transform: translateY(80px) scale(0.95);
  position: relative;
}
#cookie-settings-modal.active #cookie-settings-box {
  transform: none;
}
#cookie-settings-box h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
#cookie-settings-box .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #F9E4EC;
}
#cookie-settings-box .cookie-category:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
#cookie-settings-box .cookie-toggle {
  min-width: 42px;
  height: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Simple styled switch */
.cookie-toggle input[type="checkbox"] {
  position: absolute;
  width: 42px;
  height: 26px;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.cookie-toggle .slider {
  background: #E3ECF9;
  display: block;
  width: 42px;
  height: 26px;
  border-radius: 14px;
  position: relative;
  transition: background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  background: #E9C46A;
}
.cookie-toggle .slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44,61,72,0.08);
  transition: left 0.15s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider:before {
  left: 20px;
}
#cookie-settings-box .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  justify-content: flex-end;
}
#cookie-settings-box .modal-actions button {
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  background: #E9C46A;
  color: #2C3D48;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(44,61,72,0.07);
  font-weight: 600;
  transition: background 0.19s, color 0.16s;
  margin-left: 0;
}
#cookie-settings-box .modal-actions button:last-child {
  background: #ECE8F9;
  color: #2C3D48;
  border: 1px solid #CBCFD6;
}
#cookie-settings-box .modal-actions button:hover, #cookie-settings-box .modal-actions button:focus {
  background: #FFD796;
  color: #222E38;
}
#cookie-settings-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.45rem;
  background: #E3ECF9;
  color: #355C7D;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookie-settings-close:hover, #cookie-settings-close:focus {
  background: #E9C46A;
  color: #222E38;
}

/* ==============
   FORM FIELDS
   ============== */
input, select, textarea {
  background: #FFFFFF;
  border: 1.5px solid #E3ECF9;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  transition: border-color .14s;
}
input:focus, select:focus, textarea:focus {
  border-color: #E9C46A;
}
label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; font-size: 0.97rem; margin-bottom: 6px; }

/* ===============
   MISC CLASSES
   =============== */
.section-title {
  color: #2C3D48;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: left;
  font-size: 2.1rem;
}

/* Card wrappers (used as helpers) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =============
   UTILITIES
   ============= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }

/* ===============
   PRINT SUPPORT
   =============== */
@media print {
  header, footer, #cookie-banner, #cookie-settings-modal { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; }
}

/* ===== SOFT ANIMATIONS (for micro-interactions, hover) ===== */
.features-grid > div, .card, .testimonial-card, .case-study-summary, .card-content, .contact-block, .footer-wrapper, .section {
  transition: box-shadow 0.22s, transform 0.15s, background 0.22s;
}

*::-webkit-scrollbar {
  width: 10px;
  background: #F9E4EC;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: #E5F8F2;
  border-radius: 10px;
}

/* ====== End CSS ====== */
