/* RESET & BASE STYLES */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, #B7CE63 0%, #204664 100%);
  color: #204664;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: #204664;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B7CE63;
}
img, svg {
  max-width: 100%;
  display: block;
  vertical-align: middle;
  height: auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #204664;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
.subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  color: #204664;
}
p {
  color: #204664;
  margin-bottom: 18px;
  line-height: 1.7;
}
strong {
  font-weight: 600;
}
address {
  font-style: normal;
  color: #204664;
  line-height: 1.7;
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  align-items: center;
  text-align: center;
}

/* SECTIONS & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32, 70, 100, 0.09);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(32, 70, 100, 0.14), 0 1.5px 8px rgba(183,206,99,0.16);
  transform: translateY(-6px) scale(1.02);
}
.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-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px 0 rgba(32,70,100,0.09);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 250px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 22px 0 rgba(32,70,100,0.12), 0 1.5px 8px 0 rgba(183,206,99,0.13);
}

.faq-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgab(32,70,100,0.09);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.faq-card h3 {
  font-size: 1.13rem;
  color: #204664;
  margin-bottom: 10px;
}
.faq-card p {
  font-size: 1rem;
}


/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32, 70, 100, 0.11);
  color: #204664;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 560px;
}
.testimonial-card p {
  color: #204664;
  font-size: 1.12rem;
  line-height: 1.7;
}
.testimonial-card span {
  color: #204664;
  font-size: 1rem;
  font-style: italic;
  opacity: 0.8;
}

/* MAIN NAVIGATION */
header {
  background: linear-gradient(90deg, #B7CE63 3%, #fff 49%, #B7CE63 97%);
  box-shadow: 0 2px 8px rgba(32, 70, 100, 0.04);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.main-nav a {
  color: #204664;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a.cta-button {
  background: linear-gradient(90deg, #204664 26%, #B7CE63 100%);
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 22px;
  margin-left: auto;
  box-shadow: 0 2px 10px rgba(32, 70, 100, 0.09);
  transition: background 0.14s, transform 0.16s, color 0.13s;
}
.main-nav a.cta-button:hover, .main-nav a.cta-button:focus {
  background: #204664;
  color: #B7CE63;
  transform: translateY(-3px) scale(1.04);
}
.main-nav a:hover, .main-nav a:focus {
  background: #B7CE63;
  color: #204664;
}
.main-nav img {
  height: 34px;
  width: auto;
  margin-right: 14px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #204664;
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 50;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B7CE63;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.7, -.2, .2, 1) 0s;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 3px 0 20px rgba(32,70,100,0.07);
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #204664;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 101;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B7CE63;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  width: 100%;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #204664;
  text-decoration: none;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid #f1f5f3;
  transition: color 0.16s, background 0.14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #B7CE63;
  border-radius: 8px;
  padding-left: 8px;
}

/* FOOTER */
footer {
  color: #204664;
  background: linear-gradient(90deg, #fff 50%, #B7CE63 100%);
  padding: 38px 0 24px;
  font-size: 1rem;
}
footer .container {
  max-width: 1160px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #204664;
  transition: color 0.14s;
  font-weight: 500;
  font-size: 1rem;
}
footer nav a:hover {
  color: #B7CE63;
}
footer address {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.97rem;
  color: #204664;
  margin-top: 8px;
}
footer address img {
  height: 32px;
  margin-bottom: 7px;
  margin-right: 6px;
  display: inline-block;
}

/* BUTTONS & CTA */
.cta-button, .cookie-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.11rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: linear-gradient(90deg, #204664 10%, #B7CE63 90%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(32,70,100,0.09);
  transition: background 0.19s, color 0.15s, transform 0.17s, box-shadow 0.21s;
  cursor: pointer;
  margin-top: 10px;
}
.cta-button:hover, .cta-button:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #204664;
  color: #B7CE63;
  transform: translateY(-3px) scale(1.03);
}

/* Cookie Banner and Modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #204664;
  box-shadow: 0 -2px 18px rgba(32,70,100,0.13);
  padding: 24px 16px 18px 16px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.4s, opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(200px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #204664;
  text-align: center;
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.cookie-btn {
  font-size: 1rem;
  background: linear-gradient(90deg, #204664 10%, #B7CE63 100%);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(32,70,100,0.09);
  margin: 0;
}
.cookie-btn.reject {
  background: #B7CE63;
  color: #204664;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #204664;
  color: #B7CE63;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 201;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,70,100,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #204664;
  border-radius: 18px;
  box-shadow: 0 5px 30px rgba(32,70,100,0.17);
  max-width: 440px;
  padding: 38px 32px 28px;
  text-align: left;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle label {
  font-size: 1rem;
  font-weight: 500;
  color: #204664;
  cursor: pointer;
}
.cookie-modal .cookie-btn-group {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #204664;
  cursor: pointer;
}

/* FORMS & INPUTS */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: #204664;
  border-radius: 7px;
  border: 1.4px solid #B7CE63;
  padding: 10px 14px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.13s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #204664;
  box-shadow: 0 0 0 3px #B7CE6333;
}

/* LISTS */
ul, ol {
  margin-left: 1.1em;
  margin-bottom: 18px;
}
ul li, ol li {
  padding-left: 5px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.48;
}

/* UTILS */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .container {
    max-width: 95vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 20px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-section, .content-wrapper.text-section {
    align-items: center;
    text-align: center;
  }
  .content-grid,
  .feature-grid,
  .features,
  .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 8px;
  }
  .faq-card {
    padding: 16px 10px;
  }
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .cta-button, .cookie-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
  .cookie-modal {
    padding: 26px 7vw 20px;
    min-width: 0;
    max-width: 96vw;
  }
  footer address img, .main-nav img, footer address img {
    height: 20px !important;
  }
}

/* MICRO-ANIMATIONS */
.cta-button, .cookie-btn {
  will-change: background, color, transform, box-shadow;
}
.card, .feature-grid > div, .faq-card {
  will-change: box-shadow, transform;
}
.testimonial-card {
  will-change: box-shadow, transform;
}

/* OVERRIDE: Keep no overlap */
.card, .feature-grid > div, .testimonial-card, .faq-card {
  margin-right: 0;
  margin-left: 0;
  margin-top: 0;
}

/* END OF STYLE */