/* 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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* BRAND VARIABLES (WITH FALLBACKS FOR OLDER BROWSERS) */
:root {
  --color-primary: #1E3554;
  --color-secondary: #6DBE45;
  --color-accent: #F2F5FA;
  --color-text: #172337;
  --color-bg: #fff;
  --color-card-bg: #F2F5FA;
  --color-success: #31B237;
  --color-warning: #FBB900;
  --color-error: #E8695E;
  --color-shadow: rgba(30,53,84,0.08);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ROOT & BODY */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

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

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-primary);
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
}
p, li, .text-section {
  color: var(--color-text);
  font-size: 16px;
  font-family: var(--font-body);
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}

/* SPACING SYSTEM */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.text-section {
  margin-bottom: 24px;
  font-size: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card, .feature-item {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: var(--color-card-bg);
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px rgba(30,53,84,0.18);
  transform: translateY(-4px) scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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 28px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  max-width: 480px;
  min-width: 260px;
  color: #1e3554;
  border-left: 7px solid var(--color-secondary);
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(30,53,84,0.12);
  border-left: 7px solid var(--color-primary);
}
.testimonial-card .stars {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 4px;
}
.testimonial-card p {
  color: var(--color-text);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-author {
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
}

.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
}

.feature-item .price {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 16px;
  margin-top: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

ul li, ol li {
  margin-bottom: 10px;
  list-style: disc inside;
  font-size: 16px;
  color: var(--color-text);
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.trust-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.trust-points img {
  width: 24px;
  height: 24px;
}

/******** HEADER & NAVIGATION ******/
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 10px var(--color-shadow);
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav ul li a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  padding: 6px 0 6px 0;
  transition: color 0.15s;
  position: relative;
}
.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: var(--color-secondary);
}
.main-nav ul li a.active::after,
.main-nav ul li a:hover::after {
  display: block;
  content: '';
  height: 3px;
  width: 90%;
  background: var(--color-secondary);
  border-radius: 2px;
  position: absolute;
  left: 5%;
  bottom: -2px;
}

.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(109,190,69,0.12);
  transition: background 0.18s, transform 0.12s, box-shadow 0.13s;
  display: inline-block;
  margin-left: 18px;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  border: 2px solid var(--color-secondary);
}

/******** HEADER - MOBILE MENU ******/
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  color: var(--color-primary);
  background: none;
  border: none;
  margin-left: 18px;
  border-radius: 8px;
  padding: 4px 10px;
  line-height: 1;
  z-index: 99;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-card-bg);
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 53, 84, 0.96);
  z-index: 70;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.33s cubic-bezier(0.77,0,0.18,1);
  transform: translateX(100vw);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  font-size: 36px;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  z-index: 80;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 14px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 14px 32px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/********** HERO & SPECIAL SECTIONS ***********/
.hero {
  background: linear-gradient(120deg, #F2F5FA 60%, #fff 100%);
  padding: 64px 0 48px 0;
  border-bottom: 7px solid var(--color-secondary);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.hero p {
  font-size: 20px;
  color: var(--color-text);
  max-width: 650px;
  margin: 0 auto 18px auto;
}

.cta {
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 60px;
  padding: 30px 14px;
  text-align: center;
}
.cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.contact-highlight {
  margin-top: 16px;
  color: var(--color-text);
  font-weight: 500;
  background: #e9fce4;
  border-radius: 8px;
  display: inline-block;
  padding: 8px 24px;
  font-size: 16px;
}

/******** WORKSHOPS PAGE ********/
.workshops-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 58px 0 34px 0;
}
.workshops-hero h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}
.workshops-overview ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.workshops-overview li {
  background: var(--color-accent);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 17px;
  color: var(--color-primary);
  font-weight: 600;
}
.workshops-overview li a {
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: underline;
}

/******** RESOURCES PAGE ********/
.resources-list ul, .tools ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resources-list li, .tools li {
  background: #F2F5FA;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 16px;
}
.resources-list a, .tools a {
  color: var(--color-primary);
  font-weight: 700;
  transition: color 0.16s;
}
.resources-list a:hover, .tools a:hover {
  color: var(--color-secondary);
}
.faq-teaser {
  margin-top: 20px;
  font-size: 16px;
  color: var(--color-secondary);
  font-weight: 700;
}
.faq-teaser a {
  color: var(--color-primary);
  text-decoration: underline;
}

/******** FAQ ACCORDION *******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  border-radius: 10px;
  background: var(--color-card-bg);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 18px 22px;
}
.faq-item h2 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 800;
}
.faq-item div {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
}
.faq-item a {
  color: var(--color-secondary);
  font-weight: 700;
  transition: color 0.14s;
}
.faq-item a:hover {
  color: var(--color-primary);
}

/******** FOOTER *******/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 44px 0 16px 0;
  margin-top: 50px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 36px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.88;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.footer-contact {
  font-size: 15px;
  font-weight: 400;
  color: #e9e9e9;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 10px;
}
@media (max-width: 900px) {
  .footer-wrapper { flex-direction: column; gap: 24px; align-items: flex-start; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: #fff;
  border-top: 4px solid var(--color-secondary);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  max-width: 100vw;
  animation: cookieFadeIn 0.6s 0.1s cubic-bezier(0.53,1,0.77,1) both;
}
@keyframes cookieFadeIn { from { opacity: 0; transform: translateY(50px);} to { opacity: 1; transform: none; } }
.cookie-banner-text {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  max-width: 620px;
}
.cookie-btn,
.cookie-settings-btn {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 8px 28px;
  margin: 0 6px;
  border: none;
  box-shadow: 0 0.5px 6px var(--color-shadow);
  transition: background 0.14s, color 0.14s, box-shadow 0.12s, transform 0.15s;
}
.cookie-btn:focus, .cookie-btn:hover,
.cookie-settings-btn:focus, .cookie-settings-btn:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 10px var(--color-shadow);
  transform: translateY(-2px) scale(1.03);
}
.cookie-reject-btn {
  background: none;
  color: var(--color-primary);
  border-radius: 40px;
  font-size: 16px;
  font-weight: 800;
  border: 2px solid var(--color-primary);
  padding: 8px 28px;
  margin: 0 6px;
  font-family: var(--font-display);
  transition: background 0.14s, color 0.14s, border-color 0.14s, transform 0.16s;
}
.cookie-reject-btn:focus, .cookie-reject-btn:hover {
  background: var(--color-error);
  color: #fff;
  border-color: var(--color-error);
  transform: translateY(-2px) scale(1.02);
}

/* Cookie Consent Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background:rgba(30,53,84,0.72);
  z-index: 130;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalFadeIn 0.45s cubic-bezier(0.53,1,0.77,1) both;
}
@keyframes cookieModalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 60px rgba(30,53,84,.18);
  min-width: 350px;
  max-width: 94vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieSlideUp 0.32s cubic-bezier(0.53,1,0.77,1) both;
}
@keyframes cookieSlideUp { from { transform: translateY(80px);} to { transform: none; } }
.cookie-modal-title {
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-cat label {
  margin-left: 12px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
}
.cookie-cat input[type='checkbox'] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--color-primary);
  font-size: 30px;
}

/********** RESPONSIVE DESIGN **********/
@media (max-width: 1200px) {
  .container { max-width: 98vw; padding: 0 6vw; }
}
@media (max-width: 992px) {
  .main-nav ul { gap: 16px; }
  .content-wrapper { gap: 16px; }
  .features-grid { gap: 16px; }
  .footer-wrapper { gap: 24px; }
}
@media (max-width: 900px) {
  .footer-wrapper { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .content-grid, .features-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 30px;
    padding: 24px 8px;
  }
  .hero {
    padding: 48px 0 22px 0;
  }
  .hero h1 { font-size: 27px; }
  .hero p { font-size: 16px; }
  .cta h2 { font-size: 20px; }
  .card, .feature-item { padding: 19px 12px; min-width: 0; }
  .testimonial-card { padding: 16px 10px; font-size: 15px; }
  .footer-wrapper { flex-direction: column; gap: 20px; }
}
@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .cta-btn { margin-left: 4px; font-size: 17px; }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .hero .content-wrapper { gap: 16px; }
  .footer-wrapper, .container { padding: 0 8px; }
  .section { padding: 16px 2px; }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 16px 6px; }
  .cookie-modal-content { min-width: 75vw; padding: 18px 5vw 12px 5vw; }
}

/*********** FOCUS STATES ***********/
a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
  outline: 3px dashed var(--color-secondary);
  outline-offset: 2px;
}

/********* UTILITY CLASSES *********/
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.bold { font-weight: 700 !important; }

/*****************
 * END OF STYLES *
 *****************/
