/* 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,
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F3F2ED;
  color: #2B5D44;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #2B5D44;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #A3C6A2;
  outline: none;
}
ul, ol { list-style: none; padding: 0; }

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2B5D44;
  font-weight: bold;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-size: 1.125rem; }
p, li, span { font-family: 'Open Sans', Arial, Helvetica, sans-serif; }

/* CONTAINERS & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(43,93,68,0.07);
}
@media (max-width: 600px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* FLEXBOX UTILITIES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(43,93,68,0.08);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(43,93,68,0.14);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(43,93,68,0.10);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 0;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(43,93,68,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX-BASED FEATURE/GRID LAYOUTS */
.feature-grid, .course-list-grid, .service-overview, .course-comparison, .testimonials-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div,
.course-list-grid > div,
.service-overview > div,
.course-comparison > div,
.testimonials-list > .testimonial-card,
.faq-list > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(43,93,68,0.09);
  padding: 20px 18px;
  margin-bottom: 0;
  min-width: 0;
}
@media (max-width: 800px) {
  .feature-grid, .course-list-grid, .service-overview, .course-comparison, .testimonials-list, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div,
  .course-list-grid > div,
  .service-overview > div,
  .course-comparison > div,
  .testimonials-list > .testimonial-card,
  .faq-list > div {
    width: 100%;
    min-width: 0;
    padding: 16px;
  }
}

.text-section {
  margin-bottom: 12px;
  padding: 0;
  font-size: 1.04rem;
}
.core-values-list ul,
.feature-list,
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.core-values-list li,
.feature-list li,
.benefit-icons li {
  background: #F3F2ED;
  border-radius: 15px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2B5D44;
  font-size: 1rem;
  min-width: 170px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(100deg, #F3F2ED 75%, #A3C6A2 100%);
  border-radius: 0 0 32px 32px;
  padding: 54px 0 26px;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #2B5D44;
}
.subheadline {
  font-size: 1.25rem;
  color: #4F7059;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .hero { padding: 28px 0 12px; border-radius: 0 0 14px 14px; }
  .hero h1 { font-size: 1.8rem; }
}

/* BUTTONS */
.cta-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #2B5D44;
  color: #fff;
  border: none;
  border-radius: 48px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(43,93,68,0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  margin-top: 16px;
}
.cta-btn.secondary, .btn.secondary {
  background: #A3C6A2;
  color: #2B5D44;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus {
  background: #204430;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 24px rgba(43,93,68,0.19);
  outline: none;
}
.cta-btn.secondary:hover, .btn.secondary:hover {
  background: #2B5D44;
  color: #fff;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 12px rgba(43,93,68,0.07);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2B5D44;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A3C6A2;
  color: #fff;
}
header img {
  height: 36px;
  margin-right: 18px;
  border-radius: 0;
}

/* BURGER MENU (MOBILE NAVIGATION) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1200;
  background: #A3C6A2;
  color: #2B5D44;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(43,93,68,0.12);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #2B5D44;
  color: #fff;
}
@media (max-width: 1050px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.63,.15,.17,.98);
  box-shadow: 0 6px 48px rgba(43,93,68,0.17);
  padding: 30px 24px 16px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #A3C6A2;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(43,93,68,0.12);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #2B5D44; color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #2B5D44;
  background: #F3F2ED;
  padding: 14px 18px;
  border-radius: 18px;
  margin-bottom: 2px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3C6A2;
  color: #fff;
  transform: scale(1.04);
}

@media (min-width: 1050px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #2B5D44;
  color: #fff;
  font-size: 1rem;
  margin-top: 36px;
  padding: 0;
}
footer .container {
  padding: 0 16px 0 16px;
}
.footer-contact,
.footer-nav,
.footer-social,
.footer-brand {
  margin-bottom: 16px;
}
.footer-contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #fff;
  padding: 5px 0;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  background: rgba(255,255,255,0.05);
  padding: 9px 14px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #A3C6A2; color: #2B5D44;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  transition: background 0.16s,
    filter 0.18s;
}
.footer-social a:hover img {
  background: #A3C6A2;
  filter: brightness(1.18);
}
.footer-brand span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  opacity: 0.91;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
@media (max-width:700px) {
  .footer-contact ul,.footer-nav { flex-direction: column; gap: 8px; }
  footer .container { padding: 0 2px 0 2px; }
}

/* TABLES & FAQ */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(43,93,68,0.08);
  margin-bottom: 28px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 14px 10px;
  text-align: left;
  font-size: 1.07rem;
}
.price-table tr:nth-child(odd) {
  background: #F3F2ED;
}
.price-table th {
  background: #A3C6A2;
  color: #2B5D44; font-weight: bold;
}

.faq-list {
  gap: 20px;
  margin-bottom: 16px;
}
.faq-list > div {
  background: #F3F2ED;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(43,93,68,0.07);
  padding: 18px 14px;
}

@media (max-width: 700px) {
  .faq-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* HIGHLIGHTS / INFORMATION BOXES */
.highlight {
  background: #A3C6A2;
  color: #2B5D44;
  border-radius: 16px;
  padding: 22px 19px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(43,93,68,0.10);
}
.highlight h2 {
  color: #2B5D44;
  font-size: 1.3rem;
  margin-bottom: 7px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F3F2ED;
  border-radius: 20px;
  padding: 14px 24px;
  margin-top: 12px;
  font-size: 1.08rem;
  color: #2B5D44;
}

.contact-shortform-info ul,
.contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding-top: 12px;
}
.contact-shortform-info li,
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
}

/*************************
RESPONSIVENESS
*************************/
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 14px; }
  footer .container { padding: 0 8px; }
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .service-overview, .course-comparison, .course-list-grid,.testimonials-list { flex-direction: column !important; }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 20px;
  }
  .container { padding: 0 5px; }
}
@media (max-width:600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .card, .feature-grid > div, .course-list-grid > div, .highlight, .faq-list > div { padding: 12px 6px; border-radius: 12px; }
}

/* TESTIMONIALS: ALWAYS HIGH CONTRAST */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  color: #2B5D44;
  background: #fff;
  font-size: 1.08rem;
  box-shadow: 0 4px 16px rgba(43,93,68,0.12);
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #A3C6A2;
  font-weight: 500;
}
.testimonial-card p {
  font-style: italic;
  margin-right: 6px;
  color: #2B5D44;
}

/***********************
COOKIE CONSENT BANNER
***********************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3000;
  background: #fff;
  color: #2B5D44;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 18px 32px 18px 32px;
  box-shadow: 0 -4px 24px rgba(43,93,68,0.12);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  animation: banner-slideup 0.42s cubic-bezier(.34,.73,.69,.75) 1;
  font-size: 1.08rem;
}
@keyframes banner-slideup {
  0%   { transform: translateY(100%); opacity: 0; }
  70%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.22s, transform 0.21s;
}
.cookie-banner .cookie-btn {
  margin-left: 15px;
  padding: 8px 20px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: #2B5D44;
  color: #fff;
  box-shadow: 0 1px 4px rgba(43,93,68,0.10);
  font-weight: 600;
  transition: background 0.16s;
}
.cookie-banner .cookie-btn.secondary {
  background: #A3C6A2;
  color: #2B5D44;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #204430;
  color: #fff;
}
.cookie-banner .cookie-btn.secondary:hover,
.cookie-banner .cookie-btn.secondary:focus {
  background: #2B5D44;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 10px; border-radius: 14px 14px 0 0; padding: 12px 6px; }
}

/***********************
COOKIE MODAL POPUP
***********************/
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4000;
  background: rgba(43,93,68,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #2B5D44;
  border-radius: 22px;
  box-shadow: 0 8px 50px rgba(43,93,68,0.18);
  padding: 34px 32px 24px 32px;
  min-width: 320px; max-width: 94vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-open 0.27s cubic-bezier(.31,.65,.71,.71) 1;
}
@keyframes modal-open {
  0% { transform: scale(0.9); opacity: 0; }
  100%{ transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-modal .category-row label {
  font-weight: bold;
  font-size: 1.08rem;
  color: #2B5D44;
}
.cookie-modal .category-row .toggle {
  margin-left: auto;
}
.cookie-modal .toggle {
  width: 48px; height: 24px;
  background: #A3C6A2;
  border-radius: 12px;
  position: relative;
  transition: background 0.19s;
  display: inline-block;
}
.cookie-modal .toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 3px rgba(43,93,68,0.12);
}
.cookie-modal .toggle input:checked + .slider {
  left: 26px;
  background: #2B5D44;
}
.cookie-modal .toggle.disabled {
  opacity: .65;
  background: #eee !important;
}
.cookie-modal .toggle.disabled .slider {
  background: #fafafa !important;
}
.cookie-modal .modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .cookie-btn {
  margin: 0;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #2B5D44;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover { color: #A3C6A2; }

/***********************
MICRO-INTERACTIONS
***********************/
.card, .testimonial-card, .faq-list > div, .feature-grid > div, .course-list-grid > div, .highlight {
  transition: box-shadow 0.20s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .faq-list > div:hover, .course-list-grid > div:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 8px 32px rgba(43,93,68,0.13);
}

/**********************
MISC: UTILITY CLASSES
**********************/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/**********************
ACCESSIBILITY IMPROVEMENTS
**********************/
:focus-visible {
  outline: 2px solid #A3C6A2;
  outline-offset: 2px;
  z-index: 999;
}

/***********************
END OF MAIN CSS
***********************/