/* =========================================================
  Zenith Tractor Leadership – Playful Dynamic Style
  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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F8F8;
  color: #234E70;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}
a {
  color: #234E70;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #3EC6E0;
  outline: none;
}

/* ===============================
  FUN FONTS & TYPOGRAPHY
=============================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1a2247;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
  background: linear-gradient(90deg, #3EC6E0 20%, #234E70 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #234E70;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #299bba;
}
h4 {
  font-size: 1.1rem;
  color: #3EC6E0;
  margin-bottom: 10px;
}
p, .hero-subheadline, .price, .duration {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #234E70;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
p.hero-subheadline {
  font-size: 1.15rem;
  color: #299bba;
  background: #def5fa;
  padding: 10px 18px;
  border-radius: 18px;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
}
strong {
  color: #234E70;
  font-weight: bold;
}
small {
  font-size: 0.95rem;
  color: #709cb3;
}

/* ===============================
  MAIN LAYOUT CONTAINERS
=============================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(62,198,224,0.08), 0 1.5px 3px #f6f8f8;
  transition: box-shadow 0.3s;
  position: relative;
  z-index: 2;
}
.section:hover {
  box-shadow: 0 8px 32px 0 rgba(62,198,224,0.16), 0 2.5px 6px #daf0f6;
}

/* ===============================
  HEADER & NAVIGATION
=============================== */
header {
  background: #234E70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
}
header > a img {
  height: 42px;
  margin-right: 24px;
  transition: transform 0.2s;
}
header > a img:hover {
  transform: rotate(-8deg) scale(1.13);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 18px;
  padding: 6px 20px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #3EC6E0;
  color: #234E70;
}

.cta-btn {
  background: #3EC6E0;
  color: #234E70;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  border: 0;
  padding: 10px 30px;
  border-radius: 26px;
  margin-left: 20px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(62,198,224,0.28);
  transition: background 0.2s, color 0.2s, box-shadow 0.24s, transform 0.13s;
  outline: none;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #24a0b6;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(62,198,224,0.21);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: #3EC6E0;
  color: #234E70;
  font-size: 2rem;
  border: none;
  padding: 4px 16px;
  border-radius: 18px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #234E70;
  color: #fff;
}

/* ===============================
  MOBILE MENU STYLES
=============================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  background: #3EC6E0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  z-index: 200;
  box-shadow: -4px 0 32px rgba(35,78,112,0.25);
  padding: 36px 28px 0 28px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.63,-0.12,.46,1.09);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: transparent;
  color: #234E70;
  border: none;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.17s, color 0.19s;
  border-radius: 20px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #234E70;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #234E70;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 14px 18px;
  margin-bottom: 4px;
  box-shadow: 0 1px 8px #c3edf9;
  transition: background 0.16s, color 0.13s, transform 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #234E70;
  color: #fff;
  transform: translateX(6px);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn { padding: 10px 20px; }
}
@media (max-width: 925px) {
  .main-nav { gap: 8px; }
  .cta-btn { margin-left: 8px; }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ===============================
  MAIN SECTIONS & FLEX PATTERNS
=============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(62,198,224,0.11);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f7fcfd;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(35, 78, 112, 0.07);
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(62,198,224,0.14);
  transform: translateY(-3px);
}
.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: flex-start;
  gap: 20px;
  padding: 20px 32px 24px 28px;
  background: #eafaef;
  border-radius: 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px #a5efd7;
  min-width: 250px;
  max-width: 440px;
  transition: box-shadow 0.19s, transform 0.13s;
  color: #1a2247;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px #22d4a3c7;
  transform: scale(1.025) rotate(-1deg);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #234E70;
}
.testimonial-card .stars {
  color: #ffc107;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero subtitle bounce in */
.hero-subheadline {
  animation: funBounceIn 0.82s cubic-bezier(.77,.1,.25,1.23);
}
@keyframes funBounceIn {
  0% { opacity: 0; transform: scale(0.8) translateY(-24px); }
  70% { opacity: 1; transform: scale(1.05) translateY(8px);  }
  85% { transform: scale(0.98) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===============================
  SPECIAL COMPONENTS
=============================== */
/* Features List */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 0;
}
.features-list li {
  background: #eafaff;
  border-radius: 20px;
  padding: 28px 20px 24px 20px;
  box-shadow: 0 2px 8px #daf6fa;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
  min-width: 175px;
  max-width: 314px;
  transition: box-shadow 0.17s;
  position: relative;
}
.features-list li img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #c0f2ff;
  padding: 6px;
  margin-bottom: 6px;
  box-shadow: 0 1.5px 8px #d0dde5;
}
.features-list li:hover {
  box-shadow: 0 8px 32px #a0ecf5;
}
.features-list li h3 {
  color: #234E70;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* Service Cards / List */
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.service-card {
  background: #fff5eb;
  border-radius: 24px;
  box-shadow: 0 2px 8px #ffe0c2;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 270px;
  padding: 28px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.17s;
  border: 2.5px dashed #3EC6E0;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 8px 24px #fae0bb;
  transform: translateY(-3px) scale(1.03) rotate(-1.5deg);
  border-color: #234E70;
}
.service-card .price {
  color: #234E70;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 6px;
  background: #eafaff;
  border-radius: 12px;
  padding: 2px 10px;
  display: inline-block;
}
.enroll-btn {
  background: #3EC6E0;
  color: #234E70;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  margin-top: 8px;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 1.5px 5px #a7f0fa;
  transition: background 0.17s, color 0.13s;
}
.enroll-btn:hover, .enroll-btn:focus {
  background: #234E70;
  color: #fff;
}

/* Blog Archive */
.blog-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: #d6f6ff;
  border-radius: 22px;
  box-shadow: 0 2px 8px #b0e7fb;
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 300px;
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  word-break: break-word;
  transition: box-shadow 0.17s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2.5px dotted #3EC6E0;
  position: relative;
}
.blog-post:hover {
  box-shadow: 0 6px 20px #68d2ec;
  border-color: #234E70;
  transform: scale(1.04);
}
.blog-post a {
  margin-top: 8px;
  color: #234E70;
  font-weight: 600;
  text-decoration: underline;
  font-family: 'Montserrat', cursive, sans-serif;
}

.category-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.category-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.category-list li {
  font-size: 1rem;
  background: #ffd4d4;
  color: #234E70;
  padding: 5.5px 17px;
  border-radius: 14px;
  margin-bottom: 0;
  font-family: 'Montserrat', cursive, sans-serif;
}

/* Testimonials Layouts */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.rating-summary {
  margin-top: 34px;
  background: #fffbea;
  border-radius: 20px;
  padding: 18px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 10px #f7e9b6;
}
.rating-summary .stars {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 1.5rem;
}
.rating-summary strong {
  color: #234E70;
}

/* Audience List (For New Leaders) */
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.audience-icon {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-info {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  background: #eafaff;
  border-radius: 16px;
  padding: 12px 18px 8px 18px;
  box-shadow: 0 2px 10px #c8f3fc;
}

/* Team section */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.text-section {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Contact Details */
.contact-details {
  background: #eafaff;
  padding: 20px 18px 10px 18px;
  border-radius: 17px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px #d6f6ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #f6f8f8;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px #d8e6ef;
  margin-bottom: 24px;
}
.map-placeholder img {
  width: 46px;
  height: 46px;
  background: #c0f2ff;
  border-radius: 9px;
  padding: 4px;
}

.core-values-list {
  list-style: disc inside;
  gap: 7px;
  display: flex;
  flex-direction: column;
}

/* Feature checklist */
.feature-checklist {
  display: flex;
  flex-direction: column;
  list-style: disc inside;
  gap: 7px;
}
.feature-checklist li {
  background: #d4fee5;
  color: #234E70;
  border-radius: 12px;
  padding: 7px 16px;
  font-size: 1.07rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===============================
  FOOTER
=============================== */
footer {
  background: #234E70;
  color: #fff;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -4px 30px rgba(62,198,224,0.13);
  padding: 32px 0 20px 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img {
  height: 56px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #3EC6E0;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.02rem;
  border-radius: 14px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #234E70;
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-contact a {
  color: #3EC6E0;
}
footer small {
  color: #ceeffa;
  margin-top: 10px;
}

/* ===============================
  COOKIE CONSENT BANNER & MODAL
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe8;
  color: #234E70;
  box-shadow: 0 -4px 24px #ffeec6a2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 20px 22px 220px;
  z-index: 1000;
  border-top: 3px solid #3EC6E0;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: funBannerIn 0.76s cubic-bezier(.57,-0.32,.45,1.02);
  flex-wrap: wrap;
}
@keyframes funBannerIn {
  0% { opacity: 0; transform: translateY(80px); }
  80% { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  background: #3EC6E0;
  color: #234E70;
  border: none;
  border-radius: 18px;
  padding: 8px 19px;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 8px;
  box-shadow: 0 1px 4px #ddeefc;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.1s, color 0.17s;
}
.cookie-banner .cookie-btn.reject {
  background: #ffd4d4;
  color: #234E70;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #234E70;
  border: 2px solid #3EC6E0;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #234E70;
  color: #fff;
}

.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #234e70b5;
  z-index: 1100;
  animation: cookieModalFadeIn 0.3s;
}
.cookie-modal-backdrop.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 26px;
  max-width: 380px;
  width: 98%;
  box-shadow: 0 4px 32px #b7e3d6;
  padding: 30px 24px 26px 24px;
  margin: 0 auto;
  z-index: 1200;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalPop 0.38s cubic-bezier(.4,1.26,.75,1.11);
}
@keyframes cookieModalPop {
  0% { opacity: 0; transform: scale(0.8) translateY(60px); }
  80% { opacity: 1; transform: scale(1.02) translateY(-7px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  color: #234E70;
  font-size: 1.19rem;
  margin-top: 0;
  margin-bottom: 0.7em;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 12px;
  margin-bottom: 10px;
  color: #234E70;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #3EC6E0;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category {
  font-weight: bold;
  margin-right: 8px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}

/* ===============================
  RESPONSIVE DESIGN – MOBILE FIRST
=============================== */
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 98vw;
  }
  .card-container, .service-cards, .service-list, .testimonial-slider, .testimonial-list, .features-list, .blog-archive {
    gap: 17px;
  }
  .section { padding: 32px 10px; }
}
@media (max-width: 810px) {
  .features-list li, .service-card, .blog-post, .testimonial-card, .audience-info {
    min-width: 170px;
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.08rem; }
  .container { padding: 0 6px; }
  .section {
    margin-bottom: 30px;
    padding: 22px 2px;
    border-radius: 19px;
  }
  .card-container,
  .service-cards,
  .service-list,
  .testimonial-slider,
  .testimonial-list,
  .content-grid,
  .features-list,
  .blog-archive {
    flex-direction: column;
    gap: 15px;
  }
  .team-section {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .audience-list {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 18px 10px;
  }
}
@media (max-width: 575px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1.07rem; }
  .service-card, .testimonial-card, .features-list li, .audience-info, .blog-post {
    padding: 14px 10px 10px 10px;
    border-radius: 12px;
  }
  .footer-contact { font-size: 0.96rem; }
  .cookie-modal {
    padding: 16px 8px 16px 8px;
    border-radius: 14px;
  }
}

/* ===============================
  UTILITIES, ANIMATIONS & EFFECTS
=============================== */
.fade-in {
  animation: fadeIn 0.5s cubic-bezier(.5,.03,.5,1.15);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.bounce {
  animation: bounceAnim 0.7s cubic-bezier(.25,.9,.23,1.38);
}
@keyframes bounceAnim {
  0% { transform: scale(0.9); }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ===============================
  SCROLLBAR (for fun style)
=============================== */
::-webkit-scrollbar {
  width: 11px;
  background: #eafaff;
}
::-webkit-scrollbar-thumb {
  background: #3EC6E0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #234E70;
}

/* ===============================
  OVERRIDES & ACCESSIBILITY
=============================== */
:focus {
  outline: 2px solid #3EC6E0;
  outline-offset: 2px;
}

/* Hide mobile menu when not active */
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Utility to Hide visually but remain accessible */
.sr-only {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  border: 0!important;
}

/* ===============================
  END OF FILE
=============================== */
