/* RESET & BASE STYLES ---------------------------------------------------- */
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,
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #234E52;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
  font-feature-settings: "ss01" on, "ss02" on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
a { color: #234E52; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FFD600; outline: none; }

/* Brand Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  letter-spacing: 0.01em;
  color: #234E52;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.subheadline {
  font-size: 1.25rem;
  color: #234E52;
  font-weight: 500;
  margin-bottom: 24px;
}
p, ul, ol, li {
  font-size: 1rem; color: #234E52;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li { margin-bottom: 8px; }
strong, b { font-weight: 700; }

/* Container and Layout --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 36px rgba(34,78,82,0.04);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1.5px solid #E4F2F1;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(34,78,82,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 260px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 40px rgba(34,78,82,0.14);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E4F2F1;
  border: 2px solid #234E52;
  border-radius: 20px 6px 20px 6px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0 4px 26px rgba(34,78,82,0.10);
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #1a2c2f;
  font-size: 1.1rem;
  line-height: 1.6;
}
.testimonial-card .name {
  font-size: 0.95rem;
  color: #234E52;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px rgba(34,78,82,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  background: #fff;
  padding: 24px 18px;
  border-radius: 20px 4px 20px 4px;
  border: 1.5px solid #E4F2F1;
  box-shadow: 0 2px 16px rgba(34,78,82,0.05);
  margin-bottom: 20px;
  min-width: 200px;
  transition: box-shadow 0.19s, border 0.18s;
}
.feature-item h3 {font-size: 1.12rem; font-weight: 600;}
.feature-item img { height: 38px; width: 38px; }
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(34,78,82,0.13);
  border: 1.5px solid #234E52;
}

/****************** FLEX SECTIONS & UTILITY ********************/
.hero {
  min-height: 40vh;
  background: #E4F2F1;
  border-radius: 0 0 64px 64px;
  padding: 56px 0 44px 0;
  display: flex;
  align-items: center;
}
.hero .container { width: 100%; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  padding-top: 24px;
}
.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.feature-grid, .service-cards, .steps, .testimonial-slider, .testimonial-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service-cards, .service-list {
  margin-top: 22px;
  margin-bottom: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid #E4F2F1;
  border-radius: 16px 3px 16px 6px;
  box-shadow: 0 4px 18px rgba(34,78,82,0.05);
  padding: 30px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, border 0.15s;
}
.service-card h2, .service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card .price {
  color: #234E52;
  background: #E4F2F1;
  padding: 6px 18px;
  border-radius: 999px;
  align-self: flex-end;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 12px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 26px rgba(34,78,82,0.14);
  border: 1.5px solid #234E52;
}

.steps, .stepper-timeline {
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid #E4F2F1;
  border-radius: 14px 2px 18px 5px;
  box-shadow: 0 2px 18px rgba(34,78,82,0.06);
  padding: 22px 20px;
  flex: 1 1 210px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  transition: box-shadow 0.17s;
}
.step img {height: 32px;width: 32px;}
.step:hover, .step:focus-within {
  box-shadow: 0 8px 32px rgba(34,78,82,0.13);
}

/********** TABLES & LISTS ***********/
.service-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(34,78,82,0.04);
}
.service-price-table th, .service-price-table td {
  padding: 18px 14px;
  border-bottom: 1px solid #E4F2F1;
  text-align: left;
}
.service-price-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  background: #E4F2F1;
  color: #234E52;
}
.service-price-table tr:last-child > td {
  border-bottom: none;
}

/*********** MISC TEXT & UTILS ******/
.text-section {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 16px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-description, .embedded-map, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.embedded-map { align-items: flex-start;}
.embedded-map img { margin-bottom: 10px; }
.next-step-suggestion a { color: #234E52; text-decoration: underline; }

/*********** FAQ ***********/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #E4F2F1;
  border: 1px solid #234E52;
  border-radius: 8px 24px 8px 24px;
  padding: 18px 18px 12px 18px;
}

/******* NAVIGATION & HEADER ******/
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #E4F2F1;
  box-shadow: 0 2px 12px rgba(34,78,82,0.05);
  z-index: 30;
  position: relative;
}
header .container {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.main-nav a {
  font-size: 1.05rem;
  padding: 10px 14px;
  border-radius: 8px 2px 8px 2px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E4F2F1;
  color: #234E52;
}
.main-nav .btn-primary {
  background: #234E52;
  color: #FFD600;
  border: none;
  font-weight: 700;
  margin-left: 10px;
  padding: 10px 24px;
  border-radius: 16px 3px 16px 3px;
  box-shadow: 0 1px 6px rgba(34,78,82,0.09);
  letter-spacing: 0.03em;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #FFD600;
  color: #234E52;
  box-shadow: 0 4px 22px rgba(34,78,82,0.18);
}

/***** FOOTER ******/
footer {
  background: #E4F2F1;
  padding: 44px 0 20px 0;
  border-radius: 64px 64px 0 0;
}
footer .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.footer-nav a {
  color: #234E52;
  transition: color 0.13s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD600;
  text-decoration: underline;
}
.contact-info-short {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #234E52;
  margin-bottom: 8px;
}
.contact-info-short span { display: flex; align-items: center; gap: 6px; }
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px 2px 10px 2px;
  width: 38px;
  height: 38px;
  box-shadow: 0 1px 8px rgba(34,78,82,0.07);
  transition: background 0.14s, box-shadow 0.15s;
}
.social-links a:hover, .social-links a:focus {
  background: #FFD600;
  box-shadow: 0 2px 14px rgba(34,78,82,0.18);
}
.legal {
  font-size: 0.93rem;
  color: #234E52;
  opacity: 0.9;
}

/***** BUTTONS & INTERACTION ******/
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 18px 4px 18px 4px;
  padding: 12px 32px;
  font-size: 1.1rem;
  display: inline-block;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  margin-top: 4px;
  text-align: center;
}
.btn-primary {
  background: #234E52;
  color: #FFD600;
  box-shadow: 0 2px 10px rgba(34,78,82,0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD600;
  color: #234E52;
  box-shadow: 0 4px 18px rgba(34,78,82,0.18);
}
.btn-secondary {
  background: #FFD600;
  color: #234E52;
  box-shadow: 0 2px 8px rgba(34,78,82,0.08);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #234E52;
  color: #FFD600;
  box-shadow: 0 6px 18px rgba(34,78,82,0.14);
}

/********** OPINIE & REVIEW *********** */
.opinie { background: #fff; }
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.review-summary, .star-rating-summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #234E52;
  background: #E4F2F1;
  padding: 11px 22px;
  border-radius: 12px 4px 12px 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.star-rating-widget { display: flex; gap: 3px; margin-top: 6px; }

/*********** FAQ & OTHERS ***********/
.stepper-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.stepper-timeline li {
  background: #fff;
  border: 1px solid #E4F2F1;
  border-radius: 12px 6px 16px 2px;
  box-shadow: 0 2px 10px rgba(34,78,82,0.07);
  padding: 18px 20px 14px 20px;
  margin-bottom: 12px;
  flex: 1 1 220px;
  min-width: 190px;
}

/******* Cookie Consent Banner & Modal *******/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #234E52;
  color: #FFD600;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px;
  box-shadow: 0 -4px 20px rgba(34,78,82,0.17);
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookiefadein 0.26s;
}
@keyframes cookiefadein { from {opacity:0;bottom:-50px;} to {opacity:1;bottom:0;}}
.cookie-banner__text { max-width: 440px; }
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px 6px 12px 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,78,82,0.10);
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #FFD600;
  color: #234E52;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E4F2F1;
  color: #234E52;
}
.cookie-btn.reject {
  background: #fff;
  color: #234E52;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD600;
  color: #234E52;
}
.cookie-btn.settings {
  background: transparent;
  text-decoration: underline;
  color: #FFD600;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #fff;
  background: #234E52;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(34, 78, 82, 0.58);
  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: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 4px 18px 4px;
  max-width: 400px;
  width: 94%;
  padding: 32px 20px 20px 20px;
  box-shadow: 0 12px 48px rgba(34,78,82,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popfade 0.23s;
}
@keyframes popfade { from {opacity:0;transform:scale(0.93);} to {opacity:1;transform:scale(1);} }
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #234E52;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #234E52;
  width: 20px; height: 20px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 18px;
  background: transparent;
  color: #234E52;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus { color: #FFD600; }

/***** MOBILE NAVIGATION ******/
.mobile-menu-toggle {
  background: #234E52;
  color: #FFD600;
  border: none;
  border-radius: 10px 4px 10px 4px;
  font-size: 2rem;
  padding: 7px 18px 7px 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.14s;
  z-index: 1030;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD600;
  color: #234E52;
}

@media (max-width: 1024px) {
  .main-nav { gap: 12px; }
  .container { padding-left: 12px; padding-right: 12px; }
  .service-card, .card, .feature-item, .testimonial-card, .step, .stepper-timeline li { min-width: 170px; }
}
@media (max-width: 860px) {
  .main-nav { gap: 6px; }
  .card, .feature-item, .step { min-width: 125px; }
}
@media (max-width: 830px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #234E52;
  z-index: 2000;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(0.58,0.1,0.45,1.4);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 6px 0 48px rgba(34,78,82,0.35);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD600;
  font-size: 2rem;
  align-self: flex-end;
  margin: 26px 26px 0 0;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 36px 28px 0 36px;
}
.mobile-nav a {
  color: #FFD600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 16px 10px 12px 4px;
  border-bottom: 1.5px solid rgba(255,255,255,0.09);
  transition: background 0.16s, color 0.16s, border 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD600;
  color: #234E52;
  border-bottom: 1.5px solid #234E52;
}

/******* THANK YOU PAGE ******/
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E4F2F1;
  border-radius: 0 0 64px 64px;
  padding: 60px 0;
}
.thank-you-message {
  text-align: center;
  font-size: 1.2rem;
}

/************ RESPONSIVE DESIGN **************/
@media (max-width: 1115px) {
  .content-grid, .feature-grid, .service-cards, .steps, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container { flex-direction: column; }
}
@media (max-width: 900px) {
  .hero { padding: 30px 0 32px 0; }
  .section, .hero { padding-left: 10px; padding-right: 10px; }
  footer { padding: 32px 0 16px 0; }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .section { padding: 24px 5px; }
  .hero { padding: 16px 0 16px 0; border-radius: 0 0 38px 38px; }
  .footer-nav { gap: 9px; }
  .content-wrapper,
  .text-section,
  .contact-details,
  .embedded-map { gap: 10px; }
  .content-grid, .feature-grid, .service-cards, .steps, .testimonial-slider, .testimonial-list, .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card-container, .card, .feature-item, .testimonial-card, .service-card, .faq-item, .step, .stepper-timeline li {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .section { margin-bottom: 30px; padding: 13px 2px; }
  .hero { padding: 3px 0 13px 0; }
  .footer-nav { flex-direction: column; align-items: center; }
  .contact-info-short, .social-links { flex-direction: column; align-items: center; gap: 7px; }
  .thank-you-section { padding: 10px 0; border-radius: 0 0 14px 14px; }
  .content-wrapper { gap: 7px; }
  .testimonial-card { padding: 11px; border-width: 1.2px; }
  .cookie-banner { flex-direction: column; gap: 14px; padding: 12px 8px; }
}

/************* MICRO-ANIMATIONS & DETAILS ***********/
.card, .feature-item, .testimonial-card, .step, .service-card, .faq-item, .stepper-timeline li {
  will-change: transform, box-shadow;
}

/*********** VISUAL ELEMENTS: BUTTONS, SHAPES, SHADOWS ***********/
.btn-primary, .btn-secondary {
  box-shadow: 0 2px 10px rgba(34,78,82,0.08);
  border-width: 0;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}

/********* VISUAL HIERARCHY: SPACING *********/
.section, .feature-grid, .card-container, .content-grid, .service-cards, .steps, .testimonial-slider, .testimonial-list, .service-list {
  margin-bottom: 32px;
}

/********* ACCENT COLOR ELEMENTS *********/
hr {
  border: none;
  border-top: 2px solid #FFD600;
  margin: 28px 0;
}
::selection {
  background: #FFD600;
  color: #234E52;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #234E52;
  border-radius: 5px;
  background: #E4F2F1;
}

/********* CUSTOM SCROLLBAR *********/
::-webkit-scrollbar {
  width: 10px;
  background: #E4F2F1;
}
::-webkit-scrollbar-thumb {
  background: #234E52;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD600;
}

/********* -----------------------------------------------------------------
 *      END OF CSS FILE (Porządek Wnętrza - "geometric_structured")        *
 ------------------------------------------------------------------------ */