/* --- 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  /* Set base font and BG color */
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #343a2c;
  background: #FFFCF4;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: #FFE070;
}
::-webkit-scrollbar-thumb {
  background: #336D2B;
  border-radius: 6px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #295621;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #454631;
  letter-spacing: 0.01em;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}
strong {
  color: #336D2B;
}

ul, ol {
  padding-left: 22px;
}
a {
  color: #1DA4A1;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #336D2B;
  text-decoration-thickness: 2px;
}

/* --- CONTAINER & SECTION LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(51,109,43,0.07);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 12px;
    margin-bottom: 36px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #FFE070;
  border-bottom: 1.5px solid #F2D06A;
  box-shadow: 0 2px 12px 0 rgba(51,109,43,0.05);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 70px;
}
.main-nav .logo {
  margin-right: 18px;
  display: flex;
  align-items: center;
}
.main-nav a {
  color: #336D2B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta, .main-nav a.cta.primary {
  background: #336D2B;
  color: #fff;
  margin-left: auto;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 22px;
  box-shadow: 0 2px 8px 0 rgba(51,109,43,0.09);
}
.main-nav a.cta.accent {
  background: #1DA4A1;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ffe9a8;
  color: #1DA4A1;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #1DA4A1 ;
  color: #fff;
}
.main-nav a.cta.accent:hover, .main-nav a.cta.accent:focus {
  background: #336D2B;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
}
/* --- MOBILE NAVIGATION --- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 18px;
    z-index: 1200;
    font-size: 2.2rem;
    background: #FFE070;
    color: #336D2B;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border: 2px solid #336D2B;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(51,109,43,.09);
    transition: background .2s, color .2s;
  }
  .mobile-menu-toggle:active {
    background: #fff8d4;
    color: #1DA4A1;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff9e0;
    z-index: 2000;
    padding: 0 32px;
    transform: translateX(-105%);
    transition: transform 0.38s cubic-bezier(.37,1.38,.42,.92);
    box-shadow: 2px 0 28px 0 rgba(39,60,12,0.13);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    margin-top: 28px;
    align-self: flex-end;
    background: #FFE070;
    color: #336D2B;
    font-size: 2.2rem;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    border: 2px solid #336D2B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    margin-bottom: 40px;
    z-index: 3200;
  }
  .mobile-menu-close:active {
    background: #ffc22b;
    color: #1DA4A1;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    color: #336D2B;
    padding: 14px 10px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: background 0.27s, color 0.2s;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #ffeeb9;
    color: #1DA4A1;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 20px 24px 20px;
  background: #fffbe7;
  border-radius: 30px;
  box-shadow: 0 6px 20px 0 rgba(255,204,76,0.10);
  margin-bottom: 36px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: #336D2B;
  margin-bottom: 14px;
}
.hero p {
  max-width: 560px;
  font-size: 1.18rem;
  margin-bottom: 18px;
  color: #453b20;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    padding: 28px 6px 18px 6px;
    border-radius: 18px;
  }
}

/* --- CTA BUTTONS --- */
.cta,
button.cta {
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: #1DA4A1;
  box-shadow: 0 3px 13px 0 rgba(51,109,43,0.11);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .25s;
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.cta.primary {
  background: #336D2B;
  color: #fff;
}
.cta.accent {
  background: #1DA4A1;
}
.cta:hover, .cta:focus {
  background: #295621;
  color: #FFE070;
  box-shadow: 0 4px 24px 0 rgba(29,160,161,.24);
  text-decoration: none;
}
.cta.accent:hover, .cta.accent:focus {
  background: #15606C;
  color: #FFE070;
}
.cta.primary:hover,.cta.primary:focus {
  background: #FFE070;
  color: #336D2B;
}

/* --- FLEXBOX COLLECTIONS/LAYOUTS --- */
.content-wrapper {
  width: 100%;
}
.features-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 12px;
}
.features-grid .feature-item,
.card-container .card,
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 200px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(51,109,43,0.09);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s, transform .18s;
  min-width: 220px;
  max-width: 300px;
}
.features-grid .feature-item:hover,
.card-container .card:hover,
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,224,112,0.20), 0 3px 16px 0 rgba(51,109,43,0.10);
  transform: translateY(-4px) scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  min-width: 250px;
  max-width: 355px;
  background: #fffbe7;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(29,160,161,0.06);
  margin-bottom: 20px;
  transition: box-shadow .19s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(51,109,43,0.12);
}
.testimonial-card p {
  color: #2d3e21;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #336D2B;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars {
  color: #F9B800;
  font-size: 1.2em;
  letter-spacing: 0.06em;
}

/* Contact Details block */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #1DA4A1;
  border-radius: 12px;
}
.contact-details a {
  color: #1DA4A1;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}
.contact-details a:hover, .contact-details a:focus {
  color: #336D2B;
}

/* --- CARDS --- */
.card-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(51,109,43,0.08);
  margin-bottom: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow .14s, transform .14s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(255,224,112,0.20), 0 3px 16px 0 rgba(51,109,43,0.11);
  transform: translateY(-3px) scale(1.018);
}
/* --- FOOTER --- */
footer {
  background: #295621;
  color: #FFFFFF;
  padding: 48px 0 0 0;
  margin-top: 60px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 20px 0 rgba(51,109,43,0.09);
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFE070;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 10px;
  padding: 4px 11px;
  transition: background .15s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1DA4A1;
  background: #fffbe7;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  opacity: 0.92;
  padding-bottom: 18px;
  font-size: 1rem;
}
footer img {
  height: 36px;
  width: auto;
  border-radius: 13px;
}

/* --- TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
  color: #3e421e;
}
.text-section h3 {
  color: #336D2B;
  font-size: 1.19rem;
  margin-top: 12px;
}

/* --- RESPONSIVE BREAKPOINTS & FLEX DIRECTION CHANGES --- */
@media (max-width: 1100px) {
  .features-grid, .card-container, .testimonials, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .features-grid, .card-container, .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .footer-info {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .card, .feature-item {
    min-width: 110px;
    width: 100%;
    max-width: 100%;
  }
}

/* --- MICRO-INTERACTIONS --- */
section, .card, .feature-item {
  transition: box-shadow .18s, background .18s, transform .18s;
}
.card:active, .feature-item:active {
  box-shadow: 0 3px 14px 0 rgba(29,160,161,0.09) !important;
  transform: scale(0.99);
}

/* --- ICON SHADOWS FOR FRIENDLINESS --- */
.feature-item img, .contact-details img {
  box-shadow: 0 3px 10px 0 rgba(255,224,112,0.15);
  border-radius: 12px;
  background: #fffbe7;
  padding: 10px;
  margin-bottom: 8px;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  border-top: 2px solid #FFE070;
  box-shadow: 0 -2px 20px 0 rgba(51,109,43,0.08);
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 18px 16px 18px;
  font-size: 1rem;
  gap: 36px;
  flex-wrap: wrap;
  animation: cookieBannerIn .25s cubic-bezier(.42,.92,.43,1.08);
}
@keyframes cookieBannerIn {
  from { transform: translateY(72px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__message {
  color: #336D2B;
  font-family: 'Open Sans', sans-serif;
  max-width: 500px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 16px;
  padding: 9px 22px;
  font-size: 1rem;
  margin-right: 4px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
  box-shadow: 0 3px 11px 0 rgba(255,224,112,0.07);
}
.cookie-btn.accept {
  background: #336D2B;
  color: #fff;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFE070;
  color: #336D2B;
}
.cookie-btn.reject {
  background: #fff;
  color: #15606C;
  border: 1.3px solid #1DA4A1;
  font-weight: 600;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9E6C1;
  color: #1DA4A1;
}
.cookie-btn.settings {
  background: #1DA4A1;
  color: #fff;
  font-weight: 600;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #15606C;
  color: #FFE070;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 5px 8px 8px;
    font-size: 0.97rem;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(51, 109, 43, 0.16);
  z-index: 6000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn .28s cubic-bezier(.42,.92,.43,1.08);
}
@keyframes modalFadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal__content {
  background: #fffbe7;
  border-radius: 24px;
  box-shadow: 0 6px 40px 0 rgba(51,109,43,0.16);
  padding: 36px 30px;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__header {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #336D2B;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 2rem;
  background: #FFE070;
  color: #336D2B;
  border: 1.3px solid #336D2B;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fff;
  color: #1DA4A1;
}
.cookie-modal__section {
  background: #fff;
  border-radius: 12px;
  padding: 14px 13px 10px 13px;
  margin-bottom: 9px;
  box-shadow: 0 2px 8px 0 rgba(51,109,43,0.07);
}
.cookie-modal__section label {
  font-size: 1rem;
  color: #15606C;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-toggle {
  margin-left: auto;
  width: 42px;
  height: 22px;
  border-radius: 12px;
  background: #FFE070;
  position: relative;
  cursor: pointer;
  transition: background .14s;
}
.cookie-toggle.enabled {
  background: #1DA4A1;
}
.cookie-toggle.disabled {
  background: #FFE070;
}
.cookie-toggle__knob {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(128,128,128,0.11);
  transition: left .16s, background .18s;
}
.cookie-toggle.enabled .cookie-toggle__knob {
  left: 21px;
  background: #15606C;
}
.cookie-section-desc {
  font-size: 0.93rem;
  margin-top: 5px;
  color: #77764F;
}

/* --- FORMS (if/when present in any page) --- */
input[type="text"], input[type="email"], textarea {
  background: #fffbe7;
  border-radius: 12px;
  border: 1.2px solid #FFE070;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 14px;
  width: 100%;
  transition: border-color 0.16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #1DA4A1;
}

/* --- ADDRESS & MISC --- */
address {
  font-style: normal;
  color: #453b20;
  margin-bottom: 12px;
}

/* --- UTILITY CLASSES FOR SPACING --- */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* --- PRINT --- */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
  }
}

/* --- ACCESSIBILITY OUTLINE --- */
a:focus, button:focus {
  outline: 2px dashed #1DA4A1;
  outline-offset: 2px;
}

/* --- END OF CSS --- */
