/* 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,
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF8F4;
  color: #2A6041;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #E94429;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #b62612;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* BRAND FONTS & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2A6041;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.875rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1rem;
}

p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2A6041;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

.subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2A6041;
  margin-bottom: 24px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section, .booking-info, .contact-details {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px 0 rgba(41, 38, 33, 0.06);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/*--- FLEXBOX LAYOUTS (Always use flex, never grid) ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(41, 38, 33, 0.05);
  background: #fff;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(233,68,41,0.10);
  transform: translateY(-2px) scale(1.02);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(41, 38, 33, 0.11);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 520px;
}
.testimonial-card p {
  color: #333;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #2A6041;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--- HERO SECTION ---*/
.hero {
  background: #FFD9CF;
  border-radius: 0 0 30px 30px;
  padding: 60px 0 40px 0;
  margin-bottom: 48px;
}
.hero .container {
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero h1,
.hero p.subheadline {
  color: #2A6041;
}

/*--- FEATURES ---*/
.features .container > h2 {
  text-align: center;
  color: #E94429;
  font-size: 2rem;
  margin-bottom: 20px;
}
.feature-grid,
.steps-list,
.step-list,
.benefit-list,
.event-list,
.services-overview,
.course-list, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.feature-grid li, .benefit-list li, .event-list li, .services-overview li, .course-list li, .steps-list li, .step-list li {
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 310px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(41,38,33,0.06);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.2s;
}
.feature-grid li:hover, .benefit-list li:hover, .event-list li:hover, .steps-list li:hover, .services-overview li:hover, .course-list li:hover {
  box-shadow: 0 6px 26px rgba(233,68,41,0.12);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img, .benefit-list img, .event-list img, .steps-list img, .course-list img {
  max-width: 54px;
  border-radius: 50%;
  background: #FFD2B5;
  padding: 8px;
  display: block;
}
.features h3 { color: #2A6041; margin-bottom: 7px; }

/*--- SERVICES ---*/
.services .container > h2, .services .container > h1 {
  color: #2A6041;
  text-align: center;
  margin-bottom: 20px;
}
.services-overview, .services .services-overview, .services .event-list, .course-list {
  justify-content: center;
  gap: 24px;
}
.services-overview li, .event-list li, .course-list li, .step-list li {
  border: 2px solid #FFF0E8;
  background: #FFF9F4;
  color: #2A6041;
}
.services-overview strong, .event-list strong, .course-list strong {
  color: #E94429;
  margin-top: 8px;
  font-weight: 700;
  display: block;
}
.steps-list, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.steps-list li, .step-list li {
  box-shadow: 0 2px 16px 0 rgba(41,38,33,0.04);
  border: 0;
  background: #fff;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0 0;
}
.benefits-list li {
  color: #2A6041;
  padding-left: 24px;
  position: relative;
}
.benefits-list li:before {
  content: '⦿';
  position: absolute;
  left: 2px;
  color: #E94429;
}

/*--- CTA ---*/
.cta {
  background: #E94429;
  padding: 48px 0 40px 0;
  border-radius: 40px;
  margin-bottom: 40px;
}
.cta .container {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.cta .cta.primary {
  margin-top: 12px;
}

/*--- BUTTONS ---*/
.cta.primary, .cta.primary:visited {
  display: inline-block;
  background: #2A6041;
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 36px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(41,38,33,0.07);
  cursor: pointer;
  transition: background 0.16s, transform 0.18s, box-shadow 0.15s;
  outline: 0;
}
.cta.primary:hover, .cta.primary:focus {
  background: #E94429;
  color: #fff;
  box-shadow: 0 4px 18px rgba(233,68,41,0.12);
  transform: translateY(-2px) scale(1.05);
}

button, .button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: #2A6041;
  color: #fff;
  padding: 11px 28px;
  font-weight: 500;
  transition: background 0.16s, color 0.12s, box-shadow 0.15s;
  outline: none;
  box-shadow: 0 2px 8px rgba(41,38,33,0.05);
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #E94429;
  color: #fff;
  box-shadow: 0 4px 18px rgba(233,68,41,0.12);
}

/*--- NAVIGATION ---*/
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(41,38,33,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  height: 72px;
  position: relative;
}
.logo-link img {
  height: 46px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  padding: 7px 17px;
  border-radius: 999px;
  color: #2A6041;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.15s, color 0.1s;
}
.main-nav a.cta.primary {
  background: #E94429;
  color: #fff;
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
  background: #FFD9CF;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #2A6041;
  color: #fff;
}

/*--- MOBILE NAVIGATION ---*/
.mobile-menu-toggle {
  display: none;
  background: #2A6041;
  color: #fff;
  position: relative;
  font-size: 2.1rem;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  z-index: 111;
  margin-left: 8px;
  transition: background 0.14s, color 0.13s, box-shadow 0.1s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E94429;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF8F4;
  box-shadow: 0 8px 40px rgba(41,38,33,0.13);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.7,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  display: block;
  background: #E94429;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 14px;
  width: 48px; height: 48px;
  align-self: flex-end;
  margin: 24px 0 16px 0;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2A6041;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}
.mobile-nav a {
  font-size: 1.26rem;
  color: #2A6041;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 600;
  transition: background 0.17s, color 0.1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD9CF;
  color: #E94429;
}

/*--- FOOTER ---*/
footer {
  background: #2A6041;
  color: #fff;
  padding: 50px 0 25px 0;
  border-radius: 30px 30px 0 0;
  margin-top: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav ul {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 999px;
  transition: background 0.1s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e94429;
  color: #fff;
}
.legal-links {
  opacity: 0.59;
}
.footer-brand {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
}
.footer-brand img {
  width: 41px; height: 41px;
  border-radius: 12px;
  background: #fff;
  padding: 2px;
}
.footer-brand p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
}

/*--- LEGAL / TEXT SECTIONS ---*/
.legal {
  background: #FFF9F4;
  border-radius: 30px;
  padding: 40px 20px;
  margin-top: 36px;
  margin-bottom: 60px;
}
.text-section ul, .booking-info ul, .contact-details ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.text-section li, .booking-info li, .contact-details li {
  list-style-type: disc;
  font-size: 1rem;
  color: #2A6041;
  margin-bottom: 5px;
}

/*--- CONFIRMATION PAGE ---*/
.confirmation .container {
  text-align: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 48px 20px;
  box-shadow: 0 2px 16px 0 rgba(41, 38, 33, 0.08);
}
.next-steps {
  margin: 20px 0 24px 0;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.next-steps li {
  color: #2A6041;
  font-size: 1rem;
}

/*--- ACCESSIBILITY: HIGH CONTRAST FOR REVIEWS/TESTIMONIALS ---*/
.testimonials {
  background: #FFF0E8;
  border-radius: 28px;
  padding: 40px 20px 32px 20px;
}
.testimonials .container > h2 {
  color: #E94429;
  text-align: center;
  margin-bottom: 25px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 32px 0 rgba(41, 38, 33, 0.12);
  max-width: 410px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.15rem;
}

/*--- COOKIE CONSENT BANNER---*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #FFF8F4;
  color: #2A6041;
  box-shadow: 0 -4px 18px rgba(41,38,33,0.10);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 10px 22px 10px;
  gap: 30px;
  border-radius: 18px 18px 0 0;
  font-size: 1.03rem;
  animation: cookieIn 0.4s cubic-bezier(0.7,0,0.2,1);
}
@keyframes cookieIn {
  0% { transform: translateY(120%); opacity:0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  background: #E94429;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  margin: 0;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner button.cookie-settings {
  background: #2A6041;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #fff;
  color: #E94429;
  border: 1px solid #E94429;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2A6041;
  color: #fff;
}
/*--- COOKIE MODAL ---*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left:0; top:0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(30,12,9,.44);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal .32s ease;
}
@keyframes fadeInModal { 0%{opacity:0;} 100%{opacity: 1;} }
.cookie-modal {
  background: #FFFDF9;
  border-radius: 20px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 32px rgba(41,38,33,0.14);
  padding: 32px 20px 26px 20px;
  color: #2A6041;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalIn .33s cubic-bezier(0.6,0,0.2,1);
}
@keyframes cookieModalIn { 0%{transform: scale(0.85); opacity:0;} 100%{transform: scale(1); opacity: 1;} }
.cookie-modal h2 {
  font-size: 1.5rem;
  color: #E94429;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-right: 2px;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #2A6041;
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: #E94429;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.42rem;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #2A6041;
}
.cookie-modal-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/*--- RESPONSIVE: MOBILE FIRST ---*/
@media (max-width: 1023px) {
  .main-nav ul {
    gap: 11px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .features .feature-grid, .feature-grid,
  .content-grid, .steps-list, .step-list, .benefit-list, .event-list, .services-overview, .course-list, .testimonials .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
    max-width: 100vw;
  }
  .main-nav ul, .footer-nav ul {
    display: none;
  }
  .main-nav {
    padding: 0 7px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 20px;
  }
  .hero {
    padding: 38px 0 28px 0;
  }
  .section {
    margin-bottom: 35px;
    padding: 26px 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .booking-info, .contact-details, .text-section {
    padding: 19px 10px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.08rem; }
  .hero { padding: 24px 0 14px 0; }
  .cta { padding: 25px 4px 28px 4px; }
  .testimonials { padding: 20px 6px 18px 6px; }
  .section { padding: 20px 3px; margin-bottom: 21px; }
  .content-wrapper { gap: 10px; }
}

/*--- MISC/UTILITY ---*/
.gap-20 { gap: 20px; }
.rounded { border-radius: 18px; }
.shadow {
  box-shadow: 0 2px 15px rgba(41,38,33,0.09);
}
.bg-accent {
  background: #FFD9CF;
}
.text-center { text-align: center; }

/*--- CUSTOM SCROLLBAR for modern browsers ---*/
::-webkit-scrollbar {
  width: 13px;
  background: #FFD9CF;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #E94429;
  border-radius: 16px;
}
/* For Firefox */
* {
  scrollbar-color: #E94429 #FFD9CF;
  scrollbar-width: thin;
}

/*--- END OF CSS ---*/
