/* RESET & BASE TYPOGRAPHY */
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, main, 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;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  min-height: 100%;
  background: #F7F5EA;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F7F5EA;
  color: #232323;
  min-height: 100vh;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #3B5D56;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D6BFA7;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --primary: #3B5D56;
  --secondary: #D6BFA7;
  --accent: #F7F5EA;
  --bg-light: #fff;
  --text-main: #232323;
  --danger: #cc3742;
  --success: #388e3c;
  --box-shadow: 0 4px 24px rgba(59,93,86,0.05), 0 1.5px 3.5px rgba(59,93,86,0.07);
  --shadow-intense: 0 8px 32px rgba(59,93,86,0.17);
}

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p, li, label, input, select, textarea, blockquote, small {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-main);
  font-size: 1rem;
}
p { margin-bottom: 16px; }
strong {
  font-weight: 700;
  color: var(--primary);
}
small {
  font-size: 0.88rem;
  color: #555;
}

ul, ol {
  margin-left: 1.4em;
  margin-bottom: 20px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 12px;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .content-wrapper {
    flex: 1 1 0;
    margin-bottom: 0;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-light);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-intense);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
  gap: 20px;
}

.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;
}

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper { margin-bottom: 32px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  border-left: 7px solid var(--secondary);
  transition: border-color 0.15s, box-shadow 0.18s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #666;
  margin-top: -8px;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-intense);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO, FEATURES SECTION */
.hero {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--accent) 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 24px rgba(59,93,86,0.07);
  margin-bottom: 44px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 900;
}
@media (min-width: 900px) {
  .hero h1 { font-size: 3rem; }
}
.hero .subheadline {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.features ul li{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  background: none;
  padding: 0;
}
.features ul li img{
  width: 32px; height: 32px;
  padding: 3px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 4px rgba(59,93,86,0.10);
}
.features h3 {
  color: var(--primary);
  font-weight: 800;
}

/* CTA SECTIONS */
.cta {
  background: var(--primary);
  color: #fff;
  padding: 48px 0;
  border-radius: 28px;
  margin: 56px 0 0 0;
  box-shadow: var(--box-shadow);
  text-align: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta a.button-primary {
  background: #fff;
  color: var(--primary) !important;
  border-radius: 24px;
  font-size: 1.15rem;
  margin-top: 18px;
  box-shadow: 0 4px 16px rgba(59,93,86,0.09);
}

.contact ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.contact ul li img {
  width: 22px; height: 22px;
  margin-right: 4px;
}

/* BUTTONS */
.button-primary, a.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  font-size: 1.18rem;
  font-weight: 900;
  background: var(--primary);
  color: #fff !important;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 3px 20px 0 rgba(59,93,86,0.08);
  letter-spacing: 0.08em;
  outline: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
  margin-top: 14px;
  margin-bottom: 14px;
}
.button-primary:hover, .button-primary:focus, a.button-primary:hover, a.button-primary:focus {
  background: var(--secondary);
  color: var(--primary) !important;
  transform: translateY(-1.5px) scale(1.025);
  box-shadow: 0 6px 28px rgba(59,93,86,0.16);
  text-decoration: none;
}

.button-secondary, a.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary) !important;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: #fff !important;
}

.button-danger {
  background: var(--danger);
  color: #fff !important;
}
.button-danger:hover, .button-danger:focus {
  background: #a91524;
}
.button-success {
  background: var(--success);
  color: #fff !important;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(59,93,86,0.04);
  border-radius: 0 0 26px 26px;
  position: relative;
  z-index: 30;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 8px 14px;
  color: var(--primary);
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav .button-primary {
  margin-left: 30px;
}
.main-nav img {
  width: 46px; height: auto;
  margin-right: 15px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 80px;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -8px 24px rgba(59,93,86,0.08);
}
footer .container {
  flex-direction: column;
}
.footer-brand img {
  width: 56px;
  margin-bottom: 20px;
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-contact strong {
  color: #fff;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.footer-nav a, .footer-legal a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 700;
  font-size: 0.99rem;
  transition: color 0.13s, text-decoration 0.15s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 900px) {
  footer .content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    justify-content: space-between;
  }
  .footer-brand {
    flex: 0 0 56px;
  }
  .footer-contact, .footer-nav, .footer-legal {
    flex: 1 1 0;
  }
}

/* ACCORDIONS/FAQ */
.faq-accordion > div {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: var(--box-shadow);
  transition: box-shadow 0.16s;
  position: relative;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  box-shadow: var(--shadow-intense);
}
.faq-accordion h3 {
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 9px;
}
.faq-contact a {
  display: inline-block;
  margin: 12px 0 0 0;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.faq-contact a:hover, .faq-contact a:focus {
  background: var(--primary);
  color: #fff;
}

/* LEGAL PAGES */
.legal {
  background: #fff;
  border-radius: 22px;
  padding: 42px 24px;
  margin: 36px 0;
  box-shadow: var(--box-shadow);
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal h2 { margin-top: 24px; }

/* CONFIRMATION / THANK YOU */
.confirmation {
  background: var(--secondary);
  border-radius: 22px;
  margin: 32px 0 56px 0;
  padding: 54px 10px 54px 10px;
  text-align: center;
}
.confirmation h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 18px;
}
.next-steps-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0;
}
.next-steps-info ul {
  list-style: disc inside;
}
.next-steps-info li {
  margin: 7px 0;
  color: var(--primary);
}

/* -- MOBILE MENU -- */
.mobile-menu-toggle {
  display: block;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 7px 24px 7px 12px;
  border-radius: 20px;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 102;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.82,-0.08,.52,.93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 4px 42px rgba(59,93,86,0.17);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.35rem;
  align-self: flex-end;
  margin: 24px 28px 14px 0;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1012;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding-left: 30px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
  letter-spacing: 0.07em;
  transition: color 0.14s, background 0.15s;
  border-radius: 0;
  width: 90%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--primary);
  padding-left: 17px;
}

@media (min-width: 900px) {
  .main-nav {
    justify-content: flex-start;
    flex-direction: row;
  }
  .main-nav, .mobile-menu, .mobile-nav {
    position: static;
  }
  .mobile-menu { display: none !important; }
}
@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
}

/* Responsive spacing between all cards/sections */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 700px) {
  section {
    padding: 25px 0;
    margin-bottom: 36px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 30px rgba(59,93,86,0.13);
  border-top: 3px solid var(--primary);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 16px 18px 16px;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(.68,-0.32,.5,1.42) 1;
}
.cookie-banner p {
  color: var(--text-main);
  line-height: 1.51;
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 6px;
  font-weight: 600;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 7px;
}
.cookie-actions .button-primary {
  padding: 10px 24px;
  font-size: 1rem;
}
.cookie-actions .button-secondary {
  padding: 10px 22px;
  font-size: 1rem;
}
.cookie-actions .button-danger {
  padding: 10px 22px;
  font-size: 1rem;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 120%);
  width: 95vw;
  max-width: 410px;
  min-width: 250px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 46px rgba(59,93,86,0.19);
  z-index: 1077;
  padding: 28px 24px 16px 24px;
  transition: transform 0.45s cubic-bezier(.46,1.67,.54,-0.28);
  visibility: hidden;
  opacity: 0;
}
#cookie-modal.active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
#cookie-modal h2 {
  margin-bottom: 17px;
  font-size: 1.3rem;
}
.cookie-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 700;
}
.cookie-toggle {
  width: 44px;
  height: 22px;
  border: none;
  border-radius: 24px;
  background: var(--secondary);
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--primary);
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.cookie-toggle[aria-checked="true"]:before {
  transform: translateX(20px);
}
#cookie-modal .button-primary, #cookie-modal .button-secondary {
  margin-top: 14px;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 7px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--primary);
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 12px;
  transition: background 0.13s, color 0.15s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 425px) {
  #cookie-modal {
    padding: 17px 8px 17px 8px;
  }
}

@keyframes cookieBannerSlideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

/* Animations for micro-interactions, hover etc. */
.button-primary,
.button-secondary,
.button-danger,
.card,
.card-content,
.testimonial-card,
.faq-accordion > div,
.mobile-menu,
.mobile-menu-toggle {
  transition: all 0.16s cubic-bezier(0.47,0.13,0.23,1);
}

::-webkit-scrollbar {
  width: 8px; background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary); border-radius: 10px;
}

/* Responsive adjustments for tighter viewports */
@media (max-width: 600px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .cta, .confirmation {
    border-radius: 16px;
    padding: 30px 8px;
  }
  footer {
    border-radius: 22px 22px 0 0;
    font-size: 0.99rem;
    padding: 18px 0 12px 0;
  }
  .content-wrapper {
    padding: 0 6px;
  }
  .card-content {
    padding: 12px 8px 18px 8px;
  }
}

/* Extra utility classes for geometric/bold shapes (Modern_Bold) */
.geometric-bg {
  background: repeating-linear-gradient(-35deg, var(--secondary), var(--secondary) 18px, var(--accent) 18px, var(--accent) 36px);
}
.rounded-hero {
  border-radius: 0 0 64px 64px;
}

/* Ensures no element overlap, always uses gap/margin */
section, .card, .card-container > *, .testimonial-card, .feature-item, .content-grid > * {
  margin-bottom: 20px;
}

/* END OF CSS */
