/* -----------------------------------------------------
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAF8F6;
  color: #25322C;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2B8AAC;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1B5E20;
  outline: none;
}

/* -----------------------------------------------------
   LAYOUT CONTAINERS
------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 568px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 38px;
  }
}

/* -----------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------*/
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #18332A;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.375rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #365236;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 28px;
}

p, li, address {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #25322C;
}
strong {
  font-weight: 600;
  color: #2B8AAC;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}

blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #274A36;
  border-left: 4px solid #A3C49C;
  padding-left: 22px;
  margin-bottom: 10px;
}

/* -----------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------*/
header {
  background: #F7F5F3;
  box-shadow: 0 2px 12px rgba(51, 82, 62, 0.08);
  padding: 0 0 0 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 77px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #0E3648;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.12s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #DFE9E2;
  color: #1B5E20;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #275E38;
  color: #F7F5F3;
  border: none;
  border-radius: 999px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(47, 77, 52, 0.09);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  margin-left: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #194124;
  color: #F3F9F5;
  transform: translateY(-1px) scale(1.04);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #1B5E20;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  z-index: 14;
  line-height: 1;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A3C49C;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 390px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -2px 0 18px rgba(39, 94, 56, 0.11);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.65,0.2,0.19,1.01);
  display: flex;
  flex-direction: column;
  padding: 32px 26px 16px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #235F34;
  cursor: pointer;
  margin-bottom: 26px;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid #A3C49C;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 12px 0 12px 6px;
  color: #0E3648;
  border-radius: 7px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E4EEE6;
  color: #1B5E20;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 920px) {
  header .container nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 921px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
    max-width: none;
    padding: 26px 10px 18px 13px;
  }
}

/* -----------------------------------------------------
   HERO SECTIONS
------------------------------------------------------*/
.hero {
  background: #EAF5E8;
  border-radius: 0 0 54px 54px / 0 0 40px 40px;
  min-height: 215px;
  box-shadow: 0 10px 40px rgba(39, 94, 56, 0.03);
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 40px;
  padding-bottom: 36px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #174322;
}
.hero .subheadline {
  max-width: 730px;
}
@media (max-width: 700px) {
  .hero {
    border-radius: 0 0 32px 32px / 0 0 28px 28px;
    min-height: 120px;
    padding-top: 20px;
    padding-bottom: 16px;
  }
}

/* -----------------------------------------------------
   FLEX CONTAINERS & CARDS
------------------------------------------------------*/
.feature-grid,
.service-list,
.team-list,
.calculator-grid,
.guides-list,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-item,
.service-item,
.team-member,
.calculator-item,
.guide-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F5F3;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(46, 89, 68, 0.07);
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 250px;
}
.feature-item:hover,
.service-item:hover,
.team-member:hover,
.calculator-item:hover,
.guide-card:hover {
  box-shadow: 0 7px 28px rgba(35,100,65,0.13);
  transform: translateY(-3px) scale(1.022);
}
.feature-item img, .service-item img, .team-member img, .calculator-item img, .guide-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .team-list,
  .calculator-grid,
  .guides-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-item,
  .service-item,
  .team-member,
  .calculator-item,
  .guide-card {
    min-width: 200px;
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 568px) {
  .feature-grid,
  .service-list,
  .team-list,
  .calculator-grid,
  .guides-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #EEF7ED;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(39, 94, 56, 0.08);
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 280px;
  color: #14541C;
  position: relative;
  transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(34, 50, 36, 0.13);
  transform: scale(1.015) translateY(-2px);
}
.testimonial-card blockquote {
  color: #18332A;
  margin: 0;
  border-left: 3px solid #A3C49C;
  padding-left: 18px;
  font-size: 1.09rem;
}
.testimonial-details strong {
  color: #275E38;
  font-weight: 600;
}
@media (max-width: 740px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* THANK YOU SECTION */
.thank-you-section {
  margin-top: 42px;
  margin-bottom: 60px;
  padding: 38px 18px;
  background: #F1F8F5;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 6px 32px rgba(35,100,65,0.07);
}
.thank-you-text {
  font-size: 1.16rem;
  margin-bottom: 32px;
  color: #2D5442;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: #F7F5F3;
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 210px;
  box-shadow: 0 2px 8px rgba(39,94,56,0.06);
  font-size: 0.99rem;
}
.contact-item img {
  min-width: 30px;
  width: 30px;
  height: 30px;
  margin-top: 0;
}
@media (max-width: 650px) {
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
  .contact-item {
    min-width: 0;
    width: 100%;
    padding: 11px 13px;
  }
}

/* CTA SECTION */
.cta-section {
  margin-bottom: 0;
  background: #DCEEE0;
  border-radius: 38px;
  box-shadow: 0 8px 32px rgba(39,94,56,0.08);
  text-align: center;
  padding: 46px 28px 36px 28px;
  margin-top: 50px;
}
.cta-section h2 {
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  .cta-section {
    padding: 28px 8px 20px 8px;
    border-radius: 18px;
  }
}

/* -----------------------------------------------------
   FAQ SEARCH & COLLAPSIBLE
------------------------------------------------------*/
.faq-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.faq-search input {
  padding: 7px 15px;
  font-size: 1rem;
  border: 1px solid #A3C49C;
  border-radius: 7px;
  background: #F7F5F3;
  color: #25322C;
  width: 180px;
}
.faq-search button {
  padding: 6px 13px;
  background: #194124;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}
.faq-search button:hover {
  background: #2B8AAC;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.faq-item {
  background: #F1F8F5;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(39,94,56,0.06);
  transition: box-shadow 0.17s;
  margin-bottom: 10px;
}
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 7px;
  font-weight: 700;
  cursor: pointer;
  color: #2B8AAC;
}
.faq-body {
  font-size: 1rem;
  color: #314930;
  display: block;
}

/* -----------------------------------------------------
   BENEFIT LIST
------------------------------------------------------*/
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.benefit-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #F7F5F3;
  border-radius: 12px;
  padding: 13px 17px;
  font-size: 1.03rem;
  min-width: 170px;
  box-shadow: 0 2px 8px rgba(39,94,56,0.04);
}
.benefit-list img {
  min-width: 28px;
  width: 28px;
  height: 28px;
}
@media (max-width: 700px) {
  .benefit-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* -----------------------------------------------------
   FOOTER
------------------------------------------------------*/
footer {
  background: #194124;
  color: #E4EEE6;
  padding: 42px 0 18px 0;
  border-radius: 25px 25px 0 0/ 20px 20px 0 0;
  margin-top: 50px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
footer nav a {
  color: #A9FFCB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #F6F7E9;
  text-decoration: underline;
}
footer address {
  font-size: 0.96rem;
  color: #C6F7D1;
  line-height: 1.6;
  margin-bottom: 9px;
  text-align: center;
}
footer img {
  width: 49px;
  margin-bottom: 9px;
}

@media (max-width: 600px) {
  footer {
    padding: 28px 0 10px 0;
  }
  footer .content-wrapper {
    gap: 10px;
  }
  footer address {
    font-size: 0.92rem;
  }
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  z-index: 5000;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #274A36;
  color: #F7F5F3;
  padding: 26px 18px 18px 18px;
  box-shadow: 0 -8px 32px rgba(31,77,49,0.14);
  border-radius: 18px 18px 0 0 / 14px 14px 0 0;
  animation: banner-slide-up 0.37s cubic-bezier(.35,1.38,.3,.98);
}
@keyframes banner-slide-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: #F7F5F3;
  margin-bottom: 9px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  margin: 0 2px;
  cursor: pointer;
  background: #A3C49C;
  color: #143628;
  transition: background 0.16s, color 0.15s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: #2B8AAC;
  color: #fff;
}
.cookie-btn.reject {
  background: #D14031;
  color: #FFF;
}
.cookie-btn.settings {
  background: #EAF5E8;
  color: #235F34;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 10px rgba(46,89,68,0.13);
  filter: brightness(1.07);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(29,60,41,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: banner-slide-up 0.3s cubic-bezier(.35,1.38,.3,.98);
}
.cookie-modal {
  background: #F7F5F3;
  color: #222B1C;
  border-radius: 16px;
  padding: 35px 24px 24px 24px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 4px 38px rgba(50,100,65,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #274A36;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #A3C49C;
  width: 20px; height: 20px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #2B8AAC;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 0.99rem;
  padding: 8px 18px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 13px; right: 19px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #235F34;
  cursor: pointer;
  padding: 0;
}
.cookie-category.essential label {
  color: #1B5E20;
}

@media (max-width: 568px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 8px 12px 8px;
  }
}

/* -----------------------------------------------------
   LINK BUTTON-LIKE STYLE
------------------------------------------------------*/
.cta-link {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B8AAC;
  background: #EAF5E8;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(46,89,68,0.06);
  transition: background 0.21s, color 0.13s;
  margin-top: 7px;
}
.cta-link:hover, .cta-link:focus {
  background: #A3C49C;
  color: #143628;
}

/* -----------------------------------------------------
   ORGANIC SHAPE & TEXTURE EFFECTS
------------------------------------------------------*/
.feature-item,
.service-item,
.team-member,
.calculator-item,
.guide-card,
.testimonial-card,
.cta-section,
footer, header {
  /* organic curves, not perfectly symmetrical */
  border-radius: 24px 18px 26px 22px / 16px 22px 18px 24px;
}
.section {
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse opacity='0.07' cx='25' cy='25' rx='25' ry='16' fill='%2394C8A0'/%3E%3Cellipse opacity='0.05' cx='32' cy='30' rx='14' ry='9' fill='%23D5A982'/%3E%3C/svg%3E") repeat;
  background-size: 170px 54px;
}

/* -----------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------------*/
@media (max-width: 820px) {
  .feature-grid,
  .service-list,
  .team-list,
  .calculator-grid,
  .guides-list,
  .content-grid,
  .testimonials {
    gap: 15px;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
}

/* Responsive for all content wrappers */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .testimonials,
  .contact-details,
  .benefit-list {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 0.98rem; }
  .subheadline { font-size: 0.98rem; }
}

/* -----------------------------------------------------
   ANIMATIONS & TRANSITIONS
------------------------------------------------------*/
.feature-item, .service-item, .team-member, .calculator-item, .guide-card, .testimonial-card,
.cta-btn, .cta-link, .mobile-menu, .cookie-banner {
  transition: box-shadow 0.19s, transform 0.18s, background 0.15s, color 0.14s;
}

/* -----------------------------------------------------
   FORM ELEMENTS, INPUTS
------------------------------------------------------*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FCFCFA;
  border: 1px solid #A3C49C;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 1rem;
  color: #25322C;
  margin-bottom: 11px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #2B8AAC;
  border-color: #2B8AAC;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}

/* -----------------------------------------------------
   SECTION SPACING (MARGIN/PADDING)
------------------------------------------------------*/
.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;
}

/* Enforce min spacing between all section cards */
.card, .feature-item, .service-item, .team-member, .calculator-item, .guide-card, .testimonial-card {
  margin-bottom: 20px;
}

/* -----------------------------------------------------
   UTILITY CLASSES
------------------------------------------------------*/
.hide {
  display: none !important;
}

.visible {
  display: block !important;
}
