/* RESET & BASE STYLES (normalize + box model) */
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 { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; background: #F5F7FA; color: #18496B; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; border-radius: 6px; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18496B;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, li { font-size: 1rem; color: #245678; font-family: 'Roboto', Arial, sans-serif; }
strong { color: #18496B; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  p, li { font-size: 0.98rem; }
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32,64,80,0.06);
}
@media (max-width: 768px) {
  .section { padding: 20px 6px; margin-bottom: 34px; }
}

/* FLEXBOX GRIDS */
.card-container, .service-highlights, .feature-grid, .benefits-grid, .icon-grid, .testimonials, .content-grid, .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .card-container, .service-highlights, .feature-grid, .benefits-grid, .icon-grid, .content-grid, .gallery-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .card-container, .service-highlights, .feature-grid, .benefits-grid, .icon-grid, .content-grid, .gallery-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(32,64,80,0.07);
  margin-bottom: 20px;
  padding: 28px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 16px rgba(32,64,80,0.12);
  transform: translateY(-2px) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F7FA;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 1px 4px rgba(23,70,107,0.05);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24,73,107,0.07);
  margin-bottom: 20px;
  min-width: 275px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(24,73,107,0.15);
  transform: translateY(-3px);
}
.testimonial-card p {
  color: #245678;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  display: block;
  color: #18496B;
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .testimonial-card { padding: 16px; font-size: 0.99rem; }
}

/* HERO & CTA */
.hero {
  padding: 60px 0 30px 0;
  background: linear-gradient(110deg, #F5F7FA 60%, #E8F5F1 100%);

}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 180px;
}
.hero h1 {
  color: #18496B;
  font-size: 2.4rem;
  max-width: 690px;
}
.hero p {
  color: #245678;
  font-size: 1.17rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero { padding: 36px 0 18px 0; }
  .hero .container { min-height: unset; }
  .hero h1 { font-size: 1.33rem; }
  .hero p { font-size: 1rem; }
}

.cta-btn, a.cta-btn, button.cta-btn {
  display: inline-block;
  background: #6AD8B3;
  color: #18496B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 11px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(106, 216, 179, 0.08);
  transition: background 0.2s, color 0.15s, box-shadow 0.2s, transform 0.18s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #18496B;
  color: #fff;
  box-shadow: 0 4px 18px rgba(24, 73, 107, 0.09);
  transform: translateY(-2px) scale(1.025);
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(24,73,107,0.04);
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}
nav img { height: 42px; margin-right: 15px; }
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #18496B;
  font-size: 1rem;
  border-radius: 20px;
  padding: 5px 12px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: #F5F7FA;
  color: #18496B;
}
nav .cta-btn { margin-left: 12px; }

/* HAMBURGER MENU (MOBILE NAVIGATION) */
.mobile-menu-toggle {
  display: none;
  background: #6AD8B3;
  color: #18496B;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 13px;
  z-index: 202;
  box-shadow: 0 2px 8px rgba(106,216,179,.10);
  transition: background 0.19s, box-shadow 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #18496B;
  color: #fff;
  box-shadow: 0 4px 20px #6AD8B350;
}
@media (max-width: 1023px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2200;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.66,0.1,0.61,1.16), opacity 0.29s;
  pointer-events: none;
  box-shadow: 0 8px 32px #18496B22;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #18496B;
  font-size: 2.4rem;
  border: none;
  position: absolute;
  right: 32px;
  top: 22px;
  cursor: pointer;
  z-index: 2500;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #6AD8B3; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 110px 0 0 0;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #18496B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: #F5F7FA;
  border-radius: 18px;
  padding: 12px 34px;
  width: 70vw;
  max-width: 350px;
  box-shadow: 0 1px 3px #18496b11;
  text-align: center;
  transition: background 0.19s, color 0.18s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6AD8B3;
  color: #18496B;
}

@media (max-width: 425px) {
  .mobile-nav a { font-size: 1.01rem; padding: 12px 13px; width: 84vw; }
}

/* SECTIONS & CARDS */
.services-home .service-highlights, .about-usp .feature-list, .services-classes ul, .services-equipment ul, .about-team ul, .gallery-activities ul, .blog-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.services-home .service-highlights > div, .about-usp .feature-list > li, .services-classes ul > li, .about-team ul > li, .blog-intro ul > li {
  background: #F5F7FA;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(24,73,107,0.06);
  padding: 18px 17px;
  min-width: 220px;
  flex: 1 0 260px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.icon-grid > li, .feature-grid > li, .benefits-grid > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #F5F7FA;
  border-radius: 12px;
  padding: 15px 15px 18px 15px;
  box-shadow: 0 1px 4px #18496b0c;
  min-width: 160px;
  margin-bottom: 4px;
}
.icon-grid img, .feature-grid img, .benefits-grid img, .feature-list img { height: 38px; margin-bottom: 5px; }
@media (max-width: 768px) {
  .services-home .service-highlights, .about-usp .feature-list, .services-classes ul, .about-team ul, .gallery-activities ul, .blog-intro ul, .icon-grid, .feature-grid, .benefits-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* CONTACT DETAILS, OPENING HOURS, TEXT BLOCKS */
.text-section {
  background: #F5F7FA;
  border-radius: 10px;
  padding: 14px 17px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px #18496b0a;
}
.opening-hours ul {
  margin-bottom: 8px;
  padding-left: 0;
  display: flex; flex-direction: column; gap: 5px;
}
.opening-hours li { font-size: 1rem; }

/* FOOTER */
footer {
  background: #fff;
  margin-top: 60px;
  box-shadow: 0 -1px 12px #18496b0a;
  padding: 32px 0 0 0;
  font-size: 1rem;
}
footer .container {
  padding: 0 20px 18px 20px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact {
  color: #18496B;
  font-size: 1rem;
  line-height: 1.6;
}
.footer-contact a { color: #18496B; text-decoration: underline; }
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; padding: 0 12px 18px 12px; }
}

/* LEGAL/THANK YOU SECTIONS */
.legal {
  margin-bottom: 50px;
  padding: 38px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px #18496b11;
}
.thank-you-section {
  padding: 44px 0;
  background: #E8F5F1;
  border-radius: 15px;
  margin-bottom: 54px;
  text-align: center;
}
.thank-you-section .cta-btn { margin: 18px auto 0 auto; display: inline-block; }

/* BLOG-LIST/ARTICLE PREVIEWS */
.feature-list > li, .blog-intro ul > li {
  color: #245678;
  border-left: 5px solid #6AD8B3;
  background: #f7fbfa;
  margin-bottom: 5px;
}

/* SCROLL BAR (subtle, modern look) */
body::-webkit-scrollbar { width: 8px; background: #e2e9ec; }
body::-webkit-scrollbar-thumb { background: #c7dad2; border-radius: 6px; }

/* FORM ELEMENTS */
input, textarea, select {
  border: 1px solid #d2e3dd;
  border-radius: 7px;
  padding: 10px 13px;
  outline: none;
  background: #F5F7FA;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #6AD8B3;
}
label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; }

/* BUTTONS (universal) */
button, .button, input[type='submit'] {
  background: #6AD8B3;
  color: #18496B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 30px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 8px #6AD8B320;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.16s;
}
button:hover, .button:hover, input[type='submit']:hover {
  background: #18496B;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #18496b30;
}

/* COOKIE CONSENT BANNER  */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 18px;
  width: 98vw;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 3px 24px #18496b18;
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 2 1 280px;
  color: #18496B;
  font-size: 1.01rem;
  margin-bottom: 4px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-size: 0.92rem;
  padding: 7px 22px;
  border-radius: 18px;
}
.cookie-banner button.accept { background: #6AD8B3; color: #18496B; }
.cookie-banner button.reject { background: #fff; color: #18496B; border: 1px solid #6AD8B3; }
.cookie-banner button.settings { background: #E8F5F1; color: #18496B; }
.cookie-banner button:hover { box-shadow: 0 2px 12px #18496b18; }

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; padding: 14px 10px; gap: 11px; }
  .cookie-banner .cookie-text, .cookie-banner .cookie-actions { width: 100%; }
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  z-index: 3200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,73,107,0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal.visible {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 4px 40px #18496b36;
  width: 96vw;
  max-width: 410px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  animation: fadeinModal 0.38s ease;
}
@keyframes fadeinModal {
  from { opacity: 0; transform: translateY(32px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px; right: 17px;
  background: transparent;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: #18496B;
  cursor: pointer;
}
.cookie-modal .modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  color: #18496B;
  font-weight: 700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center;
  gap: 13px;
  border-bottom: 1px solid #E8F5F1;
  padding-bottom: 8px;
}
.cookie-category label { font-weight: 500; color: #18496B;font-size: 1rem; }
.cookie-category input[type='checkbox'] {
  accent-color: #6AD8B3;
  width: 19px; height: 19px;
  cursor: pointer;
}
.cookie-category .always-on {
  color: #6AD8B3; font-size: 0.92rem; font-weight: bold;
}
.cookie-modal .modal-actions {
  margin-top: 5px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 18px;
}

/* ANIMATIONS (subtle) */
a, button, .cta-btn, nav a, .card, .testimonial-card {
  transition: color 0.16s, background 0.16s, box-shadow 0.18s, transform 0.16s;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 640px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1.08rem; }
  .container { padding-left: 5px; padding-right: 5px; }
  .card, .testimonial-card, .feature-item { padding: 12px 7px; }
}

/* HOME FEATURE GRID OVERRIDES */
.feature-grid {
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-grid > li {
  flex: 1 0 220px;
  min-width: 175px;
}

/* UTILITIES */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.hide { display: none !important; }

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

/* Error/Notice Colors */
.error { color: #c4433f; }
.notice { color: #18496B; }

/* SHADOWS & DIVIDERS */
.divider { width: 100%; height: 1px; background: #E8F5F1; margin: 24px 0; }

/* NON-GRID FLEXBOX ONLY (NO display: grid!) */
/* All layouts above strictly use flexbox per requirements */