/* --- CSS RESET & NORMALIZE (MOBILE FIRST) --- */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F6F9;
  color: #17365D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.24s cubic-bezier(.4,0,.2,1);
}
ul,
ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #E0E7EF;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #17365D;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.1875rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h5, h6 {
  font-size: 1rem;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: #193B65;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* --- CONTAINER + LAYOUT --- */
.container {
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(23,54,93,0.04);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
}
.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 {
  background: #F3F6F9;
  color: #17365D;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 18px;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(23,54,93,0.05);
  min-width: 250px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(110deg, #17365D 0%, #31A3B0 100%);
  color: #fff;
  padding: 70px 0 48px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero p {
  color: #F3F6F9;
}
.hero .cta.primary {
  margin-top: 18px;
}

/* --- FEATURE GRID ---*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(49,163,176,0.07);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.24s cubic-bezier(.4,0,.2,1), transform 0.22s cubic-bezier(.4,0,.2,1);
}
.feature img {
  width: 56px;
  margin-bottom: 14px;
}
.feature h3 {
  text-align: center;
}
.feature:hover {
  box-shadow: 0 4px 24px rgba(49,163,176,0.16), 0 2px 12px rgba(23,54,93,0.08);
  transform: translateY(-2px) scale(1.025);
}

/* --- CARDS GENERIC --- */
.card, .package, .before-after-highlight {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(23,54,93,0.04);
  margin-bottom: 20px;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
}
.package {
  border-left: 6px solid #31A3B0;
}

.package-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
  justify-content: flex-start;
}
.package {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
  border-left: 6px solid #31A3B0;
}
.package:hover {
  box-shadow: 0 4px 28px rgba(49,163,176,0.16), 0 2px 12px rgba(23,54,93,0.09);
  transform: scale(1.037);
}

/* --- TESTIMONIALS --- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.star-ratings {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.testimonial-card span {
  font-size: 0.98em;
  color: #17365D;
}

/* --- TABLES & COMPARISONS ---- */
.comparison-table {
  overflow-x: auto;
  box-shadow: 0 2px 6px rgba(49,163,176,0.06);
  border-radius: 12px;
  background: #fff;
}
.comparison-table table th, .comparison-table table td {
  border-bottom: 1px solid #E0E7EF;
  color: #17365D;
}
.comparison-table table th {
  background: #F3F6F9;
  font-size: 1rem;
}
.comparison-table table tbody tr:last-child td {
  border-bottom: none;
}

/* --- CALL TO ACTION SECTIONS & BUTTONS --- */
.cta-section {
  background: linear-gradient(110deg, #31A3B0 0%, #17365D 100%);
  color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 36px 18px;
  text-align: center;
}
.cta-section .cta.primary {
  margin-top: 20px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: 26px;
  background: #17365D;
  color: #fff;
  transition: background 0.23s cubic-bezier(.4,0,.2,1), color 0.19s cubic-bezier(.4,0,.2,1), box-shadow 0.21s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 6px rgba(49,163,176,0.07);
  border: none;
  cursor: pointer;
  margin-top: 8px;
}
.cta.primary {
  background: linear-gradient(110deg, #31A3B0 0%, #17365D 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(23,54,93,0.14);
}
.cta:hover, .cta.primary:hover {
  background: #0a2339;
  color: #fff;
  box-shadow: 0 6px 20px rgba(23,54,93,0.12);
  transform: translateY(-2px) scale(1.033);
}
.cta:active {
  background: #193B65;
  color: #fff;
}

/* --- SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
.accent-bg {
  background: #F3F6F9;
  border-radius: 10px;
  padding: 42px 20px 38px 20px;
  margin-bottom: 60px;
}

/* --- TEXT CONTENT / SNIPPETS --- */
.text-section, .team-snippet, .case-studies-preview, .knowledge-base-snippet, .faq-preview, .contact-teaser, .before-after-highlight, .featured-posts {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(23,54,93,0.02);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.faq-preview ul {
  list-style: disc;
}

/* --- FOOTER --- */
footer {
  background: #17365D;
  color: #fff;
  padding: 50px 0 10px 0;
  margin-top: 64px;
  font-size: 0.98rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #1d406a;
}
.footer-row > * {
  flex: 1 1 155px;
  min-width: 140px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #ACCEE6;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
.footer-menu a:hover {
  color: #31A3B0;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-short img{
  width: 30px;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.social-media-links img {
  width: 30px;
  transition: transform .17s cubic-bezier(.4,0,.2,1);
}
.social-media-links a:hover img {
  transform: scale(1.15) rotate(-4deg);
}
.footer-legal {
  margin-top: 24px;
  color: #ACCEE6;
  font-size: 0.92rem;
  text-align: center;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #31A3B0;
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s cubic-bezier(.4,0,.2,1), color 0.19s;
  box-shadow: 0 2px 6px rgba(49,163,176,0.12);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #17365D;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #17365D;
  color: #fff;
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 44px 26px 0 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 10px;
  border-radius: 7px;
  transition: background 0.18s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-close:hover {
  background: #284e79;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding-top: 14px;
}
.mobile-nav a {
  color: #F3F6F9;
  font-size: 1.2rem;
  padding: 13px 9px;
  border-radius: 7px;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover {
  background: #273b56;
  color: #31A3B0;
}

/* Hide the regular nav and show mobile button on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex;
    gap: 18px;
    align-items: center;
  }
}

/* --- MAIN NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #E0E7EF;
  box-shadow: 0 2px 10px rgba(49,163,176,0.03);
  padding: 1px 0 1px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 9px;
  padding-bottom: 9px;
}
header nav a {
  color: #17365D;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  transition: background 0.16s cubic-bezier(.4,0,.2,1), color 0.16s;
}
header nav a:hover, header nav a.active {
  color: #31A3B0;
  background: #F3F6F9;
}
header .cta.primary {
  margin-left: 26px;
  padding: 10px 26px;
  font-size: 1.03rem;
  box-shadow: 0 2px 8px rgba(23,54,93,0.06);
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .footer-row {
    flex-direction: column;
    gap: 24px;
  }
}

/* --- CLIENT LOGOS --- */
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.client-logos img {
  height: 38px;
  opacity: 0.85;
  filter: grayscale(15%) brightness(0.96);
  transition: filter 0.16s, transform 0.15s;
}
.client-logos img:hover {
  filter: none;
  transform: scale(1.06) rotate(-2deg);
}

/* --- BLOG POST GRID --- */
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.post-grid article {
  flex: 1 1 270px;
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(49,163,176,0.06);
  padding: 22px 18px 18px 18px;
  transition: box-shadow 0.17s cubic-bezier(.4,0,.2,1), transform 0.16s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.post-grid article:hover {
  box-shadow: 0 5px 21px rgba(23,54,93,0.12);
  transform: translateY(-3px) scale(1.028);
}
.post-grid h3 {
  margin-bottom: 8px;
  font-size: 1.13rem;
}

/* --- FEATURED POSTS --- */
.featured-posts ul {
  list-style: disc inside;
  margin-left: 1px;
  padding-left: 0;
}
.featured-posts li a {
  color: #31A3B0;
  text-decoration: underline;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
.featured-posts li a:hover {
  color: #17365D;
  text-decoration: underline;
}

/* --- FAQ AND KNOWLEDGE SNIPPETS --- */
.knowledge-base-snippet ul, .faq-preview ul {
  margin-left: 18px;
}

/****** RESPONSIVE FLEXBOX LAYOUTS ******/
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .testimonial-slider, .testimonial-list, .package-overview, .client-logos, .post-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-row {
    flex-direction: column;
    gap: 24px;
  }
  .hero, .accent-bg, .cta-section, section, .text-section, .card, .feature {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .cta-section, .accent-bg {
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .mobile-nav a {
    font-size: 1.13rem;
    padding: 15px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/****** TABLE RESPONSIVE ******/
@media (max-width: 620px) {
  .comparison-table, .comparison-table table {
    font-size: 0.97rem;
  }
  th, td {
    padding: 7px 8px;
  }
}

/* --- FORM ELEMENTS / NEWSLETTER --- */
input[type='email'], input[type='text'], textarea {
  width: 100%;
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid #B1C6DF;
  background: #fff;
  color: #17365D;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.14s cubic-bezier(.4,0,.2,1);
}
input[type='email']:focus, input[type='text']:focus, textarea:focus {
  border-color: #31A3B0;
  outline: none;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #17365D;
  color: #fff;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 14px 18px 14px;
  box-shadow: 0 -2px 12px rgba(23,54,93,0.16);
  gap: 18px;
  transition: transform 0.38s cubic-bezier(.4,0,.2,1), opacity 0.22s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  min-width: 120px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 21px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, color 0.2s;
  margin-top: 2px;
}
.accept-cookie {
  background: #31A3B0;
  color: #fff;
}
.accept-cookie:hover {
  background: #1b5767;
}
.reject-cookie {
  background: #fff;
  color: #17365D;
}
.reject-cookie:hover {
  background: #F3F6F9;
  color: #31A3B0;
}
.cookie-settings {
  background: none;
  border: 2px solid #31A3B0;
  color: #31A3B0;
}
.cookie-settings:hover {
  background: #31A3B0;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2200;
  background: rgba(23,54,93,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #17365D;
  padding: 34px 25px 25px 25px;
  border-radius: 14px;
  box-shadow: 0 2px 22px rgba(49,163,176,0.15);
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #17365D;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #31A3B0;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 7px;
  border-radius: 8px;
  transition: background 0.16s;
}
.cookie-modal-content .close-modal:hover {
  background: #f1f5fa;
}
.cookie-modal-categories {
  margin: 18px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-toggle input[type='checkbox'] {
  accent-color: #31A3B0;
  width: 20px;
  height: 20px;
}
.essential-cookie-label {
  color: #17365D;
  font-weight: 600;
}
.essential-cookie-label:after {
  content: ' (zawsze włączone)';
  color: #31A3B0;
  font-weight: 400;
  font-size: 0.94em;
}
/* Cookie modal actions */
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal-actions button {
  min-width: 110px;
  padding: 8px 17px;
  font-size: 1rem;
  border-radius: 19px;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    min-width: 0;
    width: 95vw;
    padding: 21px 7px 14px 11px;
  }
}

/****** MISC ******/
/* List bullets spacing */
ul li, ol li {
  margin-bottom: 7px;
  padding-left: 2px;
}

/* Anchor underline on hover in text block */
.text-section a, .team-snippet a, .case-studies-preview a, .faq-preview a, .knowledge-base-snippet a, .contact-teaser a {
  color: #31A3B0;
  text-decoration: none;
  transition: color 0.17s cubic-bezier(.4,0,.2,1);
}
.text-section a:hover, .team-snippet a:hover, .case-studies-preview a:hover, .faq-preview a:hover, .knowledge-base-snippet a:hover, .contact-teaser a:hover {
  text-decoration: underline;
  color: #17365D;
}

/* --- Visual Hierarchy: whitespace & headings --- */
h2, .feature-grid, .team-profiles, .service-highlights, .service-list,
.case-studies-preview, .client-logos, .testimonial-slider {
  margin-bottom: 24px;
}

/* --- Card spacing universal --- */
.card, .feature, .package, .testimonial-card, .before-after-highlight {
  margin-bottom: 20px;
}

/****** HIDE/SHOW ON MOBILE/DESKTOP ******/
.hide-desktop { display: none; }
.hide-mobile { display: block; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: inline-block !important; }
}

/* --- Z-INDEXS --- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1002;
}

/****** SMOOTH TRANSITIONS FOR INTERACTIONS ******/
* {
  box-sizing: border-box;
  transition: box-shadow .14s cubic-bezier(.4,0,.2,1), background .14s cubic-bezier(.4,0,.2,1);
}

/****** FORMS (KONTAKT) ******/
form label {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  color: #17365D;
  font-size: 1rem;
}
form input, form textarea {
  margin-bottom: 18px;
}
form .cta {
  margin-top: 10px;
}

/****** Address & Contact Details ******/
.office-info ul {
  list-style: none;
  padding-left: 0;
}
.office-info li {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.office-info img {
  width: 22px;
}
.address-map p {
  margin: 0;
  font-size: 1.05rem;
  color: #17365D;
}

/****** Subtle Animations & Shadows ******/
.card, .feature, .package, .testimonial-card, .before-after-highlight, .text-section {
  transition: box-shadow 0.19s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1);
}

/****** Scrollbar Styling ******/
::-webkit-scrollbar {
  width: 10px;
  background: #F3F6F9;
}
::-webkit-scrollbar-thumb {
  background: #CEDAE2;
  border-radius: 13px;
}

/****** END: COMPREHENSIVE GRADIENT_MODERN STYLING ******/
