/* =========================================================
   CSS RESET & NORMALIZE (MOBILE-FIRST BASE)
   ========================================================= */
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;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F9FAFC;
  font-size: 16px;
  color: #23385B;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  background: #F8FBFF;
  min-height: 100vh;
  color: #23385B;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #23385B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4CA375;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23385B;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
p, li {
  color: #31526C;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
  color: #23385B;
}

/* =========================================================
   SOFT PASTEL COLOR PALETTE
   ========================================================= */
:root {
  --primary: #23385B;
  --secondary: #4CA375;
  --accent: #FFFFFF;
  /* Soft pastels */
  --pastel-blue: #e3effc;
  --pastel-mint: #e9f6f1;
  --pastel-lavender: #edeaf9;
  --pastel-peach: #fff3e4;
  --pastel-pink: #fde6e6;
  --pastel-gradient: #f1f4fe;
  --shadow: 0 4px 20px rgba(100, 120, 150, 0.10);
  --shadow-card: 0 2px 12px rgba(76, 163, 117, 0.08);
  --card-bg: #ffffff;
  --card-bg-alt: #f7fafb;
  --testimonial-bg: #fffaf6;
  --border-radius: 20px;
}

/* =========================================================
   LAYOUT & CONTAINER STYLES
   ========================================================= */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(76,163,117,0.14);
  transform: translateY(-2px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testimonial-bg);
  padding: 20px 28px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(35,56,91,0.05);
  border: 1.5px solid #e8eef5;
  max-width: 420px;
}
.testimonial-card p {
  color: #222 !important;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  font-weight: 600;
  color: #4CA375;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  width: 100%;
  background: linear-gradient(90deg, #e3effc 0%, #fde6e6 100%);
  box-shadow: 0 1px 18px rgba(60, 80, 120, 0.04);
  z-index: 1000;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 18px 0;
}
.main-nav img {
  height: 40px;
  margin-right: 14px;
  margin-left: 4px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #23385B;
  padding: 10px 10px;
  border-radius: 16px;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f9fafc;
  color: #4CA375;
}
.main-nav .cta-primary {
  margin-left: 8px;
  background: #4CA375;
  color: #FFF;
  border-radius: 18px;
  padding: 13px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 16px rgba(76,163,117,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #388f6a;
  color: #FFF;
  box-shadow: 0 4px 24px rgba(76,163,117,0.20);
}

/* Hamburger Button (Mobile) */
.mobile-menu-toggle {
  display: block;
  background: var(--pastel-mint);
  border: none;
  position: absolute;
  right: 24px;
  top: 18px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #4CA375;
  z-index: 1000;
  border-radius: 14px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #d1f1e7;
  color: #388f6a;
}

/* Hide hamburger on desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ================================
   Mobile Menu Overlay Styles
   ================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(120deg, #f9fafc 65%, #edeaf9 100%);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0.1,0.4,0.9);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #4CA375;
  font-size: 2rem;
  position: absolute;
  right: 26px;
  top: 18px;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e3effc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 60px;
  align-items: flex-start;
  gap: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 18px 26px;
  color: #23385B;
  border-radius: 16px;
  margin: 0 8px;
  width: calc(100% - 16px);
  transition: background 0.16s, color 0.16s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3effc;
  color: #4CA375;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    justify-content: flex-start;
    gap: 22px;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  header {
    min-height: 54px;
  }
}

/* =========================================================
   HERO SECTIONS & CTA
   ========================================================= */
.hero {
  background: linear-gradient(120deg, #e3effc 55%, #fde6e6 100%);
  padding: 42px 0 56px 0;
  margin-bottom: 42px;
}
.hero .container,
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.cta {
  background: linear-gradient(88deg, #edeaf9 55%, #e9f6f1 90%);
  margin-bottom: 0;
  padding: 48px 0 48px 0;
}
.cta .cta-primary {
  margin-top: 18px;
}

/* =========================================================
   FEATURES & SERVICES
   ========================================================= */
.features {
  background: #f7fafb;
  border-radius: var(--border-radius);
  margin-bottom: 44px;
  padding-bottom: 16px;
}
.features .content-wrapper ul,
.services .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features .content-wrapper ul li, .services .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--pastel-blue);
  border-radius: 14px;
  box-shadow: 0 1.5px 6.5px rgba(76, 163, 117, 0.05);
  font-size: 1.06rem;
  color: #23385B;
  font-weight: 500;
  transition: background 0.18s;
}
.features .content-wrapper ul li img,
.services .content-wrapper ul li img {
  height: 28px;
  width: 28px;
  display: block;
  border-radius: 8px;
  background: #edeaf9;
  padding: 4px;
  margin-right: 6px;
}
.features .content-wrapper ul li:hover {
  background: #e9f6f1;
}
.services {
  padding: 32px 0;
}

/* Testimonial Section */
.testimonials {
  background: #fff6f8;
  border-radius: var(--border-radius);
  margin-bottom: 48px;
  padding: 36px 0 24px 0;
}
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--testimonial-bg);
  border: 1.5px solid #f1e4db;
  min-width: 240px;
  flex: 1 1 280px;
}

/* About / Legal Section */
.legal, .about, .contact, .text-section {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  margin-bottom: 60px;
}

/* Contact Details */
.contact .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  color: #23385B;
  font-weight: 500;
}
.contact .content-wrapper ul li img {
  width: 28px; height: 28px;
  background: #EDEAF9;
  border-radius: 8px;
  padding: 3px;
  margin-right: 8px;
}

/* Legal lists */
.legal ul {
  padding-left: 18px;
}
.legal ul li {
  list-style: disc;
  margin-bottom: 8px;
  margin-left: 8px;
}

/* =========================================================
   BUTTONS & INTERACTIONS
   ========================================================= */
.cta-primary,
button.cta-primary {
  display: inline-block;
  background: #4CA375;
  color: #FFF;
  border-radius: 18px;
  padding: 15px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 4px 18px rgba(76,163,117,0.10);
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.18s;
}
.cta-primary:hover, .cta-primary:focus,
button.cta-primary:hover, button.cta-primary:focus {
  background: #388f6a;
  color: #FFF;
  box-shadow: 0 6px 30px rgba(76,163,117,0.13);
  transform: translateY(-2px) scale(1.03);
}
button {
  border-radius: 12px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #e3effc;
  color: #23385B;
  font-size: 1rem;
  padding: 32px 0 16px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -4px 22px rgba(35, 56, 91, 0.03);
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #4CA375;
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 12px;
  transition: background 0.14s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--pastel-blue);
  color: #23385B;
}
.footer-contact {
  margin: 0 auto;
  text-align: center;
  color: #23385B;
  font-size: 0.99rem;
  opacity: 0.97;
}
.footer-contact a {
  color: #4CA375;
  font-weight: 600;
  text-decoration: underline;
}

/* =========================================================
   COOKIE CONSENT BANNER STYLES
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #e3effc;
  color: #23385B;
  font-size: 1rem;
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 22px rgba(35,56,91,0.05);
  z-index: 2100;
  align-items: center;
  gap: 12px;
  animation: cookieFadeIn 0.44s cubic-bezier(0.5,0.6,0.3,1.1);
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__desc {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23385B;
}
.cookie-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}
.cookie-banner__btns .cookie-btn {
  padding: 11px 28px;
  border-radius: 15px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  box-shadow: 0 1.5px 8px rgba(35,56,91,0.06);
  transition: background 0.17s, color 0.17s;
}
.cookie-btn--accept {
  background: #4CA375;
  color: #fff;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #388f6a;
}
.cookie-btn--reject {
  background: #fde6e6;
  color: #23385B;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #fadad4;
}
.cookie-btn--settings {
  background: #edeaf9;
  color: #4CA375;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #e3effc;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,56,91,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2300;
  animation: cookieFadeIn 0.44s;
}
.cookie-modal__window {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 44px rgba(35,56,91,0.10);
  padding: 36px 28px 26px 28px;
  min-width: 300px;
  max-width: 92vw;
  max-height: 87vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 20px; top: 14px;
  background: none;
  border: none;
  color: #4CA375;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #e3effc;
}
.cookie-modal__title {
  font-size: 1.21rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23385B;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0rem;
  margin-bottom: 12px;
}
.cookie-category strong {
  color: #4ca375;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 24px;
  background: #e3effc;
  position: relative;
  transition: background 0.13s;
  outline: none;
  margin-right: 4px;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #4ca375;
}
.cookie-switch::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.14s;
  box-shadow: 0 1px 4px rgba(76,163,117,0.10);
}
.cookie-switch:checked::after {
  left: 18px;
}

/* =========================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================================= */
@media (max-width: 992px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 16px 14px;
    font-size: 0.99rem;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
  .features .content-wrapper ul, .services .content-wrapper ul {
    gap: 12px;
  }
  .testimonials .content-wrapper {
    gap: 20px;
  }
  .legal, .about, .contact, .text-section {
    padding: 18px 8px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
    max-width: 99vw;
  }
  .content-wrapper, .features .content-wrapper ul, .services .content-wrapper ul {
    flex-direction: column;
    gap: 14px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =========================================================
   VISUAL EFFECTS - SHADOWS, ROUNDED, MICRO-ANIMATIONS
   ========================================================= */
.card, .testimonial-card, .legal, .about, .contact, .text-section {
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  background: var(--card-bg);
  transition: box-shadow 0.14s, transform 0.12s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 5px 22px rgba(35,56,91,0.14);
  transform: translateY(-2px) scale(1.013);
}

/* =========================================================
   TYPOGRAPHY SCALE, SPACING & HIERARCHY
   ========================================================= */
html {
  font-size: 16px; /* base for: 14, 16, 18, 24, 32, 48 */
}
h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.64rem; font-weight: 700; }
h3 { font-size: 1.2rem;  font-weight: 600; }
h4 { font-size: 1rem;    font-weight: 600; margin-bottom: 8px; }
p, li, span { font-size: 1.0rem; }
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
}

/* Spacing utilities */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 44px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }

/* =========================================================
   UTILITY CLASSES FOR FLEXBOX ONLY
   ========================================================= */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-30 {
  gap: 30px;
}
.gap-12 {
  gap: 12px;
}

/* =========================================================
   Miscellaneous
   ========================================================= */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #e3effc;
  border-radius: 12px;
}

/* Highlighted Links */
a[href^='mailto:'], a[href^='tel:'] {
  color: #4CA375;
  font-weight: bold;
}

/* Hide visually but keep for accessibility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
}

/* No grid or columns anywhere. All layout is flex-based. */