/* --- 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; height: 100%; }
*, *:before, *:after { box-sizing: inherit; }
body { height: 100%; background: #F6F6F2; }
img, picture { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul,ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
:focus { outline: none; box-shadow: 0 0 0 2px #62B6B755; }

/* --- CUSTOM PROPERTIES FOR BRAND COLORS --- */
:root {
  --brand-primary: #191926;
  --brand-secondary: #62B6B7;
  --brand-accent: #F6F6F2;
  --brand-gradient: linear-gradient(90deg, #62B6B7 0%, #191926 100%);
  --brand-gradient-alt: linear-gradient(90deg, #62B6B7 0%, #21938b 80%, #191926 100%);
  --brand-dark: #181824;
  --brand-shadow: 0 6px 32px 0 rgba(25,25,38,.09);
  --radius-main: 20px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --fz-xs: 14px;
  --fz-sm: 16px;
  --fz-base: 18px;
  --fz-lg: 24px;
  --fz-xl: 32px;
  --fz-xxl: 48px;
  --fz-display: 56px;
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  background: var(--brand-accent);
  font-size: var(--fz-base);
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: var(--fz-xxl);
  margin-bottom: 18px;
}
h2 {
  font-size: var(--fz-xl);
  margin-bottom: 16px;
}
h3 {
  font-size: var(--fz-lg);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: var(--fz-base);
}

p, li, dd {
  font-size: var(--fz-base);
  margin-bottom: 10px;
}
strong, b {
  font-weight: 600;
}

blockquote {
  border-left: 4px solid var(--brand-secondary);
  padding-left: 18px;
  font-style: italic;
  color: var(--brand-primary);
  background: #f1f9fa;
  border-radius: var(--radius-xs);
}
cite {
  font-size: var(--fz-sm);
  color: var(--brand-secondary);
  margin-left: 8px;
}

/* --- MAIN GLOBAL LAYOUT CONTAINERS --- */
.container {
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- HEADER & NAVIGATION --- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-gradient);
  color: #fff;
  padding: 16px 24px;
  position: relative;
  z-index: 1002;
}
a.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
  flex-shrink: 0;
}
header img {
  max-height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: var(--fz-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-bottom .2s;
}
header nav a:hover, header nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
}

.cta.primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 10px 28px;
  border-radius: var(--radius-main);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: var(--fz-base);
  font-weight: 700;
  margin-left: 28px;
  box-shadow: 0 4px 24px 0 rgba(25,25,38,.06);
  transition: background .22s, color .22s, box-shadow .22s;
  border: none;
  border-bottom: 4px solid #4ea7a8;
  text-align: center;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: #fff;
  border-bottom: 4px solid var(--brand-secondary);
  box-shadow: 0 2px 12px 0 rgba(98,182,183,.25);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 1201;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: 2.2rem;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus { box-shadow: 0 0 0 2px var(--brand-primary)55; }
.mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: var(--brand-gradient-alt);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.95,.05,.51,.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 24px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-primary);
  color: #fff;
  font-size: 2.1rem;
  border-radius: var(--radius-sm);
  width: 46px;
  height: 46px;
  margin: 22px 12px 16px 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: var(--fz-lg);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
}

/* --- HERO SECTION --- */
.hero {
  background: var(--brand-gradient); 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-bottom: 60px;
  padding: 40px 20px 60px 20px;
  border-radius: 0 0 var(--radius-main) var(--radius-main);
  box-shadow: 0 6px 40px 0 rgba(25,25,38,.092);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  color: #fff;
  font-size: var(--fz-xxl);
  line-height: 1.1;
}
.hero .hero-subheadline {
  font-size: var(--fz-lg);
  color: #e1f5f5;
  font-weight: 500;
}
.hero .cta.primary {
  margin-top: 20px;
  margin-left: 0;
}

/* --- SECTION LAYOUT SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features, .services, .testimonials, .cta, .confirmation {
  border-radius: var(--radius-main);
  box-shadow: var(--brand-shadow);
  background: #fff;
}

/* --- FEATURES LIST --- */
.features .feature-list,
.features .event-highlights,
.features .event-summaries,
.features .upcoming-events {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.features .feature-list li,
.features .event-highlights li,
.features .event-summaries li,
.features .upcoming-events li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8fafd;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px 0 rgba(25,25,38,0.08);
  padding: 24px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow .18s, background .23s;
}
.features .feature-list li:hover,
.features .feature-list li:focus {
  box-shadow: 0 6px 30px 0 rgba(98,182,183,.18);
  background: #e6f4f5;
}
.features .feature-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.features .feature-list h3 {
  color: var(--brand-secondary);
}

/* --- SERVICES --- */
.services .service-list,
ul.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.services .service-list li,
ul.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  background: #f1f9fa;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px 0 rgba(98,182,183,.10);
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow .19s, background .21s;
  border-left: 6px solid var(--brand-secondary);
  position: relative;
}
.services .service-list li:hover, ul.service-list li:hover {
  box-shadow: 0 4px 24px 0 rgba(98,182,183,.17);
  background: #e6f4f5;
}
.service-price {
  color: var(--brand-primary);
  background: var(--brand-secondary);
  font-size: var(--fz-sm);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  align-self: flex-end;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--brand-shadow);
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f1f9fa;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 7px 0 rgba(25,25,38,0.06);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 690px;
  flex-wrap: wrap;
  color: #181824;
}
.testimonial-card blockquote {
  border-left: 5px solid var(--brand-secondary);
  background: none;
  padding-left: 18px;
  margin: 0;
  color: #181824;
}
.testimonial-card cite {
  font-style: normal;
  color: var(--brand-secondary);
  margin-left: 0;
  font-weight: 600;
}

/* --- CTA & CONFIRM/THANK-YOU SECTION --- */
.cta, .confirmation {
  background: var(--brand-gradient-alt);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-main);
  margin-bottom: 60px;
  box-shadow: 0 10px 34px 0 rgba(25,25,38,.11);
}
.cta .container, .confirmation .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .content-wrapper, .confirmation .content-wrapper {
  align-items: center;
  gap: 20px;
}
.cta h2, .confirmation h1, .confirmation h2 {
  color: #fff;
}
.cta p, .confirmation p {
  color: #f0fffd;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: #fff;
  position: relative;
  padding: 36px 0 12px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.footer-wrapper > a {
  margin-right: 30px;
  min-width: 56px;
}
.footer-wrapper img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 12px 0 0;
}
footer nav a {
  color: #fff;
  font-size: var(--fz-sm);
  padding: 4px 0;
  transition: color .18s, border-bottom .18s;
  border-bottom: 2px solid transparent;
  margin-bottom: 6px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
}
.brand-credit {
  font-size: var(--fz-xs);
  color: #cbeaea;
  margin-top: 16px;
  flex-basis: 100%;
}

/* --- CONTENT GRIDS & FLEXBOX UTILS --- */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px 0 rgba(25,25,38,.09);
  margin-bottom: 20px;
  position: relative;
  padding: 16px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 30px 0 rgba(98,182,183,.18);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* FAQ block */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list dt {
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 4px;
  font-size: var(--fz-lg);
}
.faq-list dd {
  font-size: var(--fz-base);
  margin-left: 0;
  margin-bottom: 10px;
}
.faq-list a {
  color: var(--brand-secondary);
  text-decoration: underline;
  transition: color .18s;
}
.faq-list a:hover, .faq-list a:focus { color: var(--brand-primary); }
.value-list {
  padding-left: 0;
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  font-size: var(--fz-base);
}
.contact-details {
  margin: 20px 0 0 0;
  font-size: var(--fz-base);
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details a {
  color: var(--brand-secondary);
  text-decoration: underline;
  font-weight: 600;
}
.contact-details a:hover, .contact-details a:focus { color: var(--brand-primary); }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: var(--brand-primary);
  z-index: 2002;
  box-shadow: 0 -6px 30px 0 rgba(25,25,38,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 20px 20px 20px;
  border-top-left-radius: var(--radius-main);
  border-top-right-radius: var(--radius-main);
  animation: fadeInUp .5s ease;
}
@keyframes fadeInUp {
  from { transform: translateY(40px); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-banner p {
  font-size: var(--fz-base);
  color: var(--brand-primary);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fz-base);
  border: none;
  cursor: pointer;
  transition: background .19s, color .17s, box-shadow .13s;
  box-shadow: 0 1px 6px 0 rgba(98,182,183,0.08);
}
.cookie-btn.accept {
  color: var(--brand-primary);
  background: var(--brand-secondary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.reject {
  color: #fff; background: #b04b56;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #771f28;
}
.cookie-btn.settings {
  color: var(--brand-secondary);
  background: #e5f6f8;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
@media (max-width: 550px) {
  .cookie-banner { flex-direction: column; gap: 16px; align-items: flex-start; padding: 18px 8px 12px 8px; }
  .cookie-banner .cookie-buttons { justify-content: flex-end; width: 100%; }
}
/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  background: rgba(25,25,38,0.68);
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .26s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 14px 40px 0 rgba(25,25,38, .19);
  padding: 32px 20px;
  max-width: 404px;
  width: 100%;
  font-size: var(--fz-base);
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn .17s cubic-bezier(.91,-0.02,.49,1.19);
}
@keyframes modalSlideIn {
  from { transform: translateY(38px); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-modal h2 {
  color: var(--brand-secondary);
  font-size: var(--fz-xl);
  margin-bottom: 0;
  margin-top: 4px;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-preference-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 0 10px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: var(--fz-base);
}
.cookie-preference-label {
  flex: 1 1 auto;
}
.cookie-preference-toggle {
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: #e7e7ef;
  position: relative;
  transition: background .18s;
  margin-left: 6px;
}
.cookie-preference-toggle[aria-checked="true"] {
  background: var(--brand-secondary);
}
.cookie-preference-toggle .toggle-handle {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .23s cubic-bezier(.45,1.2,.7,1);
  box-shadow: 0 1px 4px 0 rgba(25,25,38,0.07);
}
.cookie-preference-toggle[aria-checked="true"] .toggle-handle {
  left: 20px;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal-footer .cookie-btn {
  min-width: 84px;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 7vw;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 8vw;
  }
  section, .hero {
    padding: 34px 8px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 4vw;
  }
  header {
    flex-direction: row;
    padding: 12px 4vw;
  }
  header nav {
    display: none;
  }
  .cta.primary {
    margin-left: auto;
    font-size: var(--fz-sm);
    padding: 8px 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features .feature-list,
  .services .service-list,
  ul.service-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials .content-wrapper, .features .feature-list li, .services .service-list li {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .cta .content-wrapper, .confirmation .content-wrapper {
    gap: 16px;
  }
  .hero {
    min-height: 220px;
    padding-top: 24px; padding-bottom: 34px;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 22px 6px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container, .footer-wrapper { padding: 0 2vw; }
  footer { padding-top: 18px; }
  .footer-wrapper img { height: 32px; }
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
a, .cta.primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background .2s, color .2s, box-shadow .2s, border-bottom .2s;
}
.card, .testimonial-card, .feature-list li, .service-list li {
  transition: box-shadow .18s, background .23s, border-color .16s;
}

/* --- ACCESSIBILITY --- */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* --- Z-INDEX FIXES FOR OVERLAYS --- */
.mobile-menu { z-index: 1200; }
.mobile-menu-toggle { z-index: 1201; }
.cookie-banner, .cookie-modal-backdrop { z-index: 2002; }

/* --- NO ABSOLUTE FOR CONTENT CARDS; NO GRID/NO COLUMNS --- */
/* --- This CSS uses only FLEXBOX for all layouts per requirements --- */
