/* RESET & NORMALIZE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, button, input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #FAFBFE;
  color: #25324D;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2A4365;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
.subheadline { font-size: 1.25rem; color: #4773A6; margin-bottom: 24px; }

ul, ol { margin: 0 0 24px 24px; }
li { margin-bottom: 10px; }
a { color: #4773A6; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #2A4365; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

/* FLEXBOX LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
}
.feature-list li {
  background: #F1F7F6;
  border-radius: 20px;
  box-shadow: 0 2px 6px 0 rgba(60,70,90,0.07);
  padding: 20px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 220px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; border-radius: 18px; }
.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;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(100,140,180,0.08);
  margin-bottom: 20px;
  border: 1.5px solid #E0E9EE;
  min-width: 230px;
  max-width: 550px;
  color: #243146;
}
.testimonial-card p {
  color: #25324D;
  font-size: 1rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #83B489;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  margin-top: -6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  width: 100%;
  background: #F8FAFF;
  box-shadow: 0 2px 8px 0 rgba(140,170,180,0.06);
  position: sticky;
  top: 0; left: 0; z-index: 997;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px 14px 20px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #4773A6;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E7EAF6;
  color: #2A4365;
}
.button-primary {
  background: #83B489;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 25px;
  border: none;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 14px 0 rgba(130,180,140,0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  display: inline-block;
  margin-left: 0;
}
.button-primary:hover,
.button-primary:focus {
  background: #2A4365;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(40,67,101,0.12);
  transform: translateY(-2px) scale(1.02);
}
.button-secondary {
  background: #F5F7FA;
  color: #2A4365;
  border: 1.5px solid #83B489;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 25px;
  font-size: 1.08rem;
  font-weight: 600;
  transition: background 0.18s, color 0.16s, box-shadow 0.16s, border 0.18s;
  cursor: pointer;
  margin-left: 0;
  display: inline-block;
  box-shadow: 0 2px 10px 0 rgba(140,170,180,0.06);
}
.button-secondary:hover,
.button-secondary:focus {
  background: #83B489;
  border: 1.5px solid #2A4365;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(40,67,101,0.10);
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  background: linear-gradient(120deg,#F5F7FA 60%,#B8E2DF 100%);
  padding: 50px 0 36px 0;
  margin-bottom: 50px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-section h1 {
  font-size: 2.2rem;
}
.hero-section p.subheadline {
  margin-bottom: 32px;
}

/* GENERAL FORMATTING */
.text-section img {
  width: 23px; height: 23px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  filter: none;
}
.text-section p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #36506D;
}
.contact-info img {
  width: 18px; height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(0.10) opacity(0.75);
}
.contact-info {
  margin-bottom: 18px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #F1F7F6;
  padding: 50px 0 24px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 0px 16px 0 rgba(50,120,100,0.03);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-navigation, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  color: #517CF7;
}
.footer-navigation a {
  color: #6296af;
  text-decoration: none;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 5px;
  transition: background 0.18s;
}
.footer-navigation a:hover { background: #E7EAF6; color: #2A4365; }
.footer-contact p {
  color: #485A64;
  font-size: 0.97rem;
}
.footer-social span {
  font-size: 1rem;
  color: #25324D;
  margin-bottom: 4px;
}
.footer-social img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  margin-bottom: 3px;
  display: inline-block;
  transition: filter 0.18s, transform 0.12s;
  filter: grayscale(0.04) contrast(1.02);
}
.footer-social img:hover {
  filter: none; 
  transform: scale(1.14) translateY(-2px);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #83B489;
  color: #fff;
  border: none;
  font-size: 2.18rem;
  border-radius: 50%;
  padding: 6px 14px 9px 14px;
  cursor: pointer;
  margin-right: 7px;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 1012;
  box-shadow: 0 2px 8px 0 rgba(90,170,130,0.11);
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2A4365;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(240,255,253,0.97);
  box-shadow: 0 6px 26px 0 rgba(50,70,130,0.19);
  z-index: 1200;
  transform: translateX(-105vw);
  transition: transform 0.34s cubic-bezier(0.72, 0.06, 0.21, 1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  width: 44px; height: 44px;
  font-size: 2.2rem;
  color: #2A4365;
  background: transparent;
  border: none;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 1210;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #83B489;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 74px;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.25rem;
  color: #2A4365;
  text-decoration: none;
  margin-bottom: 11px;
  padding: 10px 18px 9px 0;
  border-radius: 9px;
  transition: background 0.18s, color 0.14s;
  width: fit-content;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B8E2DF;
  color: #36506D;
}
@media (max-width: 1080px) {
  .container { max-width: 97vw; }
}
@media (max-width: 970px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav { gap: 12px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .button-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 620px) {
  .container { padding: 0 7px; }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 1.42rem; }
  .hero-section { padding: 25px 0 20px 0; }
  .section { margin-bottom: 38px; padding: 25px 7px; }
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.13rem; }
  .testimonial-card { min-width: unset; max-width: unset; }
  .feature-list {
    flex-direction: column;
    gap: 15px;
  }
  .footer-navigation, .footer-contact, .footer-social {
    font-size: 0.97rem;
  }
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
}

/* CARDS & BOXES */
.card {
  background: #F8FAFF;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(130,180,140,0.07);
  padding: 28px 22px 27px 22px;
  transition: box-shadow 0.18s, transform 0.17s;
  border: 1.5px solid #E0E9EE;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 28px 0 rgba(130,180,140,0.14);
  transform: translateY(-3px) scale(1.015);
}

/* LISTS */
ul li, ol li { color: #446388; font-size: 1rem; line-height: 1.6; }
ul li strong, ol li strong { color: #2A4365; }

/* Animations */
.button-primary,
.button-secondary,
.main-nav a,
.mobile-nav a {
  transition: background 0.22s, color 0.14s, box-shadow 0.14s, transform 0.1s;
}
.card, .testimonial-card {
  transition: box-shadow 0.25s, transform 0.13s;
}

/* MICRO-INTERACTIONS */
.card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(80,160,220,0.10);
  transform: translateY(-2px) scale(1.011);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #E9F9FC;
  color: #25324D;
  box-shadow: 0 -2px 16px 0 rgba(44,67,101,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px 10vw 18px 10vw;
  z-index: 1330;
  font-size: 1rem;
  transition: transform 0.3s;
}
.cookie-banner[aria-hidden="true"] {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-btn {
  background: #83B489;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 8px 24px;
  font-size: 1.03rem;
  margin-right: 1vw;
  font-family: "Montserrat", Arial, sans-serif;
  cursor: pointer;
  margin-bottom: 0px;
  transition: background 0.18s, color 0.14s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #2A4365;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #F5F7FA;
  color: #2A4365;
  border: 1.5px solid #83B489;
  margin-left: 1vw;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus { background: #E9F9FC; }
/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 1450;
  background: rgba(46, 67, 101, 0.19);
  justify-content: center;
  align-items: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeinmodal 0.22s;
}
@keyframes fadeinmodal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #F7FCFF;
  padding: 36px 24px 30px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(80,120,220,0.10);
  min-width: 310px;
  min-height: 230px;
  max-width: 98vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: #4773A6;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #2A4365;
}
.cookie-modal h3 {
  margin-bottom: 11px;
  font-size: 1.17rem;
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.cookie-modal input[type=checkbox] {
  width: 21px; height: 21px;
  accent-color: #83B489;
}
.cookie-modal .modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn { min-width: 88px; }

@media (max-width: 580px) {
  .cookie-banner { flex-direction: column; gap: 10px; font-size: 0.97rem; padding: 13px 2vw; }
  .cookie-modal .cookie-modal-content { padding: 24px 7px 20px 7px; max-width: 99vw; }
}

/* DREAMY PASTEL SECTION BACKGROUNDS */
section {
  background: #FAFBFE;
  border-radius: 28px;
  box-shadow: 0 0px 14px 0 rgba(120,185,210,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* -- VISUAL HIERARCHY / PASTEL COLORS -- */
body { background: #FAFBFE; }
.hero-section, section, .testimonial-card, .card, .feature-list li {
  /* Soft backgrounds for dreamy pastel look. */
}
.section {
  background: #F5F7FA;
}
.feature-list li {
  background: #E9F9FC;
}
.card {
  background: #F1F7F6;
}

/* -- FORM FIELDS & BUTTONS -- */
input, textarea, select {
  background: #FBFEFD;
  border-radius: 9px;
  border: 1.5px solid #CEE4DF;
  padding: 10px 12px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #25324D;
  transition: border 0.19s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #83B489;
  outline: none;
  box-shadow: 0 3px 12px 0 #E6F4EC;
}

/* ACCESSIBILITY & CONTRAST ENFORCEMENT */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #243146;
  background: #F5F7FA;
}

/* QUOTES & TESTIMONIALS */
.testimonial-card p {
  font-style: italic;
  font-weight: 400;
  font-family:'Open Sans',sans-serif;
  color:#25324D;
}

/* OVERRIDES FOR PRINT & USER-AGENT STYLES */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #000; }
  section, .card, .testimonial-card { box-shadow: none; background: #fff !important; }
}

/* MISC */
::-webkit-scrollbar {
  width: 10px;
  background: #F1F7F6;
}
::-webkit-scrollbar-thumb {
  background: #B8E2DF;
  border-radius: 8px;
}

/* FONTS LOADING (fallbacks included) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* ENSURE NO GRID, NO COLUMNS, NO ABSOLUTE CARDS */
/* All layouts via flex, see above */
