/* === LucidSnap Forest - Geometric Structured CSS Theme === */
/* RESET & BASE STYLES =========================================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F1EFE7;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1EFE7;
  color: #17413B;
  min-height: 100vh;
  line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #17413B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #6DA06E;
}

ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17413B;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.1rem;
}
p, .subheadline {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 1em;
  color: #17413B;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 3px solid #17413B;
  padding: 0;
  width: 100%;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
header img {
  height: 42px;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #17413B;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #6DA06E;
  color: #fff;
}
.cta-btn {
  background: #17413B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  text-transform: uppercase;
  padding: 11px 28px;
  margin-left: 22px;
  font-size: 1.08rem;
  box-shadow: 0 3px 14px rgba(24,64,56,0.08);
  cursor: pointer;
  transition: background 0.15s, transform 0.14s, box-shadow 0.15s;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #6DA06E;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 24px rgba(24,64,56,0.10);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #17413B;
  padding: 9px 14px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F1EFE7;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1201;
  background: #17413B;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.64,.02,.61,.98);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  margin: 22px 26px 0 0;
  cursor: pointer;
  z-index: 1;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6DA06E;
}
.mobile-nav {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.03em;
  padding: 12px 0;
  width: 94%;
  text-align: left;
  border-radius: 12px;
  transition: background 0.22s, color 0.18s;
  margin-bottom: 4px;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6DA06E;
  color: #17413B;
}

/* --- HERO / MAIN BANNER --- */
.hero {
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  background: #ACCDB3 linear-gradient(90deg, #F1EFE7 76%, #6DA06E 100%);
  border-bottom: 5px solid #17413B;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #17413B;
}
.hero .subheadline {
  font-size: 1.18rem;
  margin-bottom: 0.5em;
  color: #17413B;
  opacity: 0.92;
}

/* --- FLEX STRUCTURED LAYOUTS, CARDS & SECTIONS --- */
.feature-grid, .course-categories .feature-grid, .course-features .feature-grid, .compare-benefits .feature-grid, .why-trust-us .feature-grid, .pricing-tables .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  border: 2.5px solid #17413B;
  box-shadow: 0 2px 18px rgba(23,65,59,0.10), 0 0px 0px 1px #E8E8E8;
  padding: 28px 22px 22px 22px;
  min-width: 235px;
  max-width: 340px;
  flex: 1 1 235px;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.17rem;
  color: #17413B;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item p {
  font-size: 1rem;
  color: #17413B;
  opacity: 0.93;
}
.feature-item:hover {
  box-shadow: 0 5px 28px rgba(23,65,59,0.14), 0 0px 0px 1.5px #6DA06E;
  transform: translateY(-5px) scale(1.022);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 0;
  box-shadow: 0 6px 20px rgba(23, 65, 59, 0.08);
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px 18px 22px;
  background: #FAFAFA;
  border-radius: 14px;
  border: 2px solid #17413B;
  box-shadow: 0 2px 10px rgba(23,65,59,0.11);
  min-width: 245px;
  max-width: 380px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.testimonial-card .stars {
  color: #6DA06E;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  color: #17413B;
  font-size: 1rem;
}
.testimonial-card .author {
  font-size: 0.99rem;
  color: #6DA06E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}

/* CTA Section */
.cta {
  background: #F1EFE7;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 21px;
  width: 100%;
}
.cta h2 {
  font-size: 1.7rem;
  color: #17413B;
  text-align: center;
}
.cta .cta-btn {
  margin: 0 auto;
  display: block;
}

/* --- FOOTER --- */
footer {
  background: #17413B;
  color: #fff;
  padding: 40px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.97;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6DA06E;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.99rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-copy {
  margin-top: 20px;
  color: #b7e2bb;
  font-size: 0.92rem;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  border: 2px solid #6DA06E;
  padding: 20px 26px 16px 22px;
  box-shadow: 0 2px 8px rgba(109, 160, 110, 0.08);
  margin-bottom: 16px;
  cursor: pointer;
  transition: box-shadow 0.16s, border-color 0.17s;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #17413B;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item.open h3,
.faq-item:focus h3,
.faq-item:hover h3 {
  color: #6DA06E;
}
.faq-item .text-section {
  color: #17413B;
  font-size: 1rem;
  margin-top: 6px;
}

/* --- CONTENT UTILITY CLASSES --- */
.text-section {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #17413B;
}
.team-highlight {
  margin-top: 22px;
}
ul.next-steps, .text-section ul, .text-section ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
  padding-left: 0;
  color: #17413B;
}
.text-section ul li, .text-section ol li, ul.next-steps li {
  margin-bottom: 9px;
  list-style-type: geometricPrecision; /* Fallback: disc */
}
ol.step-list li {
  margin-bottom: 10px;
  margin-left: 1em;
  font-size: 1rem;
}
.legal-section h2 {
  font-size: 1.15rem;
  margin-top: 28px;
  color: #17413B;
}
.legal-section .text-section p, .legal-section .text-section ul, .legal-section .text-section li {
  font-size: 1rem;
  color: #17413B;
}

/* --- SPECIAL CASE: THANK YOU --- */
.thank-you {
  margin-top: 56px;
  margin-bottom: 68px;
  padding: 48px 0 32px 0;
  background: #fff;
  border-radius: 17px;
  border: 2px solid #6DA06E;
  box-shadow: 0 2px 14px rgba(109,160,110,0.06);
}
.thank-you h1 {
  font-size: 2.1rem;
  color: #17413B;
}
.thank-you .cta-btn {
  margin-top: 24px;
}

/* --- SECTIONS & LAYOUT GAPS --- */
.features, .course-features, .compare-benefits, .why-trust-us, .about-mission, .faq-list, .contact-info, .contact-faq {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { 
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 18px rgba(23,65,59,0.11);
  border: 2px solid #17413B;
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(23,65,59,0.15);
}
.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;
}

/* --- BUTTONS --- */
button, .cta-btn {
  cursor: pointer;
  user-select: none;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #6DA06E;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-btn,
.card,
.feature-item,
.testimonial-card,
.faq-item,
.mobile-menu,
.mobile-nav a {
  transition: 
    background 0.22s, 
    color 0.22s, 
    transform 0.16s, 
    box-shadow 0.20s;
}
.cta-btn:active {
  transform: scale(0.99);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #17413B;
  color: #fff;
  z-index: 1401;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 19px 30px 21px 30px;
  font-size: 1rem;
  box-shadow: 0 -2px 16px rgba(23,65,59,0.13);
  animation: cookieBannerAppear 0.5s ease;
}
@keyframes cookieBannerAppear {
  from {transform: translateY(120%);} to {transform: translateY(0);}
}
.cookie-banner p {
  color: #fff;
  margin: 0 15px 0 0;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  background: #6DA06E;
  color: #17413B;
  border: none;
  border-radius: 10px;
  padding: 8px 19px;
  margin-right: 11px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.18s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #17413B;
  outline: 2px solid #6DA06E;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  border: 2px solid #6DA06E;
  color: #6DA06E;
  padding: 8px 16px;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  margin-left: 6px;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #6DA06E;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,65,59,0.64);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: #fff;
  color: #17413B;
  border-radius: 18px;
  box-shadow: 0 0 24px 6px rgba(23,65,59,0.10);
  max-width: 430px;
  padding: 38px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: popInCookieModal 0.26s cubic-bezier(.51,.8,.34,.99);
}
@keyframes popInCookieModal {
  from {transform:scale(0.92); opacity:0.2;} to {transform:scale(1); opacity:1;}
}
.cookie-modal h3 {
  margin-bottom: 13px;
  color: #17413B;
  font-size: 1.17rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 16px;
  background: #6DA06E;
  outline: none;
  cursor: pointer;
  position: relative;
  border: none;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: #17413B;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 2.5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 16px;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .cookie-btn-row button {
  padding: 8px 22px;
}
.cookie-modal .cookie-close-btn {
  background: none;
  border: none;
  position: absolute;
  top: 14px; right: 14px;
  font-size: 1.5rem;
  color: #17413B;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-close-btn:hover, .cookie-modal .cookie-close-btn:focus {
  color: #6DA06E;
}

/* --- RESPONSIVE LAYOUT RULES --- */
@media (max-width: 1200px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 990px) {
  .feature-grid, .course-categories .feature-grid, .course-features .feature-grid, .compare-benefits .feature-grid, .why-trust-us .feature-grid, .pricing-tables .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 780px) {
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .card-container, .testimonial-slider, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .hero {
    padding: 36px 0 23px 0;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  .section, .features, .course-features, .compare-benefits, .why-trust-us, .about-mission, .faq-list, .contact-info, .contact-faq, .cta {
    padding: 28px 5px;
    margin-bottom: 38px;
  }
  .card, .feature-item, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 13px 15px 13px;
  }
  .thank-you {
    padding: 28px 4px 22px 4px;
    margin-top: 25px;
    margin-bottom: 35px;
  }
  .content-wrapper {
    gap: 12px;
  }
}
@media (max-width: 568px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 0.98rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    font-size: 0.97rem;
    padding: 11px 7px 13px 7px;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 16px 8px;
  }
}
