/* RESET & BASELINE ----------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F8F7;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2B3A55;
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
blockquote {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
  border-left: 4px solid #85B855;
  font-style: italic;
  color: #46704d;
}
a {
  color: #2B3A55;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #85B855;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY -----------------------------*/
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #2B3A55;
}
h1 {
  font-size: 2.8rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 1px 2px 0 #E7F5DE;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 0 #e4ecbc;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  color: #46704d;
  letter-spacing: 0.01em;
}
p {
  font-size: 1.1rem;
  margin-bottom: 13px;
  color: #2B3A55;
}

/* SOCIAL/BRAND/ELEMENTS ------------------ */
.cta-btn {
  appearance: none;
  background: #85B855;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 36px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, transform 0.17s;
  box-shadow: 0 4px 18px -8px rgba(43,58,85,0.13);
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2B3A55;
  color: #FFF;
  box-shadow: 0 6px 30px -10px #85B85555;
  transform: translateY(-2px) scale(1.04);
}

/* HEADER / NAVIGATION -------------------- */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 5px 20px -10px rgba(43,58,85,0.09);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
  position: relative;
}
nav > a img {
  height: 32px;
  margin-right: 24px;
  vertical-align: middle;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 22px;
  color: #2B3A55;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #E7F5DE;
  color: #85B855;
}
nav .cta-btn {
  margin-left: 24px;
  margin-top: 0;
  margin-bottom: 0;
}

/* HAMBURGER MENU (mobile-nav) ------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #2B3A55;
  z-index: 31;
  margin-left: auto;
  cursor: pointer;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  background: #FFF;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 310px;
  max-width: 95vw;
  box-shadow: -6px 0 24px -5px #32425d10;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
  padding: 40px 32px;
  visibility: hidden;
  opacity: 0.6;
}
.mobile-menu.open {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #85B855;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 30px;
  margin-right: -7px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2B3A55;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.21rem;
  padding: 12px 0 10px 0;
  color: #2B3A55;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1.5px solid #e7f5de;
  border-radius: 0;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #85B855;
  color: #fff;
  padding-left: 10px;
}

/* HERO SECTIONS -------------------------- */
.hero {
  background: #E7F5DE;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 2px 20px -6px #85B85522;
  margin-bottom: 44px;
  padding: 36px 0 32px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.hero h1 {
  color: #205b38;
  text-shadow: 1px 4px 0 #bfd58654;
  margin-bottom: 12px;
  font-size: 2.2rem;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 18px;
  color: #205b38;
}

/* FLEX/SECTION PATTERNS -------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 1.5px 18px -10px #2b3a5522;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURES GRIDS & ITEMS ----------------- */
.features, .activity-features, .sleep-features, .mental-features, .tips-features {
  background: #fff;
  border-radius: 38px;
  margin-bottom: 42px;
  box-shadow: 0 1.7px 18px -9px #2B3A5522;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 10px;
}
.feature-item {
  background: #F6F8F7;
  border-radius: 20px;
  padding: 24px 22px;
  min-width: 220px;
  flex: 1 1 210px;
  min-height: 200px;
  box-shadow: 0 2px 18px -10px #85B85518;
  transition: box-shadow 0.16s, transform 0.16s;
  border: 1.5px solid #E7F5DE;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item h3 {
  color: #669c31;
  font-size: 1.21rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px -8px #2B3A5555;
  transform: translateY(-3px) scale(1.03);
}

/* CARD / SERVICE STYLES ------------------ */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 20px 0;
}
.service-list li {
  flex: 1 1 330px;
  background: #e7f5de;
  box-shadow: 0 2px 19px -12px #2b3a5527;
  border-radius: 20px;
  padding: 22px 20px 19px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.service-list li strong {
  color: #85B855;
  font-size: 1.13rem;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 30px -4px #85B85522;
  transform: translateY(-2px) scale(1.025);
}

/* SECTIONS: ABOUT, POLICY, TERMS --------- */
.text-section {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.12rem;
}
.text-section ul {
  list-style-type: disc;
  margin-left: 22px;
  margin-top: 6px;
  margin-bottom: 8px;
  color: #669c31;
}
.text-section li {
  margin-bottom: 5px;
  font-size: 1.05rem;
  color: #3266be;
}
.bullet-examples, .bullet-tips, .motivation-quotes, .stress-management {
  margin-top: 22px;
  margin-bottom: 12px;
}
.bullet-examples p, .bullet-tips p {
  color: #2b3a55;
  font-weight: 600;
  margin-bottom: 5px;
}
.bullet-examples ul, .bullet-tips ul {
  list-style-type: circle;
  margin-left: 24px;
  color: #46704d;
}
.motivation-quotes blockquote {
  font-family: 'Montserrat', cursive;
  color: #85B855;
  background: #f6f8f7;
  border-left: 4px solid #85B855;
  border-radius: 18px;
}
.stress-management h3 {
  margin-bottom: 6px;
}

/* CONTACT / CTA ---------------------------*/
.get-in-touch-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.get-in-touch-cta .cta-btn {
  margin: 0;
}
.get-in-touch-cta span {
  font-size: 0.99rem;
  color: #85B855;
}

/* TESTIMONIALS / REVIEWS ------------------ */
.testimonials {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 1.5px 12px -7px #c7dfd061;
  margin-bottom: 48px;
  padding: 30px 0 36px 0;
}
.testimonials h2 {
  text-align: center;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}
.testimonial-card {
  background: #f6f8f7;
  border-radius: 18px;
  box-shadow: 0 3px 15px -10px #85B85522;
  padding: 30px 32px 20px 32px;
  margin: 12px 9px 18px 0;
  max-width: 330px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: #2B3A55;
  border: 1.2px solid #e7f5de;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #2B3A55;
  margin-bottom: 0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #3266be;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 36px -10px #85B85537, 0 2px 6px -2px #2b3a5522;
  transform: translateY(-2px) scale(1.025);
}

/* FOOTER --------------------------------- */
footer {
  background: #2B3A55;
  color: #f6f8f7;
  padding: 42px 0 30px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #E7F5DE;
}
.footer-brand img {
  height: 32px;
  width: 32px;
}
.footer-contact {
  margin-top: 26px;
  font-size: 1rem;
}
.footer-contact a {
  color: #85B855;
  transition: color 0.15s;
  word-break: break-all;
}
.footer-contact p{
  color: white;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff; text-decoration: underline;
}
.footer-nav {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: #85B855;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF;
  text-decoration: underline;
}

/* POLICY/TERMS PAGES --------------------- */
.footer-policy, .footer-rodo, .footer-cookies, .footer-terms {
  background: #fff;
  border-radius: 28px;
  margin-bottom: 44px;
  padding: 42px 24px;
  box-shadow: 0 5px 21px -12px #2b3a5535;
}
.footer-policy h1, .footer-rodo h1, .footer-cookies h1, .footer-terms h1 {
  font-size: 2.0rem;
}
.footer-policy .text-section, .footer-rodo .text-section, .footer-cookies .text-section, .footer-terms .text-section {
  margin-top: 18px;
}

/* ABOUT SHORT ---------------------------- */
.about-short {
  background: #E7F5DE;
  border-radius: 34px;
  box-shadow: 0 5px 20px -12px #85B85518;
  margin-bottom: 28px;
}
.get-in-touch-cta {
  margin-top: 17px;
}

/* THANK YOU SECTION ---------------------- */
.thank-you {
  background: #e7f5de;
  border-radius: 24px;
  margin-bottom: 44px;
  box-shadow: 0 4px 16px -6px #85B8551d;
  padding: 48px 0;
}
.thank-you h1 {
  color: #85B855;
  text-shadow: 1px 4px 0 #b8e7b09d;
  margin-bottom: 15px;
}
.thank-you p {
  margin-bottom: 23px;
  font-size: 1.14rem;
  color: #205b38;
}

/* ANIMATIONS / MICRO-INTERACTIONS -------- */
.cta-btn, .feature-item, .service-list li, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.16s, color 0.16s, background 0.16s;
}
.mobile-menu, .mobile-menu.open {
  transition: transform 0.32s cubic-bezier(.7,0,.3,1), opacity 0.3s, visibility 0.32s;
}

/* SPACING / GAPS / GENERAL LAYOUT ---------*/
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2B3A55;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 22px 14px 22px 16px;
  z-index: 100;
  box-shadow: 0 -3px 16px -8px #2b3a5599;
  gap: 30px;
  transition: transform 0.38s;
  font-size: 1.02rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-btn {
  background: #85B855;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 19px;
  padding: 11px 22px;
  font-size: 1.02rem;
  margin: 0 8px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner .cookie-btn.reject {
  background: #e74c3c;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #2B3A55;
  border: 1.2px solid #85B855;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #2B3A55;
  color: #85B855;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #a93226;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #e7f5de;
  color: #2B3A55;
}

/* COOKIE PREFERENCES MODAL ---------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) scale(0.95);
  background: #fff;
  color: #2B3A55;
  border-radius: 28px;
  box-shadow: 0 8px 44px -18px #85B85544;
  z-index: 130;
  min-width: 310px;
  max-width: 95vw;
  width: 370px;
  padding: 38px 28px 28px 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -52%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cookie-modal label {
  font-size: 1.05rem;
  cursor: pointer;
}
.cookie-modal input[type=checkbox] {
  accent-color: #85B855;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}

/* RESPONSIVE DESIGN ---------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
  nav ul {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
  .service-list li, .feature-item, .testimonial-card {
    min-width: 180px;
    max-width: 100%;
  }
  .footer-brand img {
    height: 28px; width: 28px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  nav ul {
    display: none;
  }
  nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 22px 0 18px 0;
  }
  .section, .footer-policy, .footer-rodo, .footer-cookies, .footer-terms {
    padding: 27px 8px;
    border-radius: 14px;
  }
  .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .about-short, .features, .activity-features, .sleep-features, .mental-features, .tips-features {
    border-radius: 10px;
  }
  .thank-you {
    border-radius: 10px;
    padding: 22px 0;
  }
}
@media (max-width: 560px) {
  html { font-size: 14px; }
  .footer-brand { font-size: 1.07rem; }
  .hero .content-wrapper { padding: 0 2px; }
  nav > a img { height: 22px; }
  .footer-brand img { height: 22px; width: 22px; }
  .cookie-modal { width: 95vw; min-width: 0; padding: 18px 6px; }
}

/* ARTISTIC DECORATIVE ELEMENTS ----------- */
.hero, .about-short {
  position: relative;
}
.hero::after, .about-short::after {
  content: '';
  position: absolute;
  bottom: -32px;
  right: 12%;
  width: 82px;
  height: 38px;
  background: #85B85544;
  border-radius: 50% 36% 80% 28%;
  z-index: 1;
  opacity: 0.7;
}
.features .container::before {
  content: '';
  position: absolute;
  left: 6%;
  top: -18px;
  width: 60px;
  height: 28px;
  background: #85b85533;
  border-radius: 50% 50% 50% 30%;
  z-index: 0;
}
.features .container {
  position: relative;
}
/* Additional unique/creative visual touches */
.card, .feature-item, .testimonial-card, .thank-you {
  border-top: 3.5px solid #85B855;
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .feature-item, .testimonial-card, .service-list li {
    padding: 14px 10px;
    font-size: 1rem;
  }
}

/* END */
