/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.55;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F3EE;
  color: #274646;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button {
  cursor: pointer;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #274646;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #274646;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #426362;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p, .subheadline {
  font-size: 1rem;
  color: #426362;
  margin-bottom: 16px;
}
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #426362;
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
}

blockquote {
  border-left: 4px solid #F18B36;
  padding-left: 18px;
  color: #274646;
  font-style: italic;
  background: #FFFFFF;
  margin-bottom: 12px;
}

/* CONTAINER AND SECTION LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

section {
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
}
.text-section {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(66, 99, 98, 0.05);
  padding: 32px 28px;
  margin-bottom: 20px;
}

/* HEADER LAYOUT & NAVIGATION */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(39, 70, 70, 0.07);
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
.logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #426362;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F18B36;
  color: #FFFFFF;
}
.cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 1px 4px 0 rgba(66,99,98,0.08);
  border: none;
  display: inline-block;
  line-height: 1.4;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.cta.primary {
  background: #F18B36;
  color: #FFFFFF;
}
.cta.secondary {
  background: #FFFFFF;
  color: #F18B36;
  border: 1.5px solid #F18B36;
}
.cta.primary:hover, .cta.primary:focus {
  background: #426362;
  color: #FFFFFF;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F18B36;
  color: #FFFFFF;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2rem;
  color: #274646;
  border: none;
  margin-left: 12px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 70, 70, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-120%);
  transition: transform 0.33s cubic-bezier(0.7,0.1,0,1);
  z-index: 200;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 72px;
  margin-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  color: #FFFFFF;
  padding: 10px 6px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F18B36;
  color: #FFFFFF;
}

/* HERO & FEATURES */
.feature-grid,
.session-types-grid,
.benefits-grid,
.event-types-list ul,
.menu-highlights ul,
.case-studies-snippets ul,
.benefit-grid,
.services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-grid li,
.session-types-grid > div,
.benefits-grid > div,
.event-types-list ul li,
.menu-highlights ul li,
.case-studies-snippets ul li,
.benefit-grid > div,
.services-list > div {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(66, 99, 98, 0.07);
  padding: 24px 20px 20px 20px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid img,
.session-types-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.services-list {
  gap: 24px;
  flex-wrap: wrap;
}
.services-list > div > h3 {
  color: #F18B36;
}
.services-list > div > span {
  color: #426362;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 0px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Section Titles */
section h2 {
  margin-bottom: 16px;
}
section ul {
  margin-bottom: 24px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(39,70,70,0.06);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  max-width: 680px;
}
blockquote {
  color: #274646;
  font-size: 1.05rem;
  background: #FFFFFF;
  border-left: 4px solid #F18B36;
  padding-left: 18px;
  margin-bottom: 8px;
}
.testimonial-author {
  color: #426362;
  font-style: normal;
  font-size: .99rem;
  letter-spacing: 0.01em;
}

/* CARDS AND CARD-LIKE COMPONENTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(66, 99, 98, 0.09);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* PRICING INFO */
.pricing-info p {
  font-size: 1.06rem;
  color: #274646;
  margin-top: 0;
  margin-bottom: 8px;
  background: #F5F3EE;
  border-radius: 12px;
  padding: 11px 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ACCORDION (FAQ) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px 0 rgba(39,70,70,0.06);
}
.faq-accordion h3 {
  font-size: 1.05rem;
  color: #F18B36;
  cursor: pointer;
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-accordion p {
  font-size: 0.98rem;
  margin-bottom: 0px;
  color: #426362;
}

/* FOOTER */
footer {
  background: #FFFFFF;
  box-shadow: 0 -2px 8px 0 rgba(39,70,70,0.02);
  width: 100%;
  padding: 32px 0 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-nav a {
  font-size: 0.97rem;
  color: #426362;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F18B36;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 30px;
}
.footer-brand span {
  font-size: 0.95rem;
  color: #426362;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  box-shadow: 0 -3px 18px 0 rgba(39,70,70,0.11);
  padding: 24px 16px 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 500;
  transition: transform 0.36s cubic-bezier(0.7,0.1,0,1), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  color: #274646;
  flex: 1 1 350px;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  padding: 10px 22px;
  border: none;
  background: #EFF1F2;
  color: #274646;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cookie-banner .cookie-btn.accept {
  background: #F18B36;
  color: #FFFFFF;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #426362;
}
.cookie-banner .cookie-btn.reject {
  background: #FFF6F0;
  color: #F18B36;
  border: 1.5px solid #F18B36;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #F18B36;
  color: #FFFFFF;
}
.cookie-banner .cookie-btn.settings {
  background: #EFF1F2;
  color: #274646;
  border: 1.5px solid #426362;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #426362;
  color: #FFFFFF;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 900;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39,70,70,0.38);
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(39,70,70,0.20);
  width: 95%;
  max-width: 470px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #274646;
}
.cookie-modal .cookie-modal-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #426362;
  margin-bottom: 12px;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  font-size: 1rem;
  color: #426362;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F18B36;
}
.cookie-category.essential label {
  font-weight: 600;
  color: #426362;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  padding: 10px 22px;
}

/* ANIMATIONS & HOVER EFFECTS */
.cta,
.card,
.card-content,
.testimonial-card,
.feature-grid li,
.services-list > div,
.session-types-grid > div,
.benefits-grid > div,
.benefit-grid > div {
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover,
.testimonial-card:hover,
.feature-grid li:hover,
.services-list > div:hover,
.session-types-grid > div:hover,
.benefits-grid > div:hover,
.benefit-grid > div:hover {
  transform: translateY(-4px) scale(1.019);
  box-shadow: 0 6px 32px 0 rgba(39,70,70,0.11);
}
.cta:not(.disabled):hover, .cta:not(.disabled):focus {
  box-shadow: 0 2px 16px 0 rgba(241,139,54,0.13);
  transform: translateY(-2px) scale(1.025);
}

/* FORM ELEMENTS (If any custom forms are added) */
input, textarea, select {
  padding: 9px 12px;
  border-radius: 8px;
  background: #F5F3EE;
  border: 1.5px solid #EFF1F2;
  margin-bottom: 16px;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F18B36;
}
label {
  font-size:1em;
  color:#426362;
  margin-bottom:2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* MISC UTILITY */
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ----- RESPONSIVE STYLES (MOBILE-FIRST) ----- */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .main-nav {
    gap: 16px;
  }
  .feature-grid,
  .session-types-grid,
  .benefits-grid,
  .services-list,
  .content-grid,
  .card-container,
  .benefit-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.62rem;
    margin-bottom: 12px;
  }
  h2, .h2 {
    font-size: 1.23rem;
    margin-bottom: 12px;
  }
  h3, .h3 {
    font-size: 1.06rem;
    margin-bottom: 5px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary, .cta.secondary {
    margin-left: 0;
    padding: 9px 16px;
    font-size: 0.99rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 12px 12px 12px 12px;
  }
  .text-section,
  .faq-accordion,
  .testimonial-card,
  .card {
    padding: 18px 12px;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Flex containers stack on mobile */
  .feature-grid,
  .session-types-grid,
  .benefits-grid,
  .benefit-grid,
  .services-list,
  .content-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid li, .session-types-grid > div, .benefits-grid > div, .card {
    min-width: 0;
    width: 100%;
    padding: 15px 8px;
  }
  .testimonial-card,
  .card-content {
    padding: 12px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 10px 16px 10px;
  }
}
@media (max-width: 520px) {
  header .container, .footer .container {
    padding: 6px 4px;
  }
  .footer-brand img {
    height: 22px;
  }
  .footer-brand span {
    font-size: 0.74rem;
  }
  .feature-grid li, .session-types-grid > div, .benefits-grid > div, .event-types-list ul li, .menu-highlights ul li, .card, .card-content, .testimonial-card, .faq-accordion {
    font-size: 0.98rem;
    padding: 9px 5px;
  }
}

/* VISUAL BALANCE, SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

.card-container, .card-grid, .features, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* OVERLAY & Z-INDEX LAYERS */
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 500; }
.cookie-modal-overlay { z-index: 900; }
header { z-index: 99; }

/* FIXED: ENSURE NO OVERLAP AND ROOM FOR BANNER ON MOBILE */
body {
  padding-bottom: 72px;
}

/* END */