/* === 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, 
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;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FFFFFF;
  color: #204A43;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.77,.2,.05,1);
}
ul, ol {
  list-style: none;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  outline: none;
}
input, textarea, select {
  font: inherit;
  color: inherit;
}

/* === CSS VARIABLES (BRAND) === */
:root {
  --color-primary: #204A43;
  --color-secondary: #FCD581;
  --color-accent: #207A73;
  --color-bg: #FFFFFF;
  --color-card: #F5F8FA;
  --color-shadow: rgba(32,74,67,0.07);
  --color-text: #204A43;
  --color-heading: #204A43;
  --color-link: #207A73;
  --color-link-hover: #204A43;
  --radius-outer: 18px;
  --radius-mid: 14px;
  --radius-inner: 8px;
  --shadow-card: 0 2px 12px 0 var(--color-shadow);
  --shadow-light: 0 1px 5px 0 rgba(32,74,67,0.04);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* === TYPOGRAPHY === */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: 0.02em; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.15; }
h3 { font-size: 1.32rem; margin-bottom: 10px; line-height: 1.22; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
.subtitle {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
p, ul, ol, li, label {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
.text-section, .content-wrapper > p { max-width: 720px; }
.text-section h3 { margin-top: 12px; }
.text-section .price { font-size: 1.2rem; color: var(--color-accent); font-weight: 700; }

/* === STRUCTURED LAYOUT CONTAINERS === */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--radius-mid);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s cubic-bezier(.77,.2,.05,1), transform 0.18s cubic-bezier(.77,.2,.05,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover {
  box-shadow: 0 4px 16px 0 rgba(32,122,115,0.15);
  transform: translateY(-3px) scale(1.015);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius-inner);
  background: var(--color-card);
  box-shadow: var(--shadow-light);
  min-width: 215px;
  flex: 1 1 215px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s cubic-bezier(.77,.2,.05,1);
}
.feature-item:hover {
  box-shadow: 0 2px 14px 0 rgba(32,122,115,0.11);
}

/* === HERO SECTION === */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, var(--color-secondary) 0 50%, var(--color-bg) 100%);
  padding: 56px 0 32px 0;
  margin-bottom: 40px;
  border-radius: 0 0 var(--radius-outer) var(--radius-outer);
  box-shadow: 0 2px 12px 0 rgba(32,74,67,0.04);
  min-height: 320px;
}
.hero .content-wrapper { gap:18px; }
.hero h1 { color: var(--color-primary); }
.hero p.subtitle { color: var(--color-accent); }
.hero .cta-button { margin-top: 16px; }

/* === NAVIGATION BAR === */
header {
  background: var(--color-primary);
  color: #FFF;
  padding: 0;
  box-shadow: 0 3px 11px -4px rgba(32,74,67,0.12);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
header img {
  max-height: 38px;
  margin-right: 14px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.11rem;
  padding: 5px 14px;
  border-radius: 7px;
  transition: background 0.16s cubic-bezier(.77,.2,.05,1), color 0.14s cubic-bezier(.77,.2,.05,1);
  letter-spacing: 0.01em;
}
nav a:hover, nav a:focus {
  background: var(--color-accent);
  color: #FFF;
}
.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 26px;
  margin-left: 14px;
  margin-bottom: 0;
  border-radius: 7px;
  font-size: 1.11rem;
  background: var(--color-accent);
  color: #FFF;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(32,122,115,0.07);
  transition: background 0.18s cubic-bezier(.77,.2,.05,1), transform 0.16s cubic-bezier(.77,.2,.05,1), box-shadow 0.14s cubic-bezier(.77,.2,.05,1);
  cursor: pointer;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #FCD581;
  transform: translateY(-1.5px) scale(1.025);
  box-shadow: 0 4px 18px 0 rgba(32,122,115,0.09);
}
.cta-button.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* === FEATURE GRID === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-grid > div {
  background: var(--color-card);
  border-radius: var(--radius-inner);
  box-shadow: var(--shadow-light);
  padding: 30px 22px 22px 22px;
  text-align: center;
  min-width: 215px;
  flex: 1 1 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow 0.17s cubic-bezier(.77,.2,.05,1);
}
.feature-grid > div:hover {
  box-shadow: 0 4px 22px 0 rgba(32,122,115,0.11);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

/* === TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FFF;
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-inner);
  box-shadow: var(--shadow-card);
  flex: 1 1 295px;
  margin-bottom: 20px;
  min-width: 220px;
  color: #203d3b;
  font-size: 1.05rem;
  position: relative;
  transition: box-shadow 0.18s cubic-bezier(.77,.2,.05,1);
}
.testimonial-card:hover {
  box-shadow: 0 4px 21px 0 rgba(32,122,115,0.13);
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.05rem;
  color: #203d3b;
  letter-spacing: 0.01em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-accent);
  font-weight: 700;
}

/* === MAIN CONTENT === */
ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 30px;
}
ul li img {
  min-width: 24px;
  height: 24px;
  margin-right: 8px;
}
ul > li:last-child {
  margin-bottom: 0;
}

/* === FOOTER === */
footer {
  padding: 44px 0 24px 0;
  background: var(--color-primary);
  color: #FFF;
  font-size: 1.08rem;
  border-top-left-radius: var(--radius-outer);
  border-top-right-radius: var(--radius-outer);
  box-shadow: 0 -2px 12px -3px rgba(32,74,67,0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-nav a {
  color: #FFF;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.14s cubic-bezier(.77,.2,.05,1);
  font-size: 1rem;
  font-family: var(--font-display);
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-accent);
  color: #FFF;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
}
.footer-brand span {
  color: #FFF;
  font-size: 0.97rem;
  font-family: var(--font-body);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  color: var(--color-secondary);
  border: none;
  transition: color 0.18s cubic-bezier(.77,.2,.05,1);
  margin-left: auto;
}
.mobile-menu-toggle:focus {
  color: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,74,67,0.97);
  z-index: 2005;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 28px 24px 28px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100vw);
  transition: opacity 0.25s cubic-bezier(.77,.2,.05,1), transform 0.31s cubic-bezier(.77,.2,.05,1);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 38px;
  cursor: pointer;
  transition: color 0.16s cubic-bezier(.77,.2,.05,1);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.45rem;
  padding: 13px 0;
  border-radius: 0 7px 7px 0;
  transition: background 0.14s cubic-bezier(.77,.2,.05,1);
  text-align: left;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-accent);
  color: #FFF;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 5002;
  background: var(--color-card);
  box-shadow: 0 -3px 18px 0 rgba(32,74,67,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 15px 18px 15px;
  border-top: 4px solid var(--color-accent);
  flex-wrap: wrap;
  opacity: 0; pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.22s cubic-bezier(.77,.2,.05,1), transform 0.28s cubic-bezier(.77,.2,.05,1);
}
.cookie-banner.active {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: var(--color-text);
  margin: 0 0 2px 0;
  font-size: 1rem;
  max-width: 440px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: var(--font-display);
  border: none;
  background: var(--color-accent);
  color: #FFF;
  margin-right: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 7px 0 rgba(32,122,115,0.06);
  transition: background 0.18s cubic-bezier(.77,.2,.05,1), color 0.14s cubic-bezier(.77,.2,.05,1);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--color-accent);
  color: #FFF;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  z-index: 5022;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius-mid);
  box-shadow: 0 6px 42px 0 rgba(32,74,67,0.13);
  transform: translate(-50%, 80%);
  padding: 32px 22px 28px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s cubic-bezier(.77,.2,.05,1), transform 0.34s cubic-bezier(.77,.2,.05,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
  gap: 16px;
}
.cookie-modal .cookie-category label {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-text);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-accent);
}
.cookie-modal .cookie-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .cookie-btn { margin-right: 0; }
.cookie-modal .essential {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.8rem;
  cursor: pointer;
}

/* === GEOMETRIC/STRUCTURED DECORATIVE ELEMENTS === */
.card, .feature-grid > div, .feature-item {
  border-radius: var(--radius-inner);
  box-shadow: var(--shadow-card);
}
.section, .hero, footer {
  border-radius: var(--radius-outer);
}

/* === BUTTONS === */
button, .cta-button, .cookie-btn {
  transition: background 0.17s, color 0.14s, box-shadow 0.12s, transform 0.15s cubic-bezier(.77,.2,.05,1);
  outline: none;
}
button:focus, .cta-button:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 2px var(--color-secondary);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1050px) {
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .section { padding: 32px 6px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    height: auto;
    gap: 8px;
    min-height: 62px;
  }
  nav {
    display: none !important;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-nav, .footer-brand {
    justify-content: flex-start;
    margin-top: 12px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .section { padding: 28px 3px; margin-bottom: 38px; }
}
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .container { padding-left: 5px; padding-right: 5px; }
  .section { padding: 24px 0; }
  .hero { min-height: 220px; padding: 32px 0 14px 0; }
  .feature-grid, .content-grid, .card-container {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .footer-brand img { width: 21px; height: 21px; }
  .cookie-modal { padding: 13vw 4vw; max-width: 97vw; }
  .hero { border-radius: 0; }
}
@media (max-width: 410px) {
  .hero .container { padding-left: 0; padding-right: 0; }
  .section { padding: 1vw 0vw; }
}

/* === FLEXBOX COLUMN/ROW SWITCHES === */
@media (max-width: 940px) {
  .content-grid, .text-image-section { flex-direction: column; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mb-2 { margin-bottom: 16px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* === GEOMETRIC STRUCTURE ADDITIONS === */
.section {
  background: linear-gradient(102deg, #f5f6f9 0 80%, #fff 100%);
  border-radius: var(--radius-outer);
  box-shadow: 0 2px 23px -12px rgba(32,74,67,0.08);
}

/* === MICRO-INTERACTIONS === */
.card:active, .cta-button:active, .feature-item:active {
  box-shadow: 0 2px 7px 0 rgba(32,122,115,0.09);
  transform: scale(0.98);
}

/* === GEOMETRIC FONT STYLES === */
h1, h2, h3, .cta-button, .cookie-btn, .footer-nav a, nav a, .mobile-nav a {
  font-family: var(--font-display), Arial, sans-serif;
  text-transform: none;
  font-variation-settings: "wdth" 120, "wght" 700;
  letter-spacing: 0.02em;
}

/* === FORM ELEMENTS === */
input, textarea, select {
  border: 2.5px solid var(--color-accent);
  border-radius: 7px;
  padding: 11px 13px;
  font-size: 1.05rem;
  background: #fff;
  margin-bottom: 13px;
  transition: border 0.14s cubic-bezier(.77,.2,.05,1);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}

/* === HIDE SCROLL ON MOBILE MENU OPEN === */
html.mobile-menu-open {
  overflow: hidden;
}

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