/* ----------------------------------------------------------
   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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #22313a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%; height: auto; display: block;
}
ul,ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #205081;
  transition: color 0.15s;
}
a:focus,
a:hover {
  color: #61A06A;
  outline: none;
}
button,input,select,textarea {
  font-family: inherit; font-size: inherit;
  border: none; outline: none; background: none;
}
strong {
  font-weight: bold;
}

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES (w/ fallbacks)
---------------------------------------------------------- */
:root {
  --fz-h1: 2.5rem;
  --fz-h2: 1.75rem;
  --fz-h3: 1.25rem;
  --fz-body: 1rem;
  --brand-primary: #205081;
  --brand-secondary: #61A06A;
  --brand-accent: #F6F3E3;
  --brand-bg: #fff;
  --shadow: 0 2px 12px rgba(32, 80, 129, 0.06);
  --card-radius: 14px;
  --border-color: #E6E8EA;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ----------------------------------------------------------
   BASE TYPOGRAPHY
---------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
  color: #205081;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: var(--fz-h1, 2.5rem);
  line-height: 1.18;
  margin-bottom: 24px;
}
h2 {
  font-size: var(--fz-h2, 1.75rem);
  margin-bottom: 20px;
  line-height: 1.24;
}
h3 {
  font-size: var(--fz-h3, 1.25rem);
  margin-bottom: 12px;
  line-height: 1.32;
}
p, li {
  font-size: var(--fz-body, 1rem);
  color: #22313a;
  line-height: 1.65;
}
.subheadline {
  color: #61A06A;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-family: 'Raleway', Arial, sans-serif;
}
ul,ol {
  margin-bottom: 24px;
  padding-left: 18px;
}
ul li,
ol li {
  position: relative;
  margin-bottom: 10px; 
  padding-left: 18px;
}
ul li:before {
  content: ""; 
  position: absolute;
  left: 0; top: 9px; width: 6px; height: 6px;
  background: #61A06A; border-radius: 50%; display: inline-block;
}

/* ----------------------------------------------------------
   CONTAINER & SPACING
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   HEADER / NAVIGATION
---------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  color: #205081;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a:focus {
  background: #F6F3E3;
  color: #61A06A;
}
.cta-button {
  background: #61A06A;
  color: #fff !important;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(97,160,106,0.13);
  letter-spacing: 0.01em;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-left: 22px;
}
.cta-button:hover, .cta-button:focus {
  background: #205081;
  color: #fff;
  box-shadow: 0 4px 18px rgba(32,80,129,0.07);
}
header img, .footer-brand img {
  height: 36px;
  width: auto;
  max-width: 160px;
}

/* ----------------------------------------------------------
   MOBILE BURGER MENU
---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  padding: 8px 10px;
  border-radius: 7px;
  color: #205081;
  border: 1.5px solid #E6E8EA;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F6F3E3;
  box-shadow: 0 2px 10px rgba(32, 80, 129, 0.04);
  color: #61A06A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 32px rgba(32, 80, 129, 0.10);
  z-index: 1300;
  padding: 34px 26px 60px 26px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.5,0,0.3,1), opacity 0.2s;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #205081;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F6F3E3;
  color: #61A06A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  padding: 10px 2px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #205081;
  border-radius: 7px;
  background: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F6F3E3;
  color: #61A06A;
}

/* ----------------------------------------------------------
   MAIN LAYOUT & FLEX PATTERNS
---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 240px;
  max-width: 360px;
}
.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;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  background: #F6F3E3;
  color: #1D2A35;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(32, 80, 129, 0.07);
  padding: 20px 24px 18px 24px;
  border: 1.5px solid #edead7;
  font-size: 1rem;
  min-width: 220px;
  max-width: 560px;
}
.testimonial-card p {
  font-size: 1.10rem;
  color: #205081;
  font-family: 'Raleway', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  color: #61A06A;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.feature-block {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #eaeaea;
  min-width: 220px; max-width: 320px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-block:hover,
.feature-block:focus-within {
  box-shadow: 0 6px 24px rgba(32, 80, 129, 0.10);
  transform: translateY(-3px) scale(1.012);
}
.text-section {
  margin-bottom: 20px;
}
.callout, .howto, .seasonal-note {
  background: #faf8f2;
  border-left: 5px solid #61A06A;
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 18px;
}
.quicklinks {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px rgba(32, 80, 129, 0.05);
  padding: 18px 18px 14px 18px;
  border: 1px solid #E6E8EA;
}

/* ----------------------------------------------------------
   WEATHER WIDGET
---------------------------------------------------------- */
.weather-widget {
  background: #20508110;
  padding: 18px 22px;
  border-radius: 9px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #205081;
  font-family: 'Raleway', Arial,sans-serif;
  font-size: 1.05rem;
}
.weather-tips {
  margin-bottom: 18px;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  background: #F6F3E3;
  border-top: 1.5px solid #edead7;
  padding-top: 36px;
  margin-top: 32px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 38px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
}
.footer-brand {
  flex: 0 1 120px;
  margin-bottom: 18px;
}
.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: #205081;
}
.footer-contact img {
  width: 18px; height: 18px; margin-right: 8px; vertical-align: middle;
}
.footer-bottom {
  font-size: 0.95rem;
  color: #b9bdb2;
  text-align: right;
  padding: 14px 20px 26px 20px;
}
footer a {
  color: #205081;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color var(--transition);
}
footer a:hover, footer a:focus {
  color: #61A06A;
}

/* ----------------------------------------------------------
   BUTTONS, FORMS, MICRO-INTERACTIONS
---------------------------------------------------------- */
button, .cta-button {
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
button:active, .cta-button:active {
  transform: scale(0.97);
}
input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 7px;
  background: #fff;
  border: 1.5px solid #E6E8EA;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  border-color: #61A06A;
  box-shadow: 0 2px 8px rgba(97,160,106,0.11);
}

/* ----------------------------------------------------------
   RESPONSIVE FLEX & LAYOUT
---------------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 26px 0;
  }
  footer .container {
    gap: 12px 18px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 7px;
  }
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-block, .card {
    max-width: 100%; min-width: 0;
  }
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 22px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    padding: 18px 14px 13px 14px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .footer-bottom {
    text-align: left;
    padding: 10px 0 18px 0;
  }
  .footer-links, .footer-legal, .footer-contact {
    margin-bottom: 16px;
  }
}
@media (max-width: 450px) {
  .section {
    padding: 28px 4vw;
  }
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER & PREFERENCES MODAL
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-top: 2.2px solid #E6E8EA;
  box-shadow: 0 -2px 18px 0 rgba(32, 80, 129, 0.07);
  padding: 16px 30px;
  z-index: 2000;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(0.5,0,0.3,1), opacity 0.18s;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__message {
  flex: 1 1 340px;
  color: #205081;
  font-size: 1rem;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #205081;
  color: #fff;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #61A06A;
  color: #fff;
  box-shadow: 0 1px 7px 0 rgba(97,160,106,0.13);
}
.cookie-btn.cookie-settings {
  background: #F6F3E3;
  color: #205081;
  border: 1.5px solid #edead7;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #e3e0d2;
  color: #61A06A;
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32, 80, 129, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 32px 2px rgba(32, 80, 129, .17);
  padding: 34px 32px 22px 32px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  opacity: 1;
  animation: fadeInScale 0.23s cubic-bezier(0.3,0.6,0.6,1) 1;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: #205081;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.cookie-toggle-label {
  font-size: 1rem;
  color: #22313a;
}
.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E6E8EA;
  border-radius: 20px;
  transition: background 0.18s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: #61A06A;
}
.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  left: 2.5px;
  top: 2.5px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px #b7babe13;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  background: none;
  border: none;
  font-size: 1.95rem;
  color: #205081;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 7px;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-close:hover {
  background: #F6F3E3;
  color: #61A06A;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 9vw;
    align-items: flex-start;
  }
  .cookie-modal {
    max-width: 95vw;
    min-width: 0;
    padding: 24px 12px 18px 12px;
  }
}

/* ----------------------------------------------------------
   VISUAL ELEMENTS/MISC
---------------------------------------------------------- */
hr {
  border: none;
  border-top: 1.5px solid #ebeae8;
  margin: 36px 0;
}
::-webkit-input-placeholder { color: #b6bab4; }
::-moz-placeholder { color: #b6bab4; }
:-ms-input-placeholder { color: #b6bab4; }
::placeholder { color: #b6bab4; }

/* Focus accessibility */
a:focus, button:focus {
  outline: 2px solid #20508133;
  outline-offset: 2px;
}

/* Hide visually (for screen readers etc.) */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Utility for desktop-only and mobile-only */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* ----------------------------------------------------------
   END
---------------------------------------------------------- */
