/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #202A34;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  background-color: transparent;
  color: #254872;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #4B6B39;
  outline: none;
}
ul, ol {
  list-style: disc inside;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid #E7E7E7;
}
/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254872;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (min-width: 700px) {
  h1 {
    font-size: 2.75rem;
  }
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
@media (min-width: 700px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #202A34;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 20px;
}
strong {
  font-weight: 600;
}
/* CONTAINER & LAYOUT BASE */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 32px 0 rgba(32,74,125,0.08);
}
@media (max-width: 600px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}
/* HEADER & NAVIGATION */
header {
  border-bottom: 1px solid #E2E8F0;
  background: #fff;
  width: 100%;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #254872;
  text-decoration: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  opacity: .85;
  padding: 4px 0;
}
header nav a:hover, header nav a:focus {
  color: #4B6B39;
  opacity: 1;
}
header img {
  height: 40px;
  width: auto;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #254872;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px 0 rgba(37,72,114,0.09);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  outline: none;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #4B6B39;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(37,72,114,0.12);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 900px) {
  header nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 1002;
  background: #fff;
  border-radius: 50%;
  padding: 10px 13px;
  font-size: 2rem;
  color: #254872;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 10px 0 rgba(32,74,125,0.08);
  transition: background 0.17s, box-shadow 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #254872;
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(32,74,125,0.15);
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 48px 0 rgba(37,72,114,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1100;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.65,.03,.29,.99);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 24px 16px 0;
  font-size: 2.1rem;
  background: none;
  color: #254872;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2E8F0;
  color: #4B6B39;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  padding: 14px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #254872;
  padding: 14px 0;
  text-decoration: none;
  width: 100%;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #f6f6f6;
  color: #4B6B39;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
/* HERO SECTION */
.hero {
  background: #F9F6F2;
  padding: 56px 0 24px 0;
  margin-bottom: 60px;
  display: flex;
  min-height: 350px;
  align-items: center;
}
.hero .container, .hero .content-wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #254872;
  margin-bottom: 10px;
}
.hero p {
  color: #254872;
  font-size: 1.1rem;
}
.hero .cta-btn {
  margin-top: 18px;
}
/* FLEX LAYOUTS & STRUCTURE */
.feature-grid, .service-list, .workshop-overview, .faq-list, .learning-modules ul, .team-info ul, .about-snippet ul, .feature-highlight ul, .benefit-list, .key-topics, .session-outline ol, .schedule-overview ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .feature-grid, .service-list, .workshop-overview, .faq-list, .key-topics, .benefit-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .feature-grid > .feature-item, .service-list > div, .workshop-overview > div {
    flex: 1 1 240px;
    min-width: 220px;
    max-width: 340px;
  }
  .feature-grid > .feature-item, .service-list > div, .workshop-overview > div {
    margin-bottom: 0 !important;
  }
}
.feature-item, .workshop-overview > div, .service-list > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 20px 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(37,72,114,0.05);
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  border: 1px solid #EFF1F5;
}
.feature-item img {
  height: 36px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.feature-item:hover, .service-list > div:hover, .workshop-overview > div:hover {
  box-shadow: 0 9px 32px rgba(37,72,114,0.10);
  transform: translateY(-2px) scale(1.025);
}
.testimonials {
  background: #F9F6F2;
  padding: 40px 0;
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(37,72,114,0.06);
  border: 1px solid #EFF1F5;
  min-width: 0;
  max-width: 550px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(37,72,114,0.13);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  color: #202A34;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #254872;
}
.stars {
  color: #799B6B;
  font-weight: 600;
  font-family: monospace;
  font-size: 1.1em;
  letter-spacing: 0.06em;
}
/* More flex layouts for various sections */
.team-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  margin-bottom: 18px;
}
.address-details, .opening-hours, .phone-email {
  font-size: 1.04rem;
  line-height: 1.66;
  color: #202A34;
}
.map-placeholder {
  min-height: 90px;
  background: #F9F6F2;
  border-radius: 8px;
  font-style: italic;
  color: #616B7A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px;
}
.faq-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px rgba(37,72,114,0.06);
  border: 1px solid #EFF1F5;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 180px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.faq-list > div:hover {
  box-shadow: 0 10px 32px rgba(123,155,107,0.09);
  transform: translateY(-2px) scale(1.015);
}
/* Tables */
table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(37,72,114,0.04);
  margin: 24px 0 32px 0;
  overflow: hidden;
  font-size: 0.97rem;
}
th {
  background: #F9F6F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
td {
  color: #254872;
}
tr:last-child td {
  border-bottom: none;
}
/* Call to Action Section */
.cta {
  background: #254872;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 42px 20px;
  box-shadow: 0 4px 28px 0 rgba(37,72,114,0.11);
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #fff;
  color: #254872;
  box-shadow: 0 2px 15px 0 rgba(32,74,125,0.07);
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #4B6B39;
  color: #fff;
}
@media (max-width: 700px) {
  .cta {
    padding: 28px 8px;
    border-radius: 13px;
    margin-bottom: 40px;
  }
}
/* About snippet and Team highlight */
.about-snippet ul, .feature-highlight ul {
  margin-top: 12px;
  padding-left: 23px;
  font-size: 1rem;
}
.about-snippet ul li, .feature-highlight ul li {
  margin-bottom: 8px;
}
/* Thank You Page */
.thank-you {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(37,72,114,0.09);
  margin-bottom: 60px;
  padding: 48px 20px;
}
.thank-you h1 {
  color: #799B6B;
}
/* Legal Pages */
.legal {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 64px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px rgba(37,72,114,0.07);
}
/* FOOTER */
footer {
  background: #f9f6f2;
  border-top: 1px solid #EFF1F5;
  padding: 32px 0 16px 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: #254872;
  opacity: 0.75;
  text-decoration: underline dotted;
  font-size: 0.97rem;
  transition: opacity 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #799B6B;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #254872;
  opacity: 0.7;
}
.footer-brand img {
  height: 26px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer nav {
    gap: 15px;
  }
}
/* SPACING BETWEEN SECTIONS */
section {
  margin-bottom: 60px;
}
@media (max-width: 700px) {
  section {
    margin-bottom: 38px;
  }
}
/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 12px;
  background: #F9F6F2;
}
::-webkit-scrollbar-thumb {
  background: #E2E8F0;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #79a06c40;
}
/* Animations & Transitions */
button, a, .cta-btn, .feature-item, .service-list > div, .workshop-overview > div, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.18s, background 0.17s, color 0.17s, transform 0.13s;
}
/* Cookie consent banner (fixed, animated) */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 18px 0 rgba(37,72,114,0.065);
  padding: 24px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1202;
  flex-wrap: wrap;
  animation: fadeUpIn 0.38s cubic-bezier(.36,1.57,.36,.84) both;
}
@keyframes fadeUpIn {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  flex: 1 0 220px;
  margin-bottom: 0;
  color: #254872;
  font-size: 1rem;
}
.cookie-btn {
  padding: 10px 26px;
  border-radius: 20px;
  border: none;
  margin: 0 8px 0 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: #254872;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(37,72,114,0.08);
  transition: background 0.18s, color 0.15s, transform 0.13s;
}
.cookie-btn.accept {
  background: #799B6B;
  color: #fff;
  margin-right: 8px;
}
.cookie-btn.reject {
  background: #db292d;
  margin-right: 8px;
}
.cookie-btn.settings {
  background: #F9F6F2;
  color: #254872;
  border: 1px solid #799B6B;
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(1.07);
  outline: 2px solid #4B6B39;
  transform: translateY(-2px) scale(1.017);
}
/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,74,125,0.12);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s both;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 90vw;
  border-radius: 18px;
  box-shadow: 0 9px 38px 0 rgba(37,72,114,0.16);
  padding: 34px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalUpIn 0.31s cubic-bezier(.36,1.57,.36,.84) both;
}
@keyframes modalUpIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #254872;
}
.cookie-modal .cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 14px;
  appearance: none;
  background: #E2E8F0;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #799B6B;
}
.cookie-modal .cookie-toggle:before {
  content: "";
  position: absolute;
  top: 4px; left: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(32,74,125,0.10);
  transition: transform 0.16s;
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-btn-group {
  display: flex;
  gap: 13px;
}
.cookie-modal .cookie-btn {
  min-width: 98px;
  margin: 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 23px;
  background: none;
  font-size: 1.3rem;
  color: #254872;
  border-radius: 50%;
  transition: background 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F9F6F2;
}
/* UTILS */
.d-none {
  display: none !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .feature-grid, .service-list, .workshop-overview, .faq-list, .key-topics, .benefit-list {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
  .feature-grid > .feature-item, .service-list > div, .workshop-overview > div, .faq-list > div {
    min-width: unset;
    max-width: 100% !important;
    margin-right: 0 !important;
  }
  .content-wrapper {
    gap: 14px;
  }
}
/* Ensure NO elements overlap and minimum 20px between cards */
.feature-item:not(:last-child), .service-list > div:not(:last-child), .workshop-overview > div:not(:last-child), .testimonial-card:not(:last-child), .faq-list > div:not(:last-child) {
  margin-bottom: 20px;
}
.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: stretch;
  }
}
/* FOCUSED VISIBLE STYLES */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px dashed #799B6B;
  outline-offset: 2px;
}
/* Hide visually but remain accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
