/* --- 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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #f4f7ed 0%, #eaf2eb 25%, #e0ebf2 100%);
  min-height: 100vh;
  color: #31516A;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.6s;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #197347;
  text-decoration: none;
  transition: color 0.3s;
}
a:focus, a:hover {
  color: #31516A;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #31516A;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #197347;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #31516A;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #31516A;
  font-weight: 600;
}
p, li, dd {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #334355;
}
strong {
  font-weight: 700;
}
.subheadline, .thank-you-headline {
  font-size: 1.25rem;
  color: #197347;
  font-weight: 500;
  margin-bottom: 24px;
}
.thank-you-headline {
  font-weight: 700;
  color: #31516A;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(49,81,106,0.05);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* --- HEADER --- */
header {
  background: linear-gradient(90deg, #31516A 20%, #197347 95%);
  color: #fff;
  box-shadow: 0 2px 24px rgba(49,81,106,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 20px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 32px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-bottom 0.2s, color 0.2s;
}
header nav a:hover, header nav a.active {
  border-bottom: 2px solid #f4f7ed;
  color: #F4F7ED;
}
header a.cta-btn {
  margin-left: 16px;
}

/* --- CTA BUTTONS --- */
.cta-btn, .cta-btn.primary {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  background: linear-gradient(90deg, #197347 0%, #31516a 100%);
  color: #fff;
  box-shadow: 0 2px 16px rgba(49,81,106,0.10);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.03em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.18s;
}
.cta-btn:hover, .cta-btn:focus, .cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #31516A;
  color: #F4F7ED;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 24px rgba(25,115,71,0.18);
}

/* --- FLEXBOX UTILITY CONTAINERS --- */
.card-container, .feature-grid, .types-of-routes-grid, .about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(49,81,106,0.05);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(25,115,71,0.09);
}
.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;
  background: #F4F7ED;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(25,115,71,0.05);
  font-size: 1rem;
  color: #222;
  margin-bottom: 24px;
  min-width: 220px;
  flex: 1 1 250px;
  max-width: 370px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* --- RESPONSIVE SLIDER AND FLEXBOX ROWS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* --- FEATURE GRID (for /) --- */
.feature-grid {
  gap: 32px;
}
.feature {
  background: #eaf2eb;
  padding: 28px 18px 24px 18px;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(49,81,106,0.07);
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .19s, background .23s;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature:hover {
  background: #F4F7ED;
  box-shadow: 0 3px 16px rgba(49,81,106,0.11);
}

/* --- ABOUT STATS --- */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.about-stats div {
  background: #e0ebf2;
  border-radius: 14px;
  padding: 20px 28px;
  font-size: 1.10rem;
  font-weight: 700;
  color: #197347;
  min-width: 130px;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 6px rgba(25,115,71,0.05);
}

/* --- SEARCH BAR (szlaki) --- */
.search-bar {
  margin: 30px 0 10px 0;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(49,81,106,0.06);
  padding: 8px 18px;
  width: 100%;
  max-width: 400px;
  gap: 9px;
}
.search-bar input[type="text"] {
  border: none;
  font-size: 1.1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #31516a;
  background: transparent;
  outline: none;
  flex: 1;
  padding: 6px 0;
}
.search-bar img {
  width: 23px;
  opacity: 0.7;
}

/* --- DIFFICULTY FILTER (szlaki) --- */
.difficulty-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 32px 0;
}
.difficulty-filter button {
  padding: 7px 20px;
  margin-right: 5px;
  background: #eaf2eb;
  color: #197347;
  border: none;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .14s;
}
.difficulty-filter button:hover, .difficulty-filter button:focus {
  background: #197347;
  color: #fff;
  box-shadow: 0 2px 6px rgba(25,115,71,0.14);
}
.difficulty-filter img {
  margin-left: 16px;
  width: 23px;
}

.types-of-routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.route-type {
  background: #f4f7ed;
  border-radius: 14px;
  flex: 1 1 230px;
  min-width: 190px;
  box-shadow: 0 2px 8px rgba(49,81,106,0.075);
  padding: 22px 18px;
  margin-bottom: 20px;
  transition: background .23s, box-shadow .19s;
}
.route-type:hover {
  background: #eaf2eb;
  box-shadow: 0 4px 20px rgba(25,115,71,0.13);
}

/* --- BLOG POSTS LIST --- */
.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.blog-posts-list li {
  background: #F4F7ED;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px rgba(49,81,106,0.06);
  margin-bottom: 12px;
  transition: background .19s, box-shadow .18s;
}
.blog-posts-list li:hover {
  background: #e0ebf2;
  box-shadow: 0 4px 20px rgba(25,115,71,0.11);
}
/* --- FEATURED ARTICLE (blog) --- */
.featured-article {
  background: linear-gradient(90deg, #eaf2eb 0%, #f4f7ed 100%);
  border-left: 6px solid #197347;
  border-radius: 16px;
  padding: 28px 20px;
  margin: 30px 0 22px 0;
  box-shadow: 0 2px 16px rgba(25,115,71,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-article .cta-btn {
  margin-top: 5px;
}
.category-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.category-tags span {
  background: #eaf2eb;
  border-radius: 9px;
  font-size: 0.95rem;
  padding: 5px 14px;
  color: #197347;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- NEWS FEED (aktualnosci) --- */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news-feed h3 {
  margin-bottom: 6px;
  color: #197347;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 16px;
  align-items: center;
}
.contact-details div {
  background: #eaf2eb;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #197347;
}
.static-map {
  border-radius: 12px;
  overflow: hidden;
  margin: 18px 0;
  box-shadow: 0 2px 9px rgba(49,81,106,0.09);
}

/* --- STAR RATING (index) --- */
.star-rating-summary {
  margin-top: 20px;
  font-size: 1.08rem;
  color: #197347;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f4f7ed;
  padding: 10px 18px;
  border-radius: 18px;
  font-weight: 500;
}
.star-rating-summary img {
  width: 27px;
  margin-right: 5px;
  vertical-align: middle;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg, #31516A 30%, #197347 100%);
  color: #f4f7ed;
  padding: 40px 0 0 0;
  font-size: 1rem;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 180px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer nav a {
  color: #f4f7ed;
  font-weight: 500;
  font-size: 1rem;
  transition: color .19s;
  border-bottom: 1px solid transparent;
}
footer nav a:hover, footer nav a:focus {
  color: #ffe8bb;
  border-bottom: 1px solid #ffe8bb;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #f4f7ed;
  min-width: 220px;
}
.footer-contact img {
  width: 19px;
  margin-right: 7px;
  opacity: 0.8;
}
.footer-copy {
  margin-top: 18px;
  color: #b3c7db;
  font-size: 0.95rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 90;
  background: linear-gradient(90deg, #197347 0%, #31516A 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(49,81,106,0.16);
  transition: background .24s, color .18s, transform .19s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #31516A;
  color: #ffe8bb;
  transform: scale(1.09);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(49,81,106,0.97);
  z-index: 1005;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6, .12, .29, .99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #ffe8bb;
  margin: 24px 28px 8px 0;
  transition: color .21s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px 40px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fdebc6;
  font-weight: 600;
  font-size: 1.28rem;
  padding: 10px 0;
  border-radius: 8px;
  transition: color .16s, background .17s;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #197347;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: #fff;
  color: #31516A;
  box-shadow: 0 4px 28px rgba(49,81,106,0.17);
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  max-width: 410px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.03rem;
  align-items: flex-start;
  opacity: 1;
  transition: opacity .32s, transform .36s;
  animation: cookiebannerin .6s cubic-bezier(.75,-0.02,.63,1.1);
}
@keyframes cookiebannerin {
  from {transform: translateX(-50%) translateY(35px); opacity: 0;}
  to {transform: translateX(-50%) translateY(0); opacity: 1;}
}
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 23px;
  background: #197347;
  color: #fff;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  margin-right: 12px;
  cursor: pointer;
  box-shadow: 0 1px 11px rgba(49,81,106,0.07);
  transition: background .2s, color .17s, transform .17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #31516A;
  color: #ffe8bb;
  transform: scale(1.06);
}
.cookie-btn.secondary {
  background: #eaf2eb;
  color: #197347;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #197347;
  color: #fff;
}
/* Cookie Consent Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1100;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 48px rgba(49,81,106,0.19);
  width: 95%;
  max-width: 410px;
  padding: 30px 25px;
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: cookiemodalin .33s ease;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookiemodalin {
  from {opacity: 0;transform: translate(-50%,-35px);}
  to {opacity: 1;transform: translate(-50%,-50%);}
}
.cookie-modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal-category {
  background: #f4f7ed;
  padding: 13px 16px;
  border-radius: 13px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-modal-category.essential {
  background: #eaf2eb;
  color: #197347;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  width: 36px;
  height: 18px;
  appearance: none;
  background: #d3e6de;
  outline: none;
  border-radius: 22px;
  position: relative;
  transition: background .2s;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #197347;
}
.cookie-toggle input[type="checkbox"]:before {
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left .22s;
}
.cookie-toggle input[type="checkbox"]:checked:before {
  left: 19px;
}
.cookie-toggle label {
  margin-left: 7px;
  font-size: 0.98rem;
  color: #31516A;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .card-container,
  .feature-grid, .types-of-routes-grid, .about-stats {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .testimonial-slider {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .section {
    padding: 28px 10px;
  }
  .feature, .route-type, .about-stats div {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn, .cta-btn.primary {
    padding: 11px 22px;
    font-size: 1rem;
  }
  .text-image-section, 
  .content-grid, 
  .types-of-routes-grid, 
  .feature-grid, 
  .about-stats {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.77rem; }
  h2 { font-size: 1.32rem; }
  .section {
    margin-bottom: 36px;
    padding: 18px 4vw;
    border-radius: 10px;
  }
  .testimonial-card { min-width: 0; font-size: 1rem; padding: 17px; }
  .star-rating-summary {
    font-size: .95rem;
    padding: 8px 8px;
  }
  .footer-contact, .footer-copy {
    font-size: 0.96rem;
  }
  .cookie-consent-banner { max-width: 95vw; padding: 17px 9px 14px 11px; font-size: 0.97rem; }
  .cookie-modal { padding: 17px 10px; }
}
@media (max-width: 420px) {
  .category-tags span {
    font-size: 0.9rem;
    padding: 4px 6px;
  }
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    padding: 20px 12px;
    font-size: 1.1rem;
  }
}
/* --- FORM STYLES --- */
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
input[type="text"], input[type="email"], textarea {
  border-radius: 11px;
  border: 1px solid #eaf2eb;
  padding: 12px;
  background: #f4f7ed;
  margin-bottom: 18px;
  color: #31516A;
  width: 100%;
  outline: none;
  transition: border .2s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #197347;
}
button {
  appearance: none;
}

/* --- DL LIST STYLES (porady) --- */
dl, dt, dd {
  color: #31516A;
}
dl {
  margin-bottom: 20px;
}
dt {
  font-weight: 700;
  margin-top: 13px;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
dd {
  margin-bottom: 10px;
  padding-left: 8px;
}

/* --- VISUAL HIERARCHY & SPACING --- */
.section, .card, .feature, .route-type, .about-stats div,
.testimonial-card, .contact-details div, .featured-article, .blog-posts-list li {
  margin-bottom: 20px;
}

/* --- Z-INDEX STOPS OVERLAP FOR FIXED ELEMENTS --- */
header { z-index: 50; }
.mobile-menu { z-index: 1005; }
.cookie-consent-banner { z-index: 1050; }
.cookie-modal { z-index: 1100; }

/* --- PREVENT OVERLAPPING --- */
.card, .card-container > *, .feature, .route-type, .testimonial-card, .about-stats div,
.featured-article, .blog-posts-list li {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* --- VISUAL MICROINTERACTIONS --- */
.card, .feature, .route-type, .blog-posts-list li, .featured-article {
  transition: box-shadow .17s, background .19s, transform .18s;
}
.card:hover, .feature:hover, .route-type:hover, .blog-posts-list li:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px rgba(25,115,71,0.14);
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px solid #197347;
  outline-offset: 2px;
}

/* --- ENSURE PROPER FLEX ALIGNMENT & GAPS --- */
.card-container, .testimonials, .content-grid,
.feature-grid, .about-stats, .text-image-section {
  align-items: center;
  gap: 24px;
}

.content-grid, .about-stats, .testimonial-slider {
  gap: 24px;
}

/* --- OVERWRITING FOR PROPER MOBILE EXPERIENCE --- */
@media (max-width: 768px) {
  .testimonial-slider,
  .content-grid, .about-stats {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}
/* --- HIDE SCROLLBAR IN MOBILE MENU --- */
.mobile-menu {
  overflow-y: auto;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}
