/* =============================
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #274A42;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #274A42;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  border-radius: 0;
}
ul, ol {
  padding-left: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
hr {
  border: 0;
  border-top: 1px solid #E7F4EB;
  margin: 24px 0;
}

/* =============================
   BRAND TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  color: #274A42;
  margin-bottom: 24px;
}
h1 { font-size: 2.7rem; line-height: 1.1; margin-top: 0;}
h2 { font-size: 2rem; line-height: 1.15;}
h3 { font-size: 1.4rem; line-height: 1.2;}
h4 { font-size: 1.15rem;}

p, li, dl, dd {
  font-family: "Open Sans",Verdana,sans-serif;
  color: #31432e;
  font-size: 1rem;
  margin-bottom: 18px;
}
p.subheadline {
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #425545;
  margin-bottom: 32px;
  font-family: "Open Sans",Verdana,sans-serif;
}
.text-section {
  max-width: 750px;
  margin: 0 auto 24px auto;
}
strong, b {
  font-weight: bold;
}
em, i {
  font-style: italic;
}

/* =============================
   CONTAINER & SECTIONS
============================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(34,61,56,0.07);
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: #E7F4EB;
  box-shadow: 0 3px 18px rgba(34,61,56,0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 102;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.05rem;
  color: #274A42;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  font-weight: 600;
}
nav a:hover:not(.btn-primary) {
  background: #F7F9F7;
  color: #F3C362;
}
.btn-primary {
  background: #274A42;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 11px 24px;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(39,74,66,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F3C362;
  color: #274A42 !important;
  box-shadow:0 4px 32px rgba(39,74,66,0.12);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #274A42;
  color: #274A42;
  padding: 9px 20px;
  border-radius: 10px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background .15s, color .15s, border-color .18s;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E7F4EB;
  color: #274A42;
  border-color: #F3C362;
}

@media (max-width: 980px) {
  nav {
    gap: 8px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 8px 14px;
  }
}

@media (max-width: 820px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Burger Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #274A42;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 7px;
  transition: background .13s;
  z-index: 128;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C0DCCB;
}

/* =============================
   MOBILE NAVIGATION MENU
============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,74,66,0.97);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.77,.2,.05,1);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  margin: 14px 20px 14px 0;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  padding: 5px 16px;
  border-radius: 7px;
  transition: background .12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F3C362;
  color: #274A42;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: start;
  align-items: flex-start;
  padding: 26px 40px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  padding: 8px 0;
  letter-spacing: 0.03em;
  border-radius: 7px;
  width: 100%;
  display: block;
  transition: background .19s, color .19s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3C362;
  color: #274A42;
}

@media (min-width: 821px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =============================
   FLEX COMPONENTS
============================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 36px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.features-grid > div,
.features-grid > li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(39,74,66,0.08);
  padding: 24px 18px;
  flex: 1 1 235px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
}
.features-grid > div img,
.features-grid > li img {
  width: 40px;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .features-grid {
    gap: 18px 0;
    justify-content: flex-start;
  }
  .features-grid > div, .features-grid > li {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(34,61,56,0.09);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 265px;
  min-width: 210px;
  padding: 32px 24px;
  transition: box-shadow .17s;
}
.card:hover {
  box-shadow: 0 7px 22px rgba(39,74,66,0.12);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  gap: 10px;
}

.service-list {
  list-style: disc outside;
  margin: 0 0 20px 20px;
  padding: 0;
  color: #31432e;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 10px;
}
.team-member-card {
  background: #fff;
  flex: 1 1 260px;
  min-width: 210px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(39,74,66,0.08);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
}
.team-member-card .role {
  color: #F3C362;
  font-family: inherit;
  font-size: 0.99rem;
  margin-bottom: 6px;
}

.step-list {
  list-style: decimal;
  color: #274A42;
  margin: 0 0 22px 24px;
  padding: 0;
}
.step-list li {
  margin-bottom: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-list dt {
  font-family: "Georgia", serif;
  font-weight: 600;
  color: #274A42;
  padding-top: 11px;
  font-size: 1.07rem;
}
.faq-list dd {
  color: #4A6357;
  margin-left: 0;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.5;
}

/* =============================
   TESTIMONIALS
============================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E7F4EB;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(22,39,34,0.10);
  flex: 1 1 270px;
  min-width: 0;
  transition: box-shadow .13s;
  border: 2px solid #C0DCCB;
}
.testimonial-card p {
  font-family: "Georgia", serif;
  color: #274A42;
  font-size: 1.09rem;
  margin: 0 0 6px 0;
  font-style: italic;
}
.testimonial-meta {
  color: #836B2B;
  font-family: "Open Sans",Verdana,sans-serif;
  font-size: 0.99rem;
  margin-left: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(34,61,56,0.17);
  border-color: #F3C362;
  background: #f7f8ec;
}

/* =============================
   FOOTER
============================= */
footer {
  background: #274A42;
  color: #fff;
  font-family: "Open Sans",Verdana,sans-serif;
  padding: 32px 0 14px 0;
  margin-top: 32px;
}
footer .container {
  align-items: center;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: #fff;
  font-family: "Open Sans",Verdana,sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.87;
  transition: color .16s, text-decoration .16s;
}
footer nav a:hover {
  color: #F3C362;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.97rem;
  font-family: "Open Sans",Verdana,sans-serif;
  color: #E7F4EB;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  opacity: 0.78;
  justify-content: center;
}
.footer-contact img {
  width: 20px;
  vertical-align: text-bottom;
  margin-right: 3px;
}

@media (max-width: 768px) {
  footer .content-wrapper {
    gap: 10px;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-contact {
    font-size: 0.92rem;
    flex-direction: column;
    gap: 3px;
    text-align: left;
  }
  footer nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #E7F4EB;
  color: #274A42;
  font-family: "Open Sans",Verdana,sans-serif;
  font-size: 1.05rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #C0DCCB;
  z-index: 3000;
  padding: 18px 28px;
  box-shadow: 0 -2px 18px rgba(39,74,66,.12);
  gap: 24px;
  animation: cookieIn 0.35s 1 both;
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: "Georgia", serif;
  font-size: 1.015rem;
  border-radius: 7px;
  cursor: pointer;
  padding: 7px 18px;
  font-weight: 600;
  border: none;
  transition: background .18s, color .19s;
}
.cookie-banner .accept {
  background: #274A42;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #F3C362;
  color: #274A42;
}
.cookie-banner .reject {
  background: #F3C362;
  color: #274A42;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #274A42;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  border: 2px solid #274A42;
  color: #274A42;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  border-color: #F3C362;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: rgba(39,74,66,0.33);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeIn .23s 1 both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 42px rgba(34,61,56,0.15);
  padding: 38px 30px 24px 30px;
  max-width: 440px;
  width: 94vw;
  font-family: "Open Sans",Verdana,sans-serif;
  color: #274A42;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: modalPop .33s 1 both;
}
@keyframes modalPop {
  from { transform: translateY(32px) scale(.92); opacity: .66; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #274A42;
  cursor: pointer;
}
.cookie-modal h3 {
  font-size: 1.32rem;
  margin-bottom: 15px;
  color: #274A42;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.cookie-modal li, .cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 13px;
  gap: 11px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #274A42;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 14px;
}
.cookie-modal .cookie-toggle[disabled] {
  opacity: .5;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 7vw 12px 7vw;
    min-width: 0;
    font-size: 0.99rem;
  }
  .cookie-banner {
    padding: 10px 7px;
    font-size: 0.98rem;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* =============================
   RESPONSIVE ADJUSTMENTS
============================= */
@media (max-width: 1080px) {
  .container, .content-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
  .features-grid, .content-grid, .team-list {
    gap: 14px;
  }
}
@media (max-width: 680px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.45rem; }
  .features-grid > div, .features-grid > li, .team-member-card {
    padding: 15px 8px;
    min-width: unset;
  }
  .testimonial-card {
    padding: 10px 7px;
    font-size: 0.99rem;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.5rem; }
}

/* =============================
   MICRO-INTERACTIONS
============================= */
.btn-primary, .btn-secondary, .cookie-banner button {
  transition: background .22s, color .22s, border-color .17s, box-shadow .23s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
.card, .testimonial-card, .team-member-card {
  transition: box-shadow .21s, border .18s;
}
.card:hover, .team-member-card:hover {
  box-shadow: 0 10px 30px rgba(34,61,56,0.13);
  border-color: #F3C362 !important;
}
a:hover:not(.btn-primary):not(.btn-secondary){
  text-decoration: underline;
}

/* =============================
   MISCELLANEOUS
============================= */
::-webkit-selection { background: #F3C362; color: #274A42; }
::selection { background: #F3C362; color: #274A42; }

/* Hide JS utility classes by default */
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  display: none;
}

/* For demo/JS: Show them when .active or .show */
.mobile-menu.active,
.cookie-banner.show, .cookie-modal-overlay.show {
  display: flex;
}

/* =============================
   END OF STYLE.CSS
============================= */
