/* =============================================
   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, menu, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #f5f7fa;
  color: #235C69;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #235C69;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.16s;
}
a:hover, a:focus {
  color: #4D6722;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* =============================================
   BRAND COLORS, TYPOGRAPHY & BASE
   ============================================= */
:root {
  --va-primary: #235C69;
  --va-secondary: #E2EEDB;
  --va-bg: #FFFFFF;
  --va-accent: #4D6722;
  --va-gray-100: #F5F7FA;
  --va-gray-200: #DFE6ED;
  --va-gray-300: #BFCBD9;
  --va-gray-400: #879EB1;
  --va-gray-500: #405060;
  --va-error: #842029;
  --va-shadow: 0 2px 24px 0 rgba(35,92,105,0.07);
  --va-radius: 12px;
  --va-font-display: 'Merriweather', Georgia, 'Times New Roman', serif;
  --va-font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
  background: var(--va-gray-100);
  color: var(--va-primary);
  font-family: var(--va-font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--va-font-display);
  font-weight: 700;
  color: var(--va-primary);
  line-height: 1.2;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
.subheadline {
  font-family: var(--va-font-body);
  font-size: 1.15rem;
  color: var(--va-gray-500);
  margin-bottom: 32px;
}
p {
  margin-bottom: 18px;
  color: var(--va-primary);
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
}
li img {
  width: 24px;
  min-width: 24px;
  margin-right: 4px;
  vertical-align: middle;
}
address {
  font-style: normal;
  color: var(--va-gray-500);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

/* =============================================
   CONTAINER AND SECTION LAYOUTS
   ============================================= */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--va-bg);
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  position: relative;
}
.text-section {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* FLEXBOX CARD/STANDARD PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--va-bg);
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: 16px 0;
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  width: 100%;
  background: var(--va-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  box-shadow: 0 2px 12px rgba(35,92,105,0.05);
  padding: 0 32px;
  position: relative;
  z-index: 1040;
}
.logo {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 8px 0;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 1.05rem;
  font-family: var(--va-font-body);
}
.main-nav a {
  color: var(--va-primary);
  padding: 6px 0;
  transition: color 0.18s;
  position: relative;
  font-weight: 500;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--va-accent);
  transition: width 0.21s;
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-header {
  background: var(--va-accent);
  color: #fff;
  font-family: var(--va-font-body);
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 20px;
  margin-left: 28px;
  box-shadow: 0 1px 8px rgba(35,92,105,0.10);
  transition: background 0.2s, transform 0.15s;
  font-size: 1rem;
  letter-spacing: .03em;
  border: none;
  outline: none;
  display: inline-block;
}
.cta-header:hover, .cta-header:focus {
  background: #728D39;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* =============
   HERO SECTION
   ============= */
.hero {
  background: linear-gradient(138deg, var(--va-secondary) 60%, var(--va-gray-100) 100%);
  padding: 54px 0 44px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  padding: 0;
  max-width: 540px;
  margin: 0 auto;
  gap: 28px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
}
.cta-main {
  background: var(--va-primary);
  color: #fff;
  font-family: var(--va-font-body);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(35,92,105,0.10);
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.21s;
}
.cta-main:hover, .cta-main:focus {
  background: var(--va-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 22px rgba(35,92,105,0.17);
}

/*************************
   TESTIMONIALS & CARDS
**************************/
.testimonials {
  margin-bottom: 60px;
  padding: 32px 0 0 0;
  background: transparent;
}
.testimonials .content-wrapper {
  gap: 20px;
  padding: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--va-radius);
  box-shadow: 0 2px 14px 0 rgba(35,92,105,0.10);
  margin-bottom: 20px;
  min-width: 0;
  position: relative;
  font-size: 1.08rem;
  color: #1b3341;
}
.testimonial-card blockquote {
  font-family: var(--va-font-display);
  font-size: 1.08rem;
  color: #235C69;
  quotes: '\201C''\201D''\2018''\2019';
  margin-bottom: 6px;
  border-left: 4px solid var(--va-accent);
  padding-left: 16px;
}
.testimonial-author {
  font-family: var(--va-font-body);
  color: #4D6722;
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: 2px;
}

/*************************
   CTA SECTION
**************************/
.cta-section {
  margin-bottom: 0;
  background: var(--va-secondary);
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  padding: 56px 0 52px 0;
}
.cta-section .container {
  flex-direction: column;
  align-items: center;
}

.newsletter-box {
  margin-top: 10px;
  background: var(--va-primary);
  color: #fff;
  padding: 18px 28px;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: 0 1px 10px rgba(35,92,105,0.04);
  display: inline-block;
}

/* =============================
   FOOTER
   ============================= */
footer {
  width: 100%;
  background: var(--va-primary);
  color: #fff;
  margin-top: auto;
  padding: 36px 0 18px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 18px rgba(35,92,105,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.01em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.footer-nav a {
  color: #fff;
  opacity: .92;
  padding: 0 5px;
  transition: color 0.14s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--va-secondary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.99rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #eafdfe;
  opacity: 0.96;
}
.footer-contact img {
  width: 20px;
  height: auto;
  margin-right: 2px;
}
.footer-credit {
  text-align: center;
  color: #d1e6eb;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ===========================================
   MAP PLACEHOLDER, MISCELLANEOUS COMPS
   =========================================== */
.map-placeholder {
  width: 100%;
  background: var(--va-gray-200);
  color: var(--va-gray-500);
  border-radius: var(--va-radius);
  padding: 28px 20px;
  font-size: 1rem;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 16px;
  border: 1.5px dashed var(--va-gray-400);
}

/* =============================================
   MOBILE NAVIGATION (BURGER MENU)
   ============================================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 22px;
  background: var(--va-primary);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1.7rem;
  box-shadow: 0 3px 14px rgba(35,92,105,.07);
  z-index: 1100;
  transition: background 0.19s, color 0.18s;
  border: none;
}
.mobile-menu-toggle:focus {
  background: var(--va-accent);
  outline: 2px solid var(--va-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 92, 105, .96);
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(.85,0,.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(.75,0,.28,1), opacity 0.27s;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 24px 16px 0;
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  padding: 3px 18px 3px 3px;
  cursor: pointer;
  transition: background 0.14s, color 0.19s;
}
.mobile-menu-close:focus {
  background: var(--va-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0 36px;
  margin-top: 14px;
  width: calc(100vw - 72px);
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 14px 10px 10px 0;
  font-family: var(--va-font-body);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.17s, text-decoration 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:active, .mobile-nav a:focus {
  color: var(--va-secondary);
  outline: none;
  text-decoration: underline;
}

/********************************************
   RESPONSIVE DESIGN (MOBILE-FIRST APPROACH)
********************************************/
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header {
    padding: 0 12px;
  }
  .main-nav {
    gap: 16px;
  }
  .footer-contact {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header {
    flex-direction: row;
    align-items: center;
    min-height: 68px;
    padding: 0 8px 0 10px;
  }
  .logo img {
    height: 32px;
  }
  .main-nav {
    display: none;
  }
  .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
  .card {
    padding: 16px;
    margin-bottom: 16px;
  }
  .testimonials {
    padding: 20px 0 0 0;
  }
  .testimonial-card {
    padding: 14px;
  }
  .cta-main {
    width: 100%;
    text-align: center;
    padding: 13px 0;
    font-size: 1rem;
  }
  .cta-section {
    padding: 32px 0 28px 0;
    border-radius: 12px;
  }
  .newsletter-box {
    padding: 12px 12px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 12px;
    font-size: 0.97rem;
  }
  footer {
    padding: 20px 0 10px 0;
  }
  h1 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 11px;
  }
}
@media (max-width: 520px) {
  .container {
    max-width: 100vw;
    padding-left: 4px;
    padding-right: 4px;
  }
  .hero .content-wrapper, .content-wrapper {
    gap: 9px;
  }
  .section {
    margin-bottom: 18px;
    padding: 12px 2px;
  }
  .map-placeholder {
    padding: 15px 5px;
    font-size: 0.96rem;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
}

/* =========================
   TRANSITIONS & EFFECTS
   ========================= */
.section, .testimonial-card, .card {
  transition: box-shadow 0.19s, transform 0.15s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(35,92,105,0.14);
  transform: translateY(-2px) scale(1.012);
}

/***********************
   COOKIE CONSENT BANNER
***********************/
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(35,92,105,0.17);
  color: var(--va-primary);
  font-size: 1rem;
  padding: 22px 28px 18px 28px;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: opacity 0.34s, transform 0.21s;
  opacity: 1;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(64px);
}
.cookie-banner strong {
  font-family: var(--va-font-body);
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 3px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  padding: 9px 22px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(35,92,105,0.08);
  font-family: var(--va-font-body);
  font-size: 1rem;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
  outline: none;
}
.cookie-btn-accept {
  background: var(--va-accent);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #728D39;
  color: #fff;
  box-shadow: 0 2px 10px rgba(77,103,34,0.10);
}
.cookie-btn-reject {
  background: var(--va-gray-300);
  color: var(--va-primary);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #dbe7ef;
  color: #4D6722;
}
.cookie-btn-settings {
  background: var(--va-secondary);
  color: var(--va-primary);
  border: 1.2px solid var(--va-gray-300);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  border-color: var(--va-accent);
  background: #f8fdf6;
  color: var(--va-accent);
}

/**************************
   COOKIE PREFERENCES MODAL
***************************/
.cookie-modal {
  position: fixed;
  z-index: 1800;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35, 92, 105, 0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 40px rgba(35,92,105,0.15);
  padding: 38px 28px 26px 28px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  outline: none;
}
.cookie-modal-content h2 {
  font-family: var(--va-font-display);
  font-size: 1.25rem;
  color: var(--va-primary);
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.8rem;
  color: var(--va-primary);
  background: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 4px 13px 4px 4px;
  transition: color 0.17s, background 0.16s;
}
.cookie-modal-close:focus {
  background: var(--va-gray-300);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--va-font-body);
  font-size: 0.99rem;
}
.cookie-toggle {
  margin-left: auto;
  display: block;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  outline: none;
  width: 38px;
  height: 22px;
  background: var(--va-gray-300);
  border-radius: 12px;
  position: relative;
  transition: background 0.17s;
  box-shadow: 0 1.5px 6px rgba(35,92,105,0.06);
}
.cookie-toggle input[type="checkbox"]:checked {
  background: var(--va-accent);
}
.cookie-toggle input[type="checkbox"]::before {
  content: "";
  display: block;
  position: absolute;
  left: 4px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 .5px 5px rgba(35,92,105,0.09);
}
.cookie-toggle input[type="checkbox"]:checked::before {
  left: 18px;
}
.cookie-category-desc {
  color: var(--va-gray-500);
  font-size: .96rem;
  margin-left: 4px;
}
/*********************************
   UTILITIES & HELPER CLASSES
**********************************/
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.mt-2 { margin-top: 12px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mt-4 { margin-top: 24px !important; }
.mb-4 { margin-bottom: 24px !important; }

/*********************************
   ANIMATIONS
**********************************/
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero, .cta-section, .testimonials, .card {
  animation: slideUpFade 0.9s cubic-bezier(.77,.07,.44,1.13);
}

/*********************************
   FOCUS STATES & ACCESSIBILITY
**********************************/
a:focus, button:focus, .cta-main:focus, .cta-header:focus, .cookie-btn:focus, .cookie-btn-accept:focus, .cookie-btn-reject:focus, .cookie-btn-settings:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--va-accent);
  outline-offset: 2.5px;
}

