/* ==== CSS 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #f7eedc 0%, #f5f5f3 100%);
  color: #1E3B2C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1E3B2C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F7C873;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1E3B2C;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1E3B2C;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  color: #1E3B2C;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #23372B;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.18rem;
  color: #6B8076;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.93rem;
  color: #424242;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==== SECTIONS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background: transparent;
}
section:nth-of-type(even) {
  background: linear-gradient(99deg, #f7c87322 0%, #f5f5f340 95%);
  border-radius: 20px;
}

/* ==== FLEX LAYOUTS (MANDATORY) ==== */
.feature-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(30,59,44,0.09);
  margin-bottom: 20px;
  padding: 28px 24px;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(30,59,44,0.17);
  transform: translateY(-4px) scale(1.015);
  z-index: 1;
}
.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 28px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(30,59,44,0.14);
  margin-bottom: 28px;
  min-width: 240px;
  max-width: 540px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-weight: 500;
  color: #21342A;
}
.testimonial-card small {
  color: #5F674A;
}
.testimonial-card:hover {
  box-shadow: 0 7px 34px 0 rgba(30,59,44,0.19);
  transform: translateY(-4px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== BUTTONS & CTAs ==== */
.cta, .primary {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(90deg, #1E3B2C 60%, #F7C873 100%);
  color: #fff;
  border-radius: 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.23s, color 0.20s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 11px rgba(247,200,115,0.10);
  margin-top: 18px;
  margin-bottom: 6px;
  cursor: pointer;
  text-align: center;
}
.cta:hover, .primary:hover,
.cta:focus, .primary:focus {
  background: linear-gradient(90deg, #29482b 70%, #f7c873 100%);
  box-shadow: 0 5px 23px rgba(247,200,115,0.16);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  outline: none;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: linear-gradient(90deg, #1E3B2C 90%, #F7C873 200%);
  box-shadow: 0 2px 18px 0 rgba(30,59,44,0.09);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
header > a {
  margin-left: 22px;
  display: flex;
  align-items: center;
  height: 68px;
}
header img {
  height: 54px;
  width: auto;
  margin: 0 10px 0 0;
  display: block;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
header nav a {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat','Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 22px;
  transition: background 0.17s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #F7C873;
  color: #1E3B2C;
}
header nav a.cta.primary {
  background: #F7C873;
  color: #1E3B2C;
  margin-left: 12px;
  font-weight: 700;
  padding: 12px 26px;
}
header nav a.cta.primary:hover {
  background: #fff9eb;
  color: #1E3B2C;
}

/* ==== MOBILE NAV ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #F7C873;
  margin-right: 26px;
  z-index: 1003;
  padding: 11px 9px;
  border-radius: 7px;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f5f5f37a;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #1E3B2CEE;
  z-index: 2001;
  transform: translateX(-102vw);
  transition: transform 0.43s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: #F7C873;
  color: #1E3B2C;
  border-radius: 50%;
  font-size: 2.1rem;
  margin: 23px 29px 0 0;
  padding: 7px 14px;
  align-self: flex-end;
  border: none;
  transition: background 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #fff9eb;
  color: #1E3B2C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  width: 100%;
  margin-top: 26px;
  padding-right: 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 11px 23px;
  border-radius: 23px;
  width: auto;
  transition: background 0.14s, color 0.13s;
  margin: 0 0 0 8px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7C873;
  color: #1E3B2C;
}

/* Only show mobile menu toggle on mobile, hide nav */
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}

/* ==== FOOTER ==== */
footer {
  background: #21342A;
  color: #F5F5F3;
  padding: 36px 0 25px 0;
  font-size: 1.04rem;
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-nav a {
  color: #F7C873!important;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 18px;
  padding: 6px 13px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #f5f5f344;
  color: #21342A;
}
.footer-contact {
  color: #F5F5F3;
  font-size: 1rem;
}
.footer-contact p {
  margin-bottom: 9px;
  color: #F5F5F3;
}

/* ==== LIST STYLES ==== */
ul li, ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 1rem;
}
ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(134deg, #F7C873 50%, #1E3B2C 100%);
}
ul li strong { color: #1E3B2C; }

/* ==== ICONS IN CARDS ==== */
.feature-grid > div > img {
  width: 54px;
  height: 54px;
  margin-bottom: 9px;
  filter: drop-shadow(0 1px 8px #f7c87315);
}

/* ==== RESPONSIVE DESIGN (MOBILE-FIRST) ==== */
@media (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0 11px;
  }
  section {
    padding: 24px 4px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 3vw;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.3rem; }
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
  }
  .text-section {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .testimonial-card {
    padding: 18px 9px;
    max-width: 100vw;
  }
  footer .container {
    flex-direction: column;
    gap: 27px;
  }
}

@media (max-width: 510px) {
  h1, .h1 { font-size: 1.17rem; }
  h2, .h2 { font-size: 1.05rem; }
  .cta, .primary { font-size: 1rem; padding: 11px 18px; }
}

/* ==== SPACING/MARGINS between sections and elements ==== */
.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;
}

/* ==== ANIMATIONS, SHADOWS & HOVER MICROS ==== */
section, .card, .testimonial-card, .cta, .primary, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.23s, transform 0.19s, background 0.20s, filter 0.16s, opacity 0.22s;
}
section:hover, .card:hover, .testimonial-card:hover {
  filter: brightness(1.01) saturate(1.01);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffefb;
  box-shadow: 0 -4px 23px 0 rgba(30,59,44,0.10);
  border-top: 1px solid #F7C873;
  padding: 26px 18px 24px 18px;
  z-index: 4500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: opacity 0.32s, transform 0.39s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  color: #1E3B2C;
  font-size: 1rem;
  margin: 0 0 0 2px;
  flex: 1 1 0;
}
.cookie-banner .cookie-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 24px;
  border: none;
  background: #F7C873;
  color: #1E3B2C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.14s;
  margin: 0;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #1E3B2C;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #1E3B2C;
  border: 1px solid #F7C873;
  margin-left: 4px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #F7C873;
  color: #1E3B2C;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px 11px 19px 9px;
  }
  .cookie-banner .cookie-controls {
    align-self: flex-end;
    gap: 9px;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: #1E3B2C55;
  z-index: 4550;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.94);
  z-index: 4600;
  background: #fffefb;
  border-radius: 22px;
  box-shadow: 0 8px 48px 0 rgba(30,59,44,0.23);
  padding: 32px 32px 27px 32px;
  max-width: 96vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s, transform 0.31s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1.00);
}
.cookie-modal h2 {
  margin-bottom: 17px;
  font-size: 1.13rem;
  color: #1E3B2C;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #F5F5F3;
  border-radius: 12px;
  padding: 11px 17px 11px 11px;
  font-size: 1rem;
  color: #29482b;
}
.cookie-modal .cookie-option input[type="checkbox"],
.cookie-modal .cookie-option input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: #F7C873;
  margin-left: 13px;
  pointer-events: auto;
}
.cookie-modal .cookie-option.essential {
  opacity: 0.62;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 9px 19px;
  border-radius: 24px;
  border: none;
  background: #F7C873;
  color: #1E3B2C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal button:hover {
  background: #1E3B2C;
  color: #fff;
}
.cookie-modal .cookie-cancel {
  background: #fff;
  color: #1E3B2C;
  border: 1px solid #F7C873;
}
.cookie-modal .cookie-cancel:hover {
  background: #F7C873;
  color: #1E3B2C;
}

@media (max-width: 480px) {
  .cookie-modal {
    width: 93vw;
    min-width: unset;
    padding: 21px 6vw 17px 6vw;
  }
  .cookie-modal .cookie-option { font-size: 0.95rem; }
}

/* ==== GENERAL COMPONENTS, SECTIONS ==== */
main { width: 100%; min-height: 60vh; }

/* Card/feature responsiveness */
.feature-grid > div, .card-container > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(30,59,44,0.09);
  padding: 26px 23px 18px 23px;
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 217px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature-grid > div:hover, .card-container > div:hover {
  box-shadow: 0 6px 34px 0 rgba(247,200,115,0.17);
  transform: translateY(-3px) scale(1.036);
  z-index: 2;
}

/* ==== SCROLLBAR MODERN ==== */
body::-webkit-scrollbar {
  width: 11px;
  background: #F7C87333;
}
body::-webkit-scrollbar-thumb {
  background: #1E3B2C99;
  border-radius: 8px;
}

/* ==== FORM ELEMENTS (if present) ==== */
input, textarea, select {
  width: 100%;
  padding: 11px;
  font-size: 1rem;
  border: 1px solid #D7D7D7;
  border-radius: 8px;
  margin-bottom: 19px;
  background: #F5F5F3;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F7C873;
  background: #fff;
}

/* ==== UTILITIES ==== */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(100%);
  width:1px;
  height:1px;
  overflow:hidden;
  white-space:nowrap;
  border:0;
  padding:0;
  margin:0;
}

/* ==== FOCUS STYLES ==== */
a:focus, button:focus, input:focus, .cta:focus {
  outline: 2px solid #F7C873;
  outline-offset: 2px;
}

/* ==== PREVENT OVERLAPPING & SPACING ==== */
section, .feature-grid, .card, .testimonial-card, .content-wrapper, .card-container, .footer-nav, .text-image-section, .content-grid {
  margin-bottom: 0 !important;
}
section + section { margin-top: 0; margin-bottom: 60px; }
.feature-grid > div:not(:last-child), .card-container > div:not(:last-child) {
  margin-right: 0;
  margin-bottom: 0;
}

/* Minimum distance between content blocks */
section, .card, .testimonial-card, .feature-grid > div {
  margin-bottom: 24px !important;
}

/* Remove grid/columns related properties BEYOND THIS LINE */
/* No display: grid or CSS columns anywhere - ONLY FLEX! */