/* CSS 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, 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, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #f9fbfd;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: linear-gradient(120deg, #D5E2F6 0%, #ffffff 100%);
  color: #1a2433;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #205082;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #197167;
  outline: none;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #205082;
  margin-bottom: 16px;
}
h1 {font-size: 2.5rem;}
h2 {font-size: 2rem;}
h3 {font-size: 1.3rem;}
h4 {font-size: 1.1rem;}
h5, h6 {font-size: 1rem;}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* HEADER & NAV */
header {
  background: #ffffff;
  box-shadow: 0 4px 12px 0 rgba(32, 80, 130, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 36px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #205082;
  font-weight: 500;
  position: relative;
  padding: 8px 4px;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #197167;
}
.cta-btn {
  background: linear-gradient(90deg, #205082 0%, #44A197 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 12px 28px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 2px 12px 0 rgba(32,80,130,0.13);
  border: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  cursor: pointer;
  margin-left: 24px;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #197167 0%, #205082 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px 0 rgba(32,80,130,0.18);
}
.mobile-menu-toggle {
  background: #44A197;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #197167;
  color: #fafbfc;
}
/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #d5e2f6cc;
  backdrop-filter: blur(5px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.59,.15,.38,1.28), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #205082;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 8px 20px;
  border-radius: 6px;
  margin: 18px 0 14px 24px;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 205;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #197167;
  color: #fff;
}
.mobile-nav {
  padding-left: 32px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #205082;
  font-weight: 500;
  padding: 12px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #44A19766;
  color: #197167;
}
/* HERO SECTION */
.hero {
  background: linear-gradient(110deg, #205082 0%, #44A197 100%);
  color: #fff;
  padding: 55px 0 65px 0;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero .content-wrapper {
  max-width: 540px;
  color: #fff;
  align-items: flex-start;
}
.hero h1,
.hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.3rem;
}
.hero .subheadline {
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #f3f6fa;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero .cta-btn {
  margin-top: 8px;
}
/* GENERAL SECTIONS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 24px 0 rgba(32,80,130,0.07);
}
.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;
  margin-bottom: 18px;
}
/* FEATURES & ICON GRIDS */
.features .content-wrapper ul,
.features .content-wrapper ol {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 22px;
  list-style: none;
  padding: 0;
}
.features .content-wrapper ul li,
.features .content-wrapper ol li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f3f7fb;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(32,80,130,0.04);
  font-size: 1.02em;
  min-width: 205px;
  padding: 18px 18px 14px 18px;
  flex: 1 1 200px;
  margin: 0 0 12px 0;
  gap: 8px;
  transition: box-shadow 0.2s, background 0.2s;
}
.features .content-wrapper ul li img,
.features .content-wrapper ol li img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.features .content-wrapper ul li:hover, .features .content-wrapper ol li:hover {
  background: #eaf1fa;
  box-shadow: 0 3px 16px 0 rgba(32,80,130,0.10);
}
.option-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.option-grid > div {
  background: #f3f7fb;
  border-radius: 18px;
  padding: 30px 22px 22px 22px;
  min-width: 227px;
  box-shadow: 0 1px 10px 0 rgba(68,161,151,0.07);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  transition: box-shadow 0.18s, background 0.19s;
}
.option-grid > div img {
  width: 42px;
  height: 42px;
}
.option-grid > div:hover {
  background: #e0f2ef;
  box-shadow: 0 3px 12px 0 rgba(68,161,151,0.11);
}
.eco-icons {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}
.eco-icons img {
  width: 32px;
  height: 32px;
}
/* CARD PATTERNS */
.card-container, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card, .service-card {
  background: #f3f7fb;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(32,80,130,0.08);
  padding: 28px 22px;
  flex: 1 1 270px;
  min-width: 255px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.17s, background 0.16s, transform 0.18s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 10px 28px 0 rgba(68,161,151,0.13);
  background: #e0f2ef;
  transform: translateY(-3px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-descriptions, .option-descriptions {
  margin-top: 22px;
  color: #205082;
  font-size: 1.09em;
}
/* TESTIMONIALS & FEEDBACK */
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 2.5px solid #D5E2F6;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(32,80,130,0.08);
  min-width: 228px;
  max-width: 450px;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.testimonial-card p {
  color: #205082;
  font-size: 1.09em;
  margin-bottom: 6px;
  font-style: italic;
  font-weight: 400;
}
.testimonial-card .author {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #197167;
  font-weight: 600;
  font-size: 1.02em;
  letter-spacing: 0.01em;
  text-align: right;
}
.testimonial-card:hover {
  border-color: #44A197;
  box-shadow: 0 8px 24px 0 rgba(68, 161, 151, 0.11);
}
/* COMPARISON GRID (FLEX-ONLY) */
.comparison-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  background: #f3f7fb;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
  min-width: 200px;
  align-items: stretch;
  justify-content: flex-start;
}
.comparison-grid > div {
  min-width: 118px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #205082;
  font-size: 1rem;
  margin-right: 18px;
}
/* ABOUT & POLICY */
.about, .policy, .thank-you-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(32,80,130,0.04);
  padding: 40px 20px 32px 20px;
  margin-bottom: 60px;
}
.text-section {
  margin-bottom: 16px;
  font-size: 1.07em;
  color: #205082;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 8px;
  padding-left: 0;
}
/* CTA SECTION */
.cta {
  background: linear-gradient(97deg, #44A197 0 65%, #205082 100%);
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 28px 0 rgba(32,80,130,0.09);
  margin-bottom: 42px;
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 44px 20px;
  text-align: center;
}
.cta .content-wrapper {
  color: #fff;
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}
.cta p {
  margin-bottom: 20px;
}
.cta .cta-btn {
  margin-top: 12px;
  background: linear-gradient(90deg, #fff 0%, #44A197 80%);
  color: #205082;
  box-shadow: 0 2px 8px 0 rgba(32,80,130,0.13);
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: linear-gradient(90deg, #205082 0%, #44A197 100%);
  color: #fff;
}
/* FOOTER */
footer {
  background: #205082;
  color: #fff;
  padding: 32px 0 12px 0;
  margin-top: 30px;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #44A197;
}
.footer-info {
  font-size: 0.98em;
  color: #d5e2f6;
  opacity: 0.85;
}
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #205082 0%, #44A197 100%);
  color: #fff;
  padding: 20px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -2px 16px 0 rgba(32,80,130,0.09);
  font-size: 1rem;
  gap: 16px;
  transition: transform 0.3s, opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-msg {
  flex: 1 1 200px;
  margin-right: 20px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  background: #fff;
  color: #205082;
  border: none;
  border-radius: 22px;
  padding: 8px 26px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.17s, color 0.15s, box-shadow 0.17s;
  box-shadow: 0 1px 8px 0 rgba(32,80,130,0.08);
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #205082;
  color: #fff;
}
.cookie-btn.secondary {
  background: #f3f7fb;
  color: #44A197;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #44A197;
  color: #fff;
}
/* COOKIE MODAL (Settings) */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  transform: translate(-50%,-50%) scale(0.97);
  background: #fff;
  border-radius: 18px;
  min-width: 320px;
  max-width: 93vw;
  width: 440px;
  z-index: 1050;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 6px 38px 0 rgba(32,80,130,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.20s, transform 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal-title {
  font-family: 'Montserrat', sans-serif;
  color: #205082;
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1rem;
  color: #205082;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #44A197;
}
.cookie-category .always-on {
  color: #197167;
  font-weight: 700;
  margin-left: 6px;
  font-size: 0.96em;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #205082;
  font-size: 1.3rem;
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #197167;
}
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #20508288;
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
/* FORMS, CONTACT, AND SPECIAL SECTIONS */
.contact {
  background: #f3f7fb;
  border-radius: 22px;
  padding: 38px 18px;
  box-shadow: 0 1px 12px 0 rgba(32,80,130,0.08);
  margin-bottom: 60px;
}
.contact ul {
  margin-bottom: 12px;
}
.contact ul li {
  font-size: 1.06em;
  color: #205082;
}
.contact strong { color: #197167; }
.thank-you-section {
  background: #44A197;
  color: #fff;
  text-align: center;
  border-radius: 26px;
}
.thank-you-section h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 2rem;
}
.thank-you-section p {
  color: #fdfdfd;
}
.thank-you-section .cta-btn {
  margin-top: 18px;
  background: #fff;
  color: #205082;
}
.thank-you-section .cta-btn:hover, .thank-you-section .cta-btn:focus {
  background: #205082;
  color: #fff;
}
/* SPACING & ALIGNMENT PATTERNS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
/***************** RESPONSIVE DESIGN *******************/
@media (max-width: 1020px) {
  .container { max-width: 96vw; }
  header .container, .hero .container { flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 16px; }
}
@media (max-width: 900px) {
  .option-grid, .service-cards, .card-container, .footer-nav, .features .content-wrapper ul, .features .content-wrapper ol {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero {
    padding: 36px 0 44px 0;
    min-height: 156px;
  }
  .hero .content-wrapper {
    max-width: 97vw;
    align-items: flex-start;
  }
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; margin-top: 10px; }
  .mobile-menu-toggle { display: block; }
  .footer-nav { flex-direction: column; gap: 12px; }
  .option-grid, .service-cards, .card-container, .features .content-wrapper ul, .features .content-wrapper ol {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .section, section, .about, .policy, .thank-you-section, .contact, .cta {
    padding: 24px 6px;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
  }
  .cta { padding: 22px 6px; min-height: 120px; }
  .hero h1, .hero h2 { font-size: 1.4rem; }
  .cookie-modal { min-width: 0; width: 97vw; padding: 18px 6px; max-width: 99vw; }
}
@media (max-width: 450px) {
  h1 { font-size: 1.3rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 8px; font-size: 0.97rem; }
  .cookie-banner-msg { margin-bottom: 12px; }
  .cookie-banner-actions { gap: 8px; }
}
/************* TRANSITIONS & MICRO-INTERACTIONS *************/
.card, .service-card,
.cta-btn, .main-nav a, .mobile-nav a, .footer-nav a,
.testimonial-card, .option-grid > div, .features .content-wrapper ul li {
  transition: box-shadow 0.18s, background 0.17s, color 0.14s, border-color 0.14s, transform 0.18s;
}
.cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.12s, box-shadow 0.17s, transform 0.17s;
}
/**************** UTILITY ***************/
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0;} /* for accessibility */
