/* CSS 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F6F9FB;
  color: #204060;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}
a {
  color: #204060;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5E80B7;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204060;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  color: #557B92;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #7988a3;
}
p, ul li, ol li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23507e;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
.text-section ul li {
  margin-left: 1.2em;
  position: relative;
  margin-bottom: 12px;
  padding-left: 0.3em;
}
.text-section ul li:before {
  content: "\2022";
  color: #FFD7B5;
  font-size: 1.2em;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* CTA Button */
.cta-btn {
  background: #FFD7B5;
  color: #204060;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 14px 36px;
  margin-top: 24px;
  box-shadow: 0 2px 12px 0 rgba(245,197,130,0.12);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD700;
  color: #204060;
  box-shadow: 0 4px 18px 0 rgba(245,197,130,0.18);
  outline: none;
}

/* Container */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Header */
header {
  width: 100%;
  background: #FDF6F1;
  box-shadow: 0 2px 14px rgba(32,64,96,0.05);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 18px;
  min-height: 70px;
}
header .container > a > img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #5474B7;
  padding: 7px 18px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.20s, color 0.20s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E3F3FF;
  color: #204060;
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 22px;
  z-index: 1201;
  background: #FFD7B5;
  color: #204060;
  border: none;
  font-size: 2.1rem;
  padding: 10px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(32,64,96,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD700;
  color: #204060;
  box-shadow: 0 4px 16px rgba(32,64,96,0.16);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg,#FFFCFC 80%,#D6E6F5 100%);
  z-index: 1400;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.7,.2,.2,1), opacity 0.22s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10vh;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #E9E7FB;
  color: #204060;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  position: absolute;
  right: 26px;
  top: 28px;
  z-index: 1450;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(205,190,255,0.10);
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD7B5;
}
.mobile-nav {
  margin-top: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  color: #204060;
  padding: 10px 0;
  width: 100%;
  border-radius: 14px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3F3FF;
  color: #2868a0;
}

/* Hide nav for mobile, show hamburger */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-top: 0 !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Main and Section Spacing */
main {
  flex: 1 0 auto;
  width: 100%;
  min-height: 60vh;
}
section {
  width: 100%;
  background: transparent;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 26px;
}
@media (max-width: 800px) {
  .section, section {
      padding: 26px 6px;
      margin-bottom: 36px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.content-wrapper.cta {
  background: #E9E7FB;
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 2px 8px rgba(162,99,233,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  gap: 16px;
}

.text-section {
  background: #FFF9F5;
  border-radius: 20px;
  padding: 36px 20px;
  box-shadow: 0 1px 8px rgba(255, 215, 181, 0.06);
  margin-bottom: 34px;
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(255,215,181,0.07);
  padding: 26px 18px 22px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 328px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 24px rgba(255,221,164,0.14);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

/* Testimonial Card */
.testimonial-card {
  background: #F6EFFA;
  color: #204060;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(130,108,211,0.05);
  padding: 20px 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.22s, background 0.26s;
}
.testimonial-card p {
  color: #294870;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.55;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #8A46B7;
  letter-spacing: 0.03em;
}
.testimonial-card:hover {
  background: #FDE6FF;
  box-shadow: 0 8px 18px 0 rgba(170,88,211,0.13);
}

/* Card Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 1px 14px 0 rgba(255,215,181,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Grids and Flex Patterns */
.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;
}

/* FAQ List */
.faq-list > li {
  background: #F8F8FF;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(130,198,255,0.06);
  margin-bottom: 22px;
  padding: 20px 18px 17px 24px;
}
.faq-list h2 {
  color: #7F5A9C;
  font-size: 1.16rem;
  margin-bottom: 13px;
}
.faq-list p {
  color: #204060;
  font-size: 1rem;
}

/* Contact Details */
.contact-details {
  margin: 24px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-details p {
  color: #2f435e;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details img {
  width: 20px;
  height: 20px;
}

/* Footer Styles */
footer {
  background: #E9E7FB;
  color: #204060;
  padding: 38px 0 18px 0;
  margin-top: 34px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 18px;
  align-items: flex-start;
}
footer .container > a img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 28px;
}
.footer-nav a {
  color: #637998;
  font-size: 1rem;
  border-radius: 10px;
  padding: 4px 8px;
  transition: background 0.15s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #8A46B7;
  background: #FFF9F5;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  transition: filter 0.19s;
  filter: grayscale(20%);
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0%) drop-shadow(0 4px 8px #FFD7B5);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 4000;
  background: #204060;
  color: #FFF;
  box-shadow: 0 -2px 24px 0 rgba(32,27,64,0.08);
  padding: 28px 12px 22px 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  transition: transform 0.25s, opacity 0.29s;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8px 20px 8px;
  }
}
.cookie-banner__text {
  font-size: 1rem;
  margin-right: 18px;
  color: #FFF;
}
.cookie-banner__buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFD7B5;
  color: #204060;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  box-shadow: 0 2px 5px 0 rgba(244,173,86,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD700;
  color: #204060;
  outline: none;
}
.cookie-btn.cookie-btn-settings {
  background: #E9E7FB;
  color: #204060;
}
.cookie-btn.cookie-btn-settings:hover {
  background: #D6E6F5;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 4500;
  background: #FFF9F5;
  color: #204060;
  border-radius: 20px;
  box-shadow: 0 6px 48px 0 rgba(130,98,239,0.05);
  width: 96vw;
  max-width: 440px;
  transform: translate(-50%,-50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.29s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 24px 28px 24px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #FFF;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.17rem;
  color: #204060;
  cursor: pointer;
  transition: background 0.14s;
  z-index: 5000;
  box-shadow: 0 2px 6px 0 rgba(32,64,96,0.09);
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #FFD7B5;
}
.cookie-categories {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #204060;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  background: #E9E7FB;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  position: relative;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(144,118,236,0.04);
  transition: background 0.21s;
  margin-right: 4px;
}
.cookie-toggle:checked {
  background: #FFD7B5;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  transition: left 0.21s;
}
.cookie-toggle:checked:before {
  left: 23px;
}
.cookie-category[data-essential] label {
  color: #9286c6;
}
.cookie-category[data-essential] .cookie-toggle {
  opacity: 0.55;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .container {
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 18px;
    padding: 13px 12px;
  }
  section, .section {
    padding: 21px 0;
    margin-bottom: 32px;
  }
  .feature-grid {
    gap: 16px;
  }
  .footer-nav {
    margin-right: 9px;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-direction: row;
    gap: 11px;
    min-height: 54px;
  }
  .container, footer .container {
    gap: 20px;
  }
  .feature-grid {
    gap: 10px;
  }
  .footer-contact {
    gap: 4px;
  }
  .footer-social {
    margin-top: 6px;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-social {
    gap: 4px;
  }
  .footer-contact {
    font-size: 0.90rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.33rem;
  }
}
@media (max-width: 768px) {
  .content-grid, .section, section, .card-container, .feature-grid, .footer-nav {
    flex-direction: column !important;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 15px 10px;
    align-items: flex-start;
    gap: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Animations */
.cta-btn, .feature-grid li, .testimonial-card, .footer-social a img, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.21s, background 0.23s, transform 0.20s, opacity 0.22s, color 0.22s;
}

/* Misc Classes & Accessibility */
button:focus {
  outline: 2px solid #FFD700;
  outline-offset: 1px;
}
::-webkit-input-placeholder { color: #98AFCE; }
::-moz-placeholder { color: #98AFCE; }
:-ms-input-placeholder { color: #98AFCE; }
::placeholder { color: #98AFCE; }

/* Utility Margin/Spacing for content separation */
.section:not(:last-child), section:not(:last-child) {
  margin-bottom: 60px;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* Unmistakable Soft Pastel Atmosphere */
body {
  background: linear-gradient(116deg, #F6F9FB 60%, #E9E7FB 100%);
}
.card, .feature-grid li, .testimonial-card, .footer-contact, .cookie-modal, .content-wrapper.cta, .text-section, .faq-list > li {
  background: linear-gradient(120deg,#FFF9F5 79%,#DDECF4 100%);
}

/* Accessibility: High contrast in testimonials */
.testimonial-card p,
.testimonial-card strong,
.testimonial-card > div {
  color: #204060;
}

/* END */