/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #174C71;
  background: linear-gradient(120deg, #F2F2F2 0%, #D6E6F2 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #174C71;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5CB85C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #174C71;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 16px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
}
p, .subheadline {
  font-size: 1rem; /* 16px */
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
/* --- HEADER --- */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px 0 rgba(23,76,113,.05);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  color: #174C71;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f8fafc;
  color: #5CB85C;
}
.cta-primary {
  background: linear-gradient(90deg, #174C71 60%, #5CB85C 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(23,76,113,.09);
  transition: background 0.25s, box-shadow 0.22s, transform 0.15s;
  cursor: pointer;
  margin-left: 16px;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #5CB85C 20%, #174C71 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(92,184,92,.18);
  color: #fff;
}
.cta-secondary {
  background: #F2F2F2;
  color: #174C71;
  border: 1.5px solid #5CB85C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 30px;
  transition: background 0.18s, color 0.18s, border 0.18s;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #5CB85C;
  color: #fff;
  border-color: #174C71;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #174C71;
  cursor: pointer;
  margin-left: 12px;
  z-index: 200;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #5CB85C;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,76,113,0.96);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 9999;
  padding: 32px 0 0 0;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.85,.09,.11,.93);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 10001;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #5CB85C;
  color: #174C71;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 60px;
  padding-left: 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px 3px;
  border-radius: 5px;
  transition: background 0.15s, color 0.18s;
  width: fit-content;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #5CB85C;
  color: #174C71;
}

/* --- HERO --- */
.hero {
  padding: 48px 0 40px 0;
  background: linear-gradient(117deg, #174C71 0%, #5CB85C 100%);
  color: #fff;
  text-align: center;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  gap: 14px;
  align-items: center;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .cta-primary {
  margin-top: 16px;
  box-shadow: 0 4px 24px rgba(23,76,113,0.10);
}

/* --- SECTIONS, CONTAINERS, LAYOUT --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(23,76,113,0.06);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 360px;
  transition: transform 0.16s, box-shadow .18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 32px rgba(23,76,113,.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px 24px;
}
.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;
}
.text-section {
  margin-bottom: 38px;
  padding: 0;
}
.text-section ul {
  margin-bottom: 1.25em;
}

/* --- FEATURES LISTS --- */
.features {
  padding: 45px 0;
  background: linear-gradient(102deg, #F2F2F2 0%, #E2F9E1 100%);
  border-radius: 0 0 30px 30px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(92,184,92,.08);
  padding: 22px 20px 18px 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item .icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 3px;
  color: #5CB85C;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 24px 0 rgba(92,184,92,0.15);
  transform: translateY(-3px) scale(1.015);
}

.benefits-list ul {
  margin-bottom: 0.8em;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-top: 36px;
  margin-bottom: 36px;
  background: linear-gradient(91deg, #fff 45%, #EAF6FA 100%);
  padding: 40px 20px;
  border-radius: 26px;
}
.testimonials .container {
  align-items: center;
}
.testimonials .content-wrapper {
  align-items: start;
  gap: 22px;
}
.testimonials h2 {
  text-align: left;
  color: #174C71;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 26px 18px 26px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(23,76,113,0.07);
  border-radius: 16px;
  min-width: 240px;
  max-width: 500px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card p {
  color: #23282d;
  font-size: 1.06rem;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #5CB85C;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px rgba(23,76,113,.09);
  transform: scale(1.02);
}

/* --- TRUST SIGNALS --- */
.trust-signals ul {
  color: #174C71;
  font-size: 0.98rem;
  margin-bottom: 0.8em;
}
.trust-signals li {
  list-style-type: '\2714  ';
  margin-left: 1.25em;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(92deg, #174C71 70%, #5CB85C 100%);
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 36px;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -4px 16px 0 rgba(23,76,113,.10);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 8px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.92;
  font-family: 'Roboto', Arial, sans-serif;
  transition: opacity 0.12s, color 0.18s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2F2F2;
  opacity: 1;
  text-decoration: underline;
}
.footer-brand {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F2F2F2;
  opacity: 0.89;
}

/* --- FORMS, INPUTS, BUTTONS --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #D7E7F3;
  border-radius: 8px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.16s;
  background: #F2F2F2;
  color: #174C71;
}
input:focus, textarea:focus, select:focus {
  border-color: #5CB85C;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #5CB85C;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.14s;
}
button:hover, button:focus {
  background: #174C71;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #174C71;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  z-index: 30000;
  box-shadow: 0 -2px 30px 0 rgba(23,76,113,0.11);
  font-size: 1rem;
  gap: 18px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner a{
  color: white;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 1rem;
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 2px 8px rgba(23,76,113,0.06);
}
.cookie-banner .accept {
  background: #5CB85C;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #47A047;
}
.cookie-banner .settings {
  background: #fff;
  color: #174C71;
  border: 1.5px solid #5CB85C;
}
.cookie-banner .settings:hover {
  background: #EAF6FA;
  color: #174C71;
  border-color: #174C71;
}
.cookie-banner .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .reject:hover {
  background: #CE4343;
  color: #fff;
  border: 1px solid #CE4343;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%) scale(0.92);
  background: #fff;
  color: #174C71;
  border-radius: 24px;
  box-shadow: 0 10px 48px rgba(23,76,113,0.31);
  padding: 38px 36px 32px 36px;
  z-index: 31000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 320px;
  max-width: 96vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.28s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
  color: #174C71;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5CB85C;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

/* --- MEDIA QUERIES / RESPONSIVITY --- */
@media (max-width: 1100px) {
  .container { max-width: 960px; }
  .card-container, .content-grid { gap: 14px; }
  .features-grid { gap: 16px; }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; gap: 12px; }
  .main-nav { gap: 10px; }
  .footer-nav { gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 10px; }
  header .container { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .main-nav { display: none; }
  .cta-primary { margin-left: 0; }
  .mobile-menu-toggle { display: inline-block; }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .features { padding: 20px 0; }
  .testimonial-card, .feature-item, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .section { padding: 32px 5vw; margin-bottom: 40px; }
  .testimonials { padding: 24px 8px; border-radius: 18px; }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 14px 6px;
    font-size: 0.98rem;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .section, .testimonials { padding: 20px 4vw; }
  .hero { padding: 30px 0 16px 0; }
  .cookie-modal { padding: 18px 7vw 18px 7vw; min-width: 0; }
}

/* --- Z-INDEX LAYERS --- */
header { z-index: 100; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 30000; }
.cookie-modal { z-index: 31000; }

/* --- MISC UTILITY CLASSES --- */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.nowrap { white-space: nowrap; }

/* --- ANIMATION ENHANCEMENT --- */
button, .cta-primary, .cta-secondary, a, .feature-item, .testimonial-card, .card, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.19s, box-shadow 0.18s, transform 0.13s;
}

/* --- PRINT --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .container { padding: 0 !important; }
}

/* --- END OF STYLE.CSS --- */
