/* 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 {
  box-sizing: border-box;
  height: 100%;
  background: #F6EEDB;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #F6EEDB 0%, #7DCC70 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #234362;
  line-height: 1.7;
  font-size: 16px;
  transition: background 0.6s;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #234362;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7DCC70;
  outline: none;
}
ul, ol {
  margin: 0 0 20px 24px;
  padding: 0;
}
li {
  margin-bottom: 12px;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #234362;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}
p, .subheadline {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #234362;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #7DCC70;
  font-weight: 600;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.75);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(35,67,98,0.04);
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  padding: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  padding-right: 0;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(35,67,98,0.08);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(35,67,98,0.15);
  transform: translateY(-3px);
  z-index: 1;
}
/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35, 67, 98, 0.09);
  margin-bottom: 24px;
  min-width: 200px;
  max-width: 400px;
  color: #234362;
}
.testimonial-card p {
  color: #234362;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #7DCC70;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.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;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 32px;
  padding: 13px 34px;
  transition: background 0.25s, color 0.18s, box-shadow 0.18s, border 0.25s;
  box-shadow: 0 2px 8px rgba(35,67,98,0.10);
}
.btn-primary {
  background: linear-gradient(90deg, #7DCC70 0%, #234362 100%);
  color: #fff;
  margin-right: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #234362 0%, #7DCC70 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(35,67,98,0.18);
}
.btn-secondary {
  background: #fff;
  color: #234362;
  border: 2px solid #7DCC70;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #7DCC70;
  color: #fff;
  border: 2px solid #234362;
}
/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(35,67,98,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
header img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a:not(.btn-primary) {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234362;
  padding: 7px 0;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
nav a:not(.btn-primary):hover, nav a:not(.btn-primary):focus {
  background: #F6EEDB;
  color: #7DCC70;
}
nav .btn-primary {
  margin-left: 18px;
  font-size: 1.13rem;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #234362;
  cursor: pointer;
  margin-left: 16px;
  z-index: 90;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #7DCC70;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 67, 98, 0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1);
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 2px 0 12px rgba(35,67,98,0.12);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
.mobile-menu-close:hover {
  color: #7DCC70;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7DCC70;
  color: #234362;
}
/* MAIN / SECTION LAYOUTS */
main {
  min-height: 60vh;
  padding-top: 30px;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  width: 100%;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}
/* TABLE STYLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(35,67,98,0.09);
}
th, td {
  padding: 14px 16px;
  text-align: left;
  font-size: 1.05rem;
}
th {
  background: #f0f9f0;
  color: #234362;
  font-weight: 700;
  border-bottom: 2px solid #7DCC70;
}
td {
  border-bottom: 1px solid #f0f0f0;
  color: #234362;
}
tr:last-child td {
  border-bottom: none;
}
/* FOOTER */
footer {
  background: linear-gradient(90deg, #234362 80%, #7DCC70 100%);
  color: #fff;
  padding: 44px 0 22px 0;
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.88;
  transition: color 0.12s, opacity 0.20s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7DCC70;
  opacity: 1;
}
.footer-legal {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-legal a {
  color: #7DCC70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  opacity: 0.85;
  transition: color 0.13s, opacity 0.18s;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #fff;
  opacity: 1;
}
.footer-contact p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact strong {
  color: #7DCC70;
  font-family: 'Montserrat', Arial, sans-serif;
}
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #234362;
  color: #fff;
  font-size: 1.04rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 3000;
  padding: 19px 8vw 19px 8vw;
  box-shadow: 0 -2px 12px rgba(35,67,98,0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.28s, transform 0.32s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  font-size: 0.99rem;
  padding: 8px 18px;
  border-radius: 24px;
  box-shadow: none;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #234362;
  border: 2px solid #7DCC70;
}
.cookie-banner .btn-secondary:hover {
  background: #7DCC70;
  color: #fff;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 3200;
  background: rgba(35,67,98,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  min-width: 300px;
  max-width: 380px;
  background: #fff;
  color: #234362;
  border-radius: 18px;
  padding: 34px 32px 28px 32px;
  box-shadow: 0 4px 22px rgba(35,67,98,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn 0.35s ease;
}
@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 12px;
  font-size: 1.17rem;
  color: #234362;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-switch {
  width: 42px;
  height: 22px;
  background: #dbeedd;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-switch[data-active="true"] {
  background: #7DCC70;
}
.cookie-switch-inner {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0; top: -1px;
  box-shadow: 0 2px 8px rgba(35,67,98,0.07);
  transition: left 0.22s;
}
.cookie-switch[data-active="true"] .cookie-switch-inner {
  left: 18px;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  width: 100%;
  margin: 10px 0 0 0;
  font-size: 1rem;
}
/* FORMS & INPUTS */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 10px 12px;
  border: 1px solid #c4cccc;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 16px;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7DCC70;
  box-shadow: 0 0 0 1.5px #7DCC70;
  outline: none;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 12px;
  }
  .footer-nav, .footer-contact, .footer-legal {
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  footer .container{
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.18rem;
  }
  .section, section {
    padding: 24px 0;
    margin-bottom: 40px;
    border-radius: 14px;
  }
  .testimonial-card {
    padding: 18px 13px;
    font-size: 0.99rem;
    max-width: 100%;
  }
  .container {
    padding: 0 4vw;
  }
  .content-wrapper {
    padding: 18px 0 0 0;
    gap: 14px;
  }
  .card {
    padding: 18px 10px;
    border-radius: 14px;
    gap: 10px;
  }
  .footer-nav, .footer-legal {
    gap: 8px;
    margin-bottom: 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    gap: 8px;
  }
  main {
    padding-top: 0;
    padding-bottom: 22px;
  }
  header .container {
    flex-direction: row;
    gap: 4px;
    padding: 12px 4vw;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .section, section {
    padding: 12px 0;
    margin-bottom: 22px;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.98rem;
    padding: 8px 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 8px 15px 8px;
  }
  .cookie-modal {
    padding: 18px 8vw 14px 8vw;
  }
}
/* UTILITIES */
.gap-20 { gap: 20px; }
.mt-32 { margin-top: 32px !important; }
.mt-12 { margin-top: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }
.bold { font-weight: 700; }
.light { font-weight: 400; }
.text-center { text-align: center; }
.text-right { text-align: right; }
/* Remove outline for mouse users but keep for keyboard nav */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #7DCC70;
  outline-offset: 1px;
}
/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
