/* --- CSS RESET & BASES --- */
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 {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #125E4B;
  background: #F2EFEA;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #125E4B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3A8571;
}
ul, ol {
  list-style: none;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  color: #125E4B;
  margin-bottom: 24px;
  line-height: 1.12;
}
h2 {
  font-size: 1.6rem;
  color: #3A8571;
  margin-bottom: 20px;
  line-height: 1.16;
}
h3 {
  font-size: 1.18rem;
  color: #199B7A;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.18rem;
  color: #3A8571;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
p {
  margin-bottom: 18px;
  color: #25413A;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: #125E4B;
}

/* --- CONTAINERS --- */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 14px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  margin: 0;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  background: #fff9f3;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(58, 133, 113, 0.11);
  padding: 38px 26px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 32px 7px;
  }
  .text-section {
    padding: 24px 5px;
  }
}

/* --- FLEX LAYOUTS --- */
.card-container, .service-cards, .testimonial-cards, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(58,133,113,0.09);
  padding: 26px 18px 18px 18px;
  transition: box-shadow 0.18s, transform 0.18s;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(17, 94, 75, 0.09);
  width: 100%;
  z-index: 20;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 16px 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav li {
  list-style: none;
}
.logo-link {
  margin-right: 14px;
  display: flex;
  align-items: center;
}
.main-nav a.button {
  margin-left: 18px;
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 14px;
  }
  .main-nav a.button {
    margin-left: 6px;
  }
}

/* Hide nav on mobile, burger setup */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #3A8571;
  color: #fff;
  padding: 6px 18px 5px 13px;
  border-radius: 8px;
  z-index: 102;
  border: none;
}
@media (max-width: 900px) {
  .main-nav ul, .main-nav a.button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 10px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 32px rgba(18,94,75,0.15);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.9,.2,.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 14px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 6px 24px 14px 0;
  font-size: 2.1rem;
  background: #f2efe9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #125E4B;
  transition: background 0.17s;
  border: none;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #7CC6B0;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #125E4B;
  padding: 12px 0;
  text-align: left;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7CC6B0;
  color: #fff;
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- BUTTONS, LINKS & CTAs --- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 32px 13px 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.12;
  border: none;
  transition: background 0.2s, color 0.18s, transform .15s;
  box-shadow: 0 2px 8px rgba(122,198,176,0.13);
  margin: 12px 8px 12px 0;
  cursor: pointer;
  outline: none;
}
.button.primary {
  background: #7CC6B0;
  color: #fff;
  border: 2px solid #3A8571;
}
.button.primary:hover, .button.primary:focus {
  background: #125E4B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.button.secondary {
  background: #fff;
  color: #125E4B;
  border: 2px solid #7CC6B0;
}
.button.secondary:hover, .button.secondary:focus {
  background: #3A8571;
  color: #fff;
  border-color: #125E4B;
  transform: translateY(-2px) scale(1.04);
}
.link-more {
  color: #199B7A;
  font-weight: bold;
  border-bottom: 2px solid #199B7A;
  transition: color 0.15s, border-color 0.18s;
  margin-top: 18px;
}
.link-more:hover, .link-more:focus {
  color: #125E4B;
  border-color: #125E4B;
}

/* --- LISTS WITH ICONS --- */
.feature-list, .benefits-icons, .benefits-list, .benefits-summary, .audience-list, .schedule-overview, .session-schedule, .workshop-session-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 28px 0;
}
.feature-list li, .benefits-icons li, .benefits-list li, .icon-item, .audience-list li, .workshop-session-list li, .session-schedule li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(122,198,176,0.13);
  gap: 9px;
  padding: 22px 16px 16px 16px;
  min-width: 180px;
  max-width: 260px;
}
.feature-list img, .benefits-icons img, .benefits-list img, .icon-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .feature-list, .benefits-icons, .benefits-list, .audience-list, .workshop-session-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-list li, .benefits-icons li, .benefits-list li, .icon-item, .audience-list li, .workshop-session-list li {
    min-width: 80px;
    max-width: 100%;
  }
}

.step-list {
  margin: 0 0 24px 0;
  padding-left: 1.2em;
}
.step-list li {
  font-size: 1rem;
  margin-bottom: 7px;
  color: #146454;
  position: relative;
  padding-left: 0.8em;
}

/* --- SERVICE CARDS --- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}
.service-card {
  background: #fff;
  box-shadow: 0 2px 13px rgba(18,94,75,0.07);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 24px 24px;
  flex: 1 1 250px;
  max-width: 290px;
  min-width: 180px;
  transition: transform .12s, box-shadow .16s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 20px -3px #7cc6b066;
  transform: translateY(-5px) scale(1.03) rotate(-1.1deg);
}
.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7CC6B0;
  margin-top: 8px;
  letter-spacing: 0.03em;
  padding-bottom: 2px;
}
@media (max-width: 1000px) {
  .service-cards {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .service-cards, .testimonial-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .service-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 2px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F2EFEA;
  border-radius: 16px;
  padding: 20px 27px 20px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 360px;
  box-shadow: 0 3px 13px -5px #3a857122;
  transition: box-shadow 0.13s, transform .12s;
  border: 1.5px solid #e5edea;
  color: #10241c;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 9px 28px -4px #7cc6b080;
  transform: translateY(-2px) scale(1.035);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #125E4B;
  font-style: italic;
  margin: 0 0 8px 0;
}
.testimonial-identity {
  font-size: 0.98rem;
  color: #206557;
  font-weight: 500;
}
@media (max-width: 600px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- FOOTER --- */
footer {
  background: #125E4B;
  color: #fff;
  width: 100%;
}
.footer-main {
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 12px 22px 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1.5px solid #145E4B60;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #7CC6B0;
  font-size: 1.02rem;
  margin-bottom: 2px;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-mini-contact span {
  display: block;
  margin-bottom: 2px;
  color: #EEFFEF;
}
.footer-social img {
  width: 54px;
  margin-top: 6px;
}
.footer-sub {
  text-align: center;
  color: #cce1db;
  font-size: 0.9rem;
  padding: 13px 0;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  color: #2b4c44;
  box-shadow: 0 -3px 10px #3a857133;
  padding: 26px 14px 18px 14px;
  border-radius: 14px 14px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 1200;
  animation: slideup-cb 0.35s ease;
}
@keyframes slideup-cb {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  font-size: 1.05rem;
  text-align: center;
  max-width: 680px;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button, .cookie-banner .button {
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.17s, color 0.16s;
  cursor: pointer;
}
.cookie-accept {
  background: #7CC6B0;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #125E4B;
}
.cookie-reject {
  background: #e2e2e2;
  color: #125E4B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f2efe9;
  color: #3A8571;
}
.cookie-settings {
  background: #fff;
  color: #3A8571;
  border: 2px solid #3A8571;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #7CC6B0;
  color: #fff;
}
@media (max-width: 520px) {
  .cookie-banner{
    padding: 14px 6px;
    border-radius: 8px 8px 0 0;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Preference Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #145e4bee;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .2s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 7px 38px 0 #3a857122;
  padding: 32px 18px 22px;
  max-width: 410px;
  width: 94vw;
  color: #125E4B;
  position: relative;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeCookieModal .23s;
}
@keyframes fadeCookieModal {
  from { transform: scale(.95); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #13846a;
}
.cookie-category input[type="checkbox"] {
  accent-color: #7CC6B0;
  width: 22px; height: 22px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .button {
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 13px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #199B7A;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #125E4B;
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px;
  border-radius: 8px;
  border: 1.2px solid #c2ded8;
  background: #fff;
  resize: vertical;
  transition: border-color 0.16s;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #7CC6B0;
  outline: none;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.button, .service-card, .testimonial-card, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, background 0.16s, color 0.13s, transform 0.16s;
}
.button:active {
  transform: scale(0.97);
}
.service-card, .testimonial-card {
  will-change: transform, box-shadow;
}

/* --- UTILITY CLASSES --- */
.centered {
  text-align: center !important;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-16 { margin-top: 16px !important; }
.gap-20 { gap: 20px !important; }

/* --- GENERAL MEDIA QUERIES RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 5px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
}

/* --- PLAYFUL/ENERGETIC VISUALS --- */
.button, .service-card, .testimonial-card {
  /* Colorful playful micro-shadow pop */
  box-shadow: 0 4px 16px -2px #7cc6b033, 0 1px 1.2px -1px #3a857111;
}
.button.primary {
  /* Subtle fun bounce anim */
  animation: button-bounce 2.3s infinite linear alternate-reverse 0.4s;
}
@keyframes button-bounce {
  0% { transform: translateY(0); }
  62% { transform: translateY(0); }
  70% { transform: translateY(-2.5px) scale(1.02); }
  90% { transform: translateY(1.5px) scale(0.99); }
  100% { transform: translateY(0); }
}
.service-card:hover, .service-card:focus-within {
  animation: hover-pop 0.38s cubic-bezier(.5,1.4,.8,1) 1;
}
@keyframes hover-pop {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(-3deg); }
  100% { transform: scale(1.03) rotate(-1.1deg); }
}

/* --- COLORFUL BADGES & SEPARATORS --- */
.service-price, .testimonial-identity {
  /* Color sticker underline */
  border-bottom: 2.3px solid #7CC6B0;
  padding-bottom: 2px;
}
.service-card h3:after, .feature-list li h3:after {
  content: '☀';
  color: #7CC6B0;
  margin-left: 0.6em;
  font-size: 0.85em;
}

/* --- SCROLLBAR STYLING --- */
body::-webkit-scrollbar {
  width: 12px;
  background: #e5edea;
}
body::-webkit-scrollbar-thumb {
  background: #7CC6B0;
  border-radius: 8px;
}

/* --- MISCELLANEOUS --- */
::selection { background: #7CC6B0; color: #fff; }

/* Fix for z-index layering for overlays */
.mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: 99999; }

/* --- END --- */
