/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(120deg, #f2fff9 0%, #e6f1f2 100%);
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  transition: background 0.6s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 20px;
}
a {
  color: #156064;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0b3e42;
  text-decoration: underline;
}
strong, b {
  font-weight: 600;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #156064;
  font-weight: 700;
  line-height: 1.12;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p { font-size: 1rem; margin-bottom: 16px; }

/* CONTAINER & SECTION LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(100deg, #f2fff9 55%, #e9f5f6 100%);
  border-radius: 18px;
  box-shadow: 0 6px 18px 0 rgba(22,80,84,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
/* HERO SECTIONS */
.hero, .blog-hero {
  background: linear-gradient(120deg, #d3f6f5 0%, #f8e16c 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 32px 0 rgba(22,96,100,0.07);
  margin-bottom: 48px;
  padding: 56px 0 32px 0;
}
.hero h1, .blog-hero h1 {
  color: #156064;
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.hero p, .blog-hero p {
  font-size: 1.18rem;
  color: #214552;
  margin-bottom: 24px;
}
.hero .btn-primary {
  margin-top: 8px;
}

/* FLEXBOX GRIDS & WRAPPERS */
.feature-grid, .services-overview, .services-list, .post-preview-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.post-preview-grid {
  gap: 24px;
  margin-bottom: 18px;
}

.feature-item, .service-card, .post-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(22,96,100,0.06);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #eaeff0;
}
.feature-item:hover, .service-card:hover, .post-preview:hover {
  box-shadow: 0 14px 36px 0 rgba(22,96,100,0.11);
  transform: translateY(-7px) scale(1.025);
  z-index: 2;
}
.post-preview .tag {
  display: inline-block;
  background: #f8e16c;
  color: #214552;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 2px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 0;
}

.services-overview, .services-list {
  gap: 24px;
}
.service-card .price {
  font-size: 1rem;
  font-weight: 600;
  color: #156064;
  background: #f8e16c;
  border-radius: 6px;
  padding: 3px 12px;
  margin-top: 8px;
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(22,96,100,0.04);
}
.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;
}

/* VALUE & TOOL LISTS, FAQ */
.value-list, .benefit-list, .tool-list, .faq-list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-list li, .benefit-list li, .tool-list li, .faq-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f6faf7;
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 1.09rem;
  box-shadow: 0 2px 12px 0 rgba(21,96,100,0.03);
}
.value-list img, .benefit-list img, .tool-list img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px 0 rgba(21,96,100,0.13);
  min-width: 220px;
  flex: 1 1 260px;
  border: 1px solid #eaeff0;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 20px 36px 0 rgba(21,96,100,0.18);
  transform: translateY(-4px) scale(1.019);
}
.testimonial-card p {
  color: #2e363a;
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-style: italic;
}
.client-name {
  color: #156064;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  appearance: none;
  border: none;
  outline: none;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 3px 18px 0 rgba(21,96,100,0.06);
  text-align: center;
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s, transform 0.16s;
}
.btn-primary {
  background: linear-gradient(90deg, #156064 60%, #24b5a5 100%);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #194e4c 60%, #177e86 100%);
  color: #fff;
  transform: scale(1.045);
}
.btn-secondary {
  background: #f8e16c;
  color: #214552;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffe254;
  color: #156064;
  transform: scale(1.045);
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 12px 0 rgba(21,96,100,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  width: 128px;
  height: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  color: #214552;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background .12s, color .12s;
}
header nav a:hover, header nav a:focus {
  background: #f8e16c;
  color: #156064;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #156064;
  cursor: pointer;
  margin-left: 12px;
}
.btn-primary {
  margin-left: 20px;
  text-decoration: none;
  min-width: 150px;
}
/* FOOTER */
footer {
  background: linear-gradient(90deg, #156064 90%, #24b5a5 100%);
  color: #fff;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 20px 12px 20px;
}
.footer-top {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 6px;
}
.footer-top .logo img {
  width: 58px;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer nav a {
  color: #fffbb1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #f8e16c;
}
.footer-bottom {
  display: flex;
  align-items: center;
  margin-top: 10px;
  border-top: 1px solid #24b5a5;
  padding-top: 14px;
  font-size: 0.93rem;
  color: #e3e3e3;
}

/* CTA SECTIONS  */
.cta {
  background: linear-gradient(90deg, #f8e16c 55%, #d3f6f5 100%);
  border-radius: 22px;
  box-shadow: 0 8px 36px 0 rgba(22,96,100,0.09);
  padding: 48px 20px;
  margin-bottom: 60px;
}
.cta h2 {
  color: #156064;
  font-size: 2rem;
  margin-bottom: 14px;
}

/* NEXT STEPS / CONFIRMATION */
.confirmation-message {
  font-size: 1.13rem;
  color: #214552;
  margin-bottom: 20px;
}
.next-steps {
  margin-bottom: 22px;
}
.next-steps ul {
  list-style: disc inside;
  padding-left: 0;
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.next-steps a {
  color: #156064;
  text-decoration: underline;
}

/* CONTACT DETAILS */
.contact-details {
  background: #f6faf7;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 3px 12px 0 rgba(21,96,100,0.04);
}
.contact-details h2 {
  margin-bottom: 10px;
}
.contact-details ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details a {
  color: #156064;
  word-break: break-all;
}
.text-section {
  margin-bottom: 18px;
}
.faq-list li {
  background: #fff;
  border: 1px solid #f4e687;
  font-size: 1.045rem;
  border-radius: 8px;
  padding: 16px 13px 16px 18px;
}
/* WORKSHOP LISTS */
.workshop-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.workshop-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(21,96,100,0.06);
  padding: 22px 19px 16px 19px;
  min-width: 210px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* COOKIE BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: linear-gradient(90deg, #156064 80%, #f8e16c 100%);
  color: #fff;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 -4px 24px 0 rgba(21,96,100,0.12);
  border-radius: 18px 18px 0 0;
  gap: 24px;
  animation: cookieSlideIn 0.47s cubic-bezier(.4,.72,.24,1.18);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner span {
  flex: 1 1 auto;
  font-size: 1.01rem;
  line-height: 1.4;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  padding: 7px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, transform 0.14s;
}
.cookie-banner .accept-btn {
  background: #f8e16c;
  color: #156064;
}
.cookie-banner .accept-btn:hover { background: #ffed94; }
.cookie-banner .reject-btn {
  background: #fff;
  color: #214552;
  border: 1px solid #24b5a5;
}
.cookie-banner .reject-btn:hover { background: #f6faf7; color: #156064; }
.cookie-banner .settings-btn {
  background: #24b5a5;
  color: #fff;
}
.cookie-banner .settings-btn:hover { background: #156064; }

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21, 60, 52, 0.38);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 400px;
  min-width: 300px;
  padding: 30px 24px 24px 24px;
  box-shadow: 0 10px 50px 0 rgba(21,96,100,0.13);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPop 0.18s;
}
@keyframes modalPop {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-box h4 { color: #156064; font-size: 1.18rem; margin-bottom: 10px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #156064;
  border-radius: 6px;
  background: #fafafa;
  margin: 0;
  position: relative;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color .12s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #f8e16c;
  border-color: #24b5a5;
}
.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.7;
  background: #ddd;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-actions .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-actions .save-btn        { background: #156064; color: #fff; }
.cookie-modal-actions .save-btn:hover  { background: #24b5a5; }
.cookie-modal-actions .cancel-btn      { background: #e6f1f2; color: #156064; }
.cookie-modal-actions .cancel-btn:hover{ background: #f8e16c; }

/* ---- MOBILE MENU ---- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #f8e16c 0%, #24b5a5 100%);
  z-index: 1400;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.84, .06, .4, 1), opacity 0.19s;
  opacity: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  animation: mobileMenuSlideIn 0.42s;
}
@keyframes mobileMenuSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  margin-top: 18px;
  margin-left: auto;
  margin-right: 20px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #156064;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2;
}
.mobile-nav {
  width: 100%;
  padding: 36px 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #156064;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  margin-right: 24px;
  transition: background 0.16s, color 0.14s;
  margin-bottom: 4px;
  min-width: 60vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff8d3;
  color: #06280f;
}

/* --- RESPONSIVE RULES --- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .feature-item, .service-card, .post-preview, .workshop-list li {
    min-width: 200px;
    flex: 1 1 180px;
  }
}
@media (max-width: 980px) {
  .footer-top, header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .feature-grid, .services-overview, .services-list, .post-preview-grid, .testimonial-slider, .workshop-list {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container, .section, .cta {
    padding: 0 8px;
  }
  .section, .cta {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 14px;
  }
  header nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .services-overview, .services-list, .post-preview-grid, .testimonial-slider, .workshop-list {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-item, .service-card, .workshop-list li, .post-preview {
    min-width: unset;
    padding: 18px 10px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .value-list, .benefit-list, .tool-list, .faq-list {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .hero, .blog-hero, .cta {
    border-radius: 0 0 22px 22px;
    padding: 32px 0 22px 0;
    margin-bottom: 32px;
  }
  .footer-bottom {
    padding-top: 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 10px 30px 10px;
    border-radius: 18px 18px 0 0;
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .logo img { width: 96px; }
  .footer-top .logo img { width: 44px; }
  .cookie-modal-box { min-width: 94vw; }
}

/* MICRO-INTERACTIONS */
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}
.service-card:active, .feature-item:active, .post-preview:active, .testimonial-card:active {
  transform: scale(0.985) !important;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
input[type="text"], input[type="email"], textarea {
  border-radius: 8px;
  border: 1px solid #ddeeee;
  padding: 9px 15px;
  transition: border-color 0.14s;
}
input:focus, textarea:focus {
  border-color: #24b5a5;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #e6efea;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #f6faf7;
}

/* PRINT OPTIMIZATION */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none!important; }
  .section, .cta { box-shadow: none!important; background: #fff!important; }
}

/* END OF FILE */
