/* =====================================================================
   CSS 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F2F2F2;
  color: #232323;
  min-height: 100vh;
  line-height: 1.6;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 1.4em;
}
a {
  color: #22787A;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.56,.46,.54,.84);
}
a:hover, a:focus {
  color: #88A233;
  outline: none;
  text-decoration: underline;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #22787A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.05;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.14rem;
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
}
.lead {
  font-size: 1.31rem;
  color: #88A233;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */
header {
  background: #fff;
  box-shadow: 0 3px 12px rgba(34,120,122,0.06), 0 1.5px 8px rgba(136,162,51,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #22787A;
  padding: 7px 14px;
  border-radius: 5px;
  transition: background 0.16s, color 0.14s;
  letter-spacing: 0.01em;
  position: relative;
  outline: none;
}
header nav a:hover, header nav a:focus {
  background: #F2F2F2;
  color: #88A233;
}
.primary-cta {
  background: #22787A;
  color: #fff;
  border: 0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  margin-left: 12px;
  border-radius: 27px;
  box-shadow: 0 4px 18px rgba(34,120,122,.11);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.23s, color 0.17s;
  outline: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #88A233;
  color: #fff;
  box-shadow: 0 6px 24px rgba(136,162,51,0.18);
}

/* =====================
 MOBILE NAVIGATION
 ===================== */
.mobile-menu-toggle {
  display: none;
  background: #22787A;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 52;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #88A233;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -8px 0 20px rgba(34,120,122,0.15);
  z-index: 1001;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.65,.04,.39,1.02), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 0 0;
  font-size: 2.2rem;
  background: none;
  color: #22787A;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #88A233;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding: 18px 28px 40px 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #22787A;
  padding: 16px;
  border-radius: 14px;
  transition: background 0.16s, color 0.23s;
  outline: none;
  margin-bottom: 4px;
  background: #F2F2F2;
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #88A233;
  color: #fff;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================================================================
   MAIN LAYOUT SECTIONS & FLEXBOX STRUCTURES
   ===================================================================== */
main {
  background: #F2F2F2;
  min-height: 500px;
}
section {
  background: #fff;
  border-radius: 26px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 28px rgba(34,120,122,0.09);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero {
  background: linear-gradient(110deg, #f2f2f2 60%, #88A233 100%);
  padding: 0;
  min-height: 370px;
  box-shadow: none;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 310px;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.97);
  margin-top: 36px;
  margin-bottom: 36px;
  border-radius: 28px 28px 74px 28px;
  box-shadow: 0 8px 32px rgba(136,162,51,0.08), 0 2.5px 14px rgba(34,120,122,0.03);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  background: #f8fbf8;
  border-radius: 22px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 340px;
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(136,162,51,.10);
  margin-bottom: 20px;
  transition: transform 0.19s, box-shadow 0.23s;
  border: 2.5px solid transparent;
  position: relative;
}
.feature img {
  margin-bottom: 18px;
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 4px rgba(34,120,122,0.08));
}
.feature:hover, .feature:focus-within {
  transform: translateY(-4px) scale(1.025) rotate(-1.2deg);
  box-shadow: 0 6px 32px rgba(34,120,122,0.13);
  border-color: #88A233;
  z-index: 2;
}
@media (max-width: 1100px) {
  .features-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature {
    max-width: 100%;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(34,120,122,0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 370px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 30px;
  margin-bottom: 28px;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(34,120,122,0.10);
  border-left: 7px solid #88A233;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: #222;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #394d3f;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-style: italic;
  color: #22787A;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Feature pattern for lists */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================================================
   INTERACTIVE ELEMENTS
   ===================================================================== */
button, input[type="submit"], input[type="button"] {
  background: #22787A;
  color: #fff;
  border: none;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: 25px;
  box-shadow: 0 3px 16px rgba(34,120,122,0.09);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s, color 0.14s;
  outline: none;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #88A233;
  color: #fff;
}

/* Inputs */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #bfd7ce;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 16px;
  margin-top: 6px;
  background: #f6f9f8;
  transition: border 0.16s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #22787A;
  box-shadow: 0 0 0 3px #c2ecd7;
  outline: none;
}

/* =====================================================================
   LISTS, TABLES, TYPOGRAPHY
   ===================================================================== */
ul, ol {
  margin-bottom: 12px;
  padding-left: 28px;
}
ul ul, ol ul, ul ol {
  margin-bottom: 0;
}
li {
  margin-bottom: 6px;
  line-height: 1.65;
}
ol li {
  list-style-type: decimal;
}
ul li {
  list-style-type: disc;
}
.text-section ul, .text-section ol {
  margin-bottom: 8px;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: #fff;
  border-top: 2px solid #e6ecde;
  box-shadow: 0 -2px 24px rgba(34,120,122,0.08);
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  padding-top: 30px;
  padding-bottom: 30px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
footer nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #22787A;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
  outline: none;
}
footer nav a:hover, footer nav a:focus {
  color: #88A233;
  text-decoration: underline;
}
footer .contact-info {
  font-size: 0.97rem;
  color: #394d3f;
}
footer .contact-info p {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 8px;
  }
  footer .contact-info {
    margin-left: 0;
  }
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  box-shadow: 0 -5px 30px rgba(34,120,122,0.13);
  border-top: 3.5px solid #88A233;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  gap: 14px;
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(.72,.04,.34,.9), opacity 0.19s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  margin-right: 24px;
  color: #232323;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  min-width: 124px;
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 21px;
  background: #22787A;
  color: #fff;
  border: none;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.19s;
}
.cookie-banner .accept {
  background: #22787A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #88A233;
  color: #fff;
}
.cookie-banner .reject {
  background: #e74a3b;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #bc2b23;
  color: #fff;
}
.cookie-banner .settings {
  background: #88A233;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #22787A;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 13px;
    padding: 15px 8px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
}

/* Cookie Modal */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,120,122,0.32);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal-bg.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 42px rgba(34,120,122,0.21);
  padding: 36px 28px 28px 28px;
  min-width: 290px;
  max-width: 420px;
  width: 92vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: transform 0.23s cubic-bezier(.68,.09,.36,.98), opacity 0.17s;
  transform: translateY(0);
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: #22787A;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #394d3f;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #88A233;
  cursor: pointer;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  color: #22787A;
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #88A233;
}

/* =====================================================================
   CREATIVE/ARTISTIC ACCENTS
   ===================================================================== */
/* Artistic underline for h2 */
h2 {
  position: relative;
  display: inline-block;
}
h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 6px;
  background: #88A233;
  border-radius: 7px;
  margin-top: 9px;
  margin-left: 0;
  opacity: 0.35;
}
section .container > h2 {
  margin-bottom: 36px;
}

/* Creative shadow blobs as decorative (only decorative abs positions!) */
.hero .content-wrapper::before {
  content: '';
  position: absolute;
  left: -40px;
  top: -32px;
  width: 64px;
  height: 64px;
  background: #88A233;
  border-radius: 40px 60px 47px 33px/43px 51px 61px 52px;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.hero .content-wrapper::after {
  content: '';
  position: absolute;
  right: -38px;
  bottom: -36px;
  width: 59px;
  height: 60px;
  background: #22787A;
  border-radius: 41px 31px 60px 52px/51px 52px 36px 60px;
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
}

/* Artistic fonts for heading */
h1, h2, h3, .lead {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* Fun hover effect for feature icons */
.feature img {
  transition: transform 0.2s cubic-bezier(.56,.33,.42,1.1);
}
.feature:hover img, .feature:focus-within img {
  transform: rotate(-7deg) scale(1.07);
}

/* =====================================================================
   RESPONSIVE: MOBILE FIRST, FLEX-DIRECTION
   ===================================================================== */
@media (max-width: 1024px) {
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .card {
    min-width: 0;
    max-width: 100%;
  }
  .section {
    padding: 30px 9px;
  }
}
@media (max-width: 850px) {
  section {
    padding: 28px 7px;
  }
  .hero .container, .hero .content-wrapper {
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.31rem;
    margin-bottom: 14px;
  }
  .hero .content-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 20px 7px;
    border-radius: 22px;
  }
  .testimonial-card {
    padding: 15px 10px;
    border-radius: 17px;
    font-size: 0.96rem;
    margin-bottom: 17px;
  }
}

/* =====================================================================
   SPACING, MARGINS, GAPS, CONSISTENCY
   ===================================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* =====================================================================
   PRINT UTILITIES
   ===================================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg {
    display: none !important;
  }
  body, section, .container {
    background: #fff!important;
    color: #222!important;
  }
}
