/* ==== CSS RESET & BASE ==== */
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  background: #FAFAF9;
  color: #18302B;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #005F62;
  text-decoration: none;
  transition: color 0.19s cubic-bezier(.77,.01,.35,1);
}
a:hover, a:focus {
  color: #F2B705;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* ==== TYPOGRAPHY ==== */
h1 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #005F62;
  letter-spacing: .01em;
}
h2 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #005F62;
}
h3 {
  font-family: 'Georgia', serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #264B47;
}
p, li, dd {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #233D39;
}

b, strong {
  font-weight: 700;
}

/* ==== LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

main {
  flex: 1 1 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(8,36,32,0.05);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 28px 24px;
  background: #FCFCFB;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(8,36,32,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #F8FAF9;
  box-shadow: 0 2px 12px rgba(8,36,32,0.04);
  border-left: 4px solid #F2B705;
  max-width: 520px;
  color: #1b352f;
}
.testimonial-card p {
  font-family: 'Georgia', serif;
  color: #1d3630;
}
.testimonial-card span {
  color: #F2B705;
  font-size: 1.1em;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

/* ==== HEADER/NAVIGATION ==== */
header {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(8,36,32,0.03);
  z-index: 10;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 20px 22px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 16px;
}
header nav a {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #005F62;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #E9F6F7;
  color: #F2B705;
  outline: none;
}

.cta.primary {
  font-family: 'Georgia', serif;
  color: #FFFFFF;
  background: #005F62;
  border: none;
  padding: 10px 34px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  margin-left: 6px;
  transition: background 0.19s, color 0.17s, transform 0.17s;
  box-shadow: 0 1px 8px rgba(8,36,32,0.07);
  cursor: pointer;
  text-align: center;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F2B705;
  color: #07313C;
  transform: translateY(-2px) scale(1.02);
}

/* Hide burger on desktop, nav on mobile */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 2rem;
  color: #005F62;
  cursor: pointer;
  padding: 10px 16px;
  z-index: 101;
  margin-left: auto;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F2B705;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  display: none;
  position: fixed;
  background: #FFFFFF;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 360px;
  height: 100vh;
  box-shadow: -8px 0 16px rgba(0,0,0,.10);
  z-index: 999;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.5,.03,.31,.91);
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #005F62;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover { color: #F2B705; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 32px;
  padding-bottom: 40px;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: #005F62;
  padding: 14px 6px;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
  margin: 0 0 4px 0;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9F6F7;
  color: #F2B705;
  outline: none;
}

/* Hamburger shows on mobile */
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1020px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay/lock behind mobile menu when open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ==== MAIN CONTENT SECTIONS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

section .container {
  padding: 0 20px;
}

/* Content wrappers */
.content-wrapper {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero spacing tweaks */
section:first-of-type {
  margin-top: 0;
  padding-top: 52px;
}

/* Features list */
section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0px;
  margin-top: 6px;
}
section ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F8FAF9;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 1rem;
  color: #25403C;
  box-shadow: 0 1px 5px rgba(8,36,32,0.03);
  margin-bottom: 0px;
  line-height: 1.7;
}
section ul li img {
  width: 28px; height: 28px;
}

/* FAQ styling */
dl {
  margin-top: 14px; margin-bottom: 9px;
}
dl dt {
  font-weight: 700;
  font-size: 1.09rem;
  margin-top: 18px;
  color: #005F62;
}
dl dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: #264B47;
  font-size: 1rem;
}

/* ==== BUTTONS & INTERACTIVE ==== */
button,
.cta,
input[type="submit"],
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Georgia', serif;
  border: none;
  outline: none;
  cursor: pointer;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 30px;
  font-size: 1.05rem;
  transition: background .18s, color .15s, box-shadow .14s, transform .13s;
}
.cta.primary {
  background: #005F62;
  color: #FFF;
  box-shadow: 0 1px 8px rgba(8,36,32,.07);
  letter-spacing: .02em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F2B705;
  color: #18302B;
  box-shadow: 0 3px 16px rgba(246,183,5,.08);
}

/* ==== FOOTER ==== */
footer {
  background: #1A2D28;
  color: #EEE;
  padding: 52px 0 0 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
footer nav a {
  color: #F2B705;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.14s, color 0.09s;
  font-family: 'Georgia', serif;
}
footer nav a:hover, footer nav a:focus {
  background: #F2B705;
  color: #18302B;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #F1EEE8;
  font-size: 1rem;
}
.footer-contact img {
  width: 17px;
  vertical-align: -3px;
  margin-right: 6px;
}
.branding {
  width: 100%;
  text-align: center;
  color: #B4C6BE;
  font-size: 1rem;
  padding: 12px 0 28px 0;
  font-family: 'Georgia', serif;
  letter-spacing: .01em;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100vw;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 -2px 12px rgba(8,36,32,0.14);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  animation: cookieSlideIn .41s cubic-bezier(.45,1.5,.33,1) .1s;
}
@keyframes cookieSlideIn {
  from { transform: translateY(140px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1;  }
}
.cookie-banner__desc {
  font-family: 'Georgia', serif;
  color: #18302B;
  max-width: 380px;
  font-size: 1rem;
  margin: 0 10px 0 0;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner__btn {
  border: none;
  border-radius: 24px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding: 10px 26px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(8,36,32,.05);
  transition: background .13s, color .13s, box-shadow .13s;
}
.cookie-banner__btn.accept {
  background: #005F62;
  color: #FFF;
}
.cookie-banner__btn.accept:hover, .cookie-banner__btn.accept:focus {
  background: #014244;
}
.cookie-banner__btn.reject, .cookie-banner__btn.settings {
  background: #F2B705;
  color: #18302B;
}
.cookie-banner__btn.reject:hover, .cookie-banner__btn.reject:focus,
.cookie-banner__btn.settings:hover, .cookie-banner__btn.settings:focus {
  background: #e2ac05;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 18px 10px 14px 10px;
  }
  .cookie-banner__desc {
    max-width: none;
    margin-bottom: 8px;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1300;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(8,36,32,0.45);
  align-items: center;
  justify-content: center;
  transition: opacity .22s cubic-bezier(.5,.1,.41,1.2);
  padding: 40px 18px;
}
.cookie-modal.active {
  display: flex;
  animation: cookieModalFade .32s cubic-bezier(.43,2,.15,1);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #FFF;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 48px 8px rgba(8,36,32,0.11);
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 16px;
  background: none;
  color: #005F62;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover { color: #F2B705; }

.cookie-modal__title {
  font-family: 'Georgia', serif;
  font-size: 1.35rem;
  margin-bottom: 0;
  color: #005F62;
  font-weight: 600;
}
.cookie-modal__category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  gap: 14px;
}
.cookie-modal__category label {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: #18302B;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 21px;
  background: #d1dbd6;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-switch:checked {
  background: #F2B705;
}
.cookie-switch:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 2.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 100%;
  transition: left .18s;
  box-shadow: 0 1px 2px rgba(8,36,32,0.12);
}
.cookie-switch:checked:before {
  left: 16.5px;
}

.cookie-modal__footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal__btn {
  border: none;
  border-radius: 24px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding: 10px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: background .13s, color .13s, box-shadow .13s;
}
.cookie-modal__btn.save {
  background: #005F62;
  color: #FFF;
}
.cookie-modal__btn.save:hover { background: #17666B; }
.cookie-modal__btn.cancel {
  background: #F2B705;
  color: #18302B;
}
.cookie-modal__btn.cancel:hover { background: #e2ac05; }

/* ==== RESPONSIVE & MOBILE ==== */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 8vw;
  }
  section {
    padding-left: 0; padding-right: 0;
  }
  .content-wrapper { padding: 0; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.24rem; }
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .card-container, .content-grid, .text-image-section, .feature-list {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .section,
  section {
    padding: 26px 0 26px 0;
    margin-bottom: 34px !important;
    border-radius: 13px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .footer-contact,
  footer .container,
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==== TRANSITIONS ==== */
a, button, .cta, .cookie-banner__btn, .cookie-modal__btn {
  transition: background .14s, color .13s, box-shadow .16s, transform .14s;
}

/* ==== UTILITIES & ELEGANT EXTRAS ==== */
::-webkit-input-placeholder { color: #9BAFAD; }
::-moz-placeholder          { color: #9BAFAD; }
:-ms-input-placeholder      { color: #9BAFAD; }
::placeholder              { color: #9BAFAD; }

hr {
  border: none;
  border-top: 1.5px solid #E7E5DF;
  margin: 36px 0 36px 0;
}

/* ELEGANT QUOTE MARKS FOR TESTIMONIALS */
.testimonial-card:first-child p:first-child:before {
  content: "\201C";
  display: inline-block;
  color: #C0A858;
  font-size: 2.4em;
  vertical-align: -.35em;
  margin-right: 5px;
}

/* ==== MODERN SHADOWS & EFFECTS ==== */
.card, .testimonial-card, .cookie-modal__content {
  box-shadow: 0 2px 8px rgba(8,36,32,0.08);
}

/* ==== FOCUS VISIBILITY ==== */
:focus-visible {
  outline: 2px solid #F2B705;
  outline-offset: 2px;
}

/* ==== SCROLLBAR ELEGANCE ==== */
body::-webkit-scrollbar {width:12px; background:#F9F9F8;}
body::-webkit-scrollbar-thumb {background:#DFE8E5; border-radius:8px;}
body::-webkit-scrollbar-thumb:hover {background: #C7D1CF;}

/* ==== END CSS ==== */
