/* 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;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F2F2F2;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F2F2F2;
  color: #1C1C1C;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: #24719E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0e3e55;
}

/* CONTAINER & WRAPPERS */

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

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, .logo {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #24719E;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #202943;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #24719E;
}
h4 {
  font-size: 1.1rem;
  color: #202943;
}
p, li, span, .subheadline, .thank-you-message {
  font-family: 'Roboto', sans-serif;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #202943;
  margin-bottom: 1.5rem;
}
strong {
  font-weight: 700;
  color: #24719E;
}
.brand-story, .mission-statement {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1C1C1C;
}

/* BUTTONS & LINKS */
.cta-btn {
  display: inline-block;
  background: #FFD353;
  color: #1C1C1C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 16px 36px;
  border: none;
  border-radius: 42px;
  box-shadow: 0 4px 18px rgba(36,113,158,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 1.5px;
  margin-top: 18px;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #24719E;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px rgba(36,113,158,0.20);
}
button, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 16px rgba(0,0,0,0.04);
  z-index: 10;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #24719E;
  font-weight: 900;
  letter-spacing: -2px;
  margin-right: 12px;
}
.logo img {
  width: 46px;
  height: 46px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #202943;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.main-nav .cta-btn {
  margin-top: 0;
  margin-left: 12px;
  padding: 12px 28px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #24719E;
  background: #F2F2F2;
}
.mobile-menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.7rem;
  background: #FFD353;
  color: #1C1C1C;
  margin-left: 18px;
  transition: background .2s, color .2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #24719E;
  color: #fff;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: #24719E;
  margin-bottom: 24px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2F2F2;
  color: #FFD353;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #202943;
  background: #F2F2F2;
  padding: 13px 22px;
  border-radius: 22px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD353;
  color: #1C1C1C;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 875px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(90deg, #F2F2F2 80%, #FFD353 100%);
  padding: 56px 0 38px 0;
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
  box-shadow: 0 6px 48px rgba(36,113,158,0.09);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: #24719E;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #202943;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* CTA SECTIONS */
.cta {
  background: #24719E;
  border-radius: 36px;
  padding: 56px 0;
  margin-bottom: 64px;
  box-shadow: 0 10px 36px rgba(36,113,158,0.08);
}
.cta .content-wrapper {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta h2 {
  color: #FFD353;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.cta p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.cta .cta-btn {
  background: #FFD353;
  color: #24719E;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #fff;
  color: #24719E;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FEATURE GRID & ITEMS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0 10px 0;
}
.feature {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 20px rgba(36,113,158,0.07);
  flex: 1 1 235px;
  min-width: 245px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px;
  transition: box-shadow 0.15s, transform 0.15s;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
  font-family: 'Montserrat', sans-serif;
  color: #24719E;
  font-weight: 800;
}
.feature p {
  margin-bottom: 0;
  color: #202943;
  font-size: 1rem;
}
.feature span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  color: #FFD353;
  margin: 5px 0 0 0;
  font-weight: bold;
}
.feature a {
  margin-top: 4px;
  background: #24719E;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 0.98rem;
  text-transform: uppercase;
  transition: background,.15s, color .15s, box-shadow .15s, transform .1s;
}
.feature a:hover, .feature a:focus {
  background: #FFD353;
  color: #24719E;
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(36,113,158,0.15);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 36px rgba(36,113,158,0.13);
  transform: translateY(-3px) scale(1.025);
}

/* CARDS / FLEXBOX */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(36,113,158,0.08);
  padding: 24px 18px;
  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 {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(36,113,158,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 18px 0 20px 0;
  min-width: 0;
  flex: 1 1 320px;
  color: #202943;
  position: relative;
  transition: box-shadow .15s, transform .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px rgba(36,113,158,0.13);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0;
  color: #1C1C1C;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #24719E;
  margin-left: 16px;
  font-size: 1.04rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LISTS (FEATURE, FAQ, FOOTER) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  color: #243347;
}
.feature-list img {
  width: 28px;
  height: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #24719E;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 10px;
  background: transparent;
  transition: background .15s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD353;
  color: #1C1C1C;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #202943;
  font-size: 0.98rem;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 4px solid #FFD353;
  box-shadow: 0 -3px 26px rgba(36,113,158,0.03);
  margin-top: 80px;
  padding: 26px 0 12px 0;
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img {
  width: 38px;
  height: 38px;
}
@media (max-width: 850px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.contact-info-list a {
  color: #24719E;
  font-weight: bold;
  text-decoration: underline;
}

/******** COOKIE CONSENT STYLES ********/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #FFD353;
  color: #1C1C1C;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 -6px 32px rgba(36,113,158,0.08);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 16px 22px 26px;
  z-index: 2000;
  animation: fadeInBanner 0.35s 1;
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-message {
  flex: 1 1 240px;
  margin-right: 14px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  padding: 11px 26px;
  background: #24719E;
  color: #fff;
  transition: background 0.18s, color 0.18s, box-shadow .15s, transform .08s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #24719E;
  border: 2px solid #24719E;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD353;
  color: #24719E;
  box-shadow: 0 2px 8px rgba(36,113,158,0.08);
  transform: translateY(-1px);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  border-color: #FFD353;
  background: #24719E;
  color: #fff;
}

/* COOKIE MODAL DIALOG */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3000;
  background: rgba(28,32,34, 0.43);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s 1;
}
#cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 38px rgba(36,113,158,.19);
  padding: 38px 30px 30px 30px;
  max-width: 95vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-size: 1.38rem;
  color: #24719E;
  margin-bottom: 2px;
  font-weight: 900;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: bold;
  color: #202943;
  flex: 1;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #24719E;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 22px;
  font-weight: bold;
  background: #FFD353;
  color: #202943;
  border: none;
  transition: background .2s, color .2s;
}
.cookie-modal-actions .cookie-accept {
  background: #24719E;
  color: #fff;
}
.cookie-modal-actions .cookie-reject {
  background: #fff;
  color: #24719E;
  border: 2px solid #24719E;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #FFD353;
  color: #24719E;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  color: #24719E;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD353;
  background: #F2F2F2;
}

/******* GENERAL RESPONSIVENESS ******/
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  section, .section {
    margin-bottom: 35px;
    padding: 22px 0;
  }
  .hero {
    padding: 28px 0 25px 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .cta {
    padding: 27px 0 30px 0;
    border-radius: 19px;
    margin-bottom: 26px;
  }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 16px 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .feature-list, .faq-list {
    gap: 11px;
  }
  .footer-nav {
    gap: 7px;
    padding-bottom: 4px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .mobile-menu {
    padding: 22px 8px 8px 8px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .hero h1 { font-size: 1.4rem; }
  .cta h2 { font-size: 1.1rem; }
  .footer-contact { font-size: .95rem; }
}

/******* MICRO-INTERACTIONS ******/
.cta-btn, .feature a, .footer-nav a, .main-nav a, .mobile-nav a {
  will-change: transform, box-shadow;
}
.cta-btn:active, .feature a:active {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 10px rgba(36,113,158,0.15);
}

/*********** UTILITY ******/
.hide { display: none !important; }
.show { display: block !important; }
.w-100 { width: 100% !important; }
.m-auto { margin-left: auto !important; margin-right: auto !important; }

/***** GEOMETRIC DECOR (example geometric shapes) *****/
.hero:before {
  content: "";
  display: block;
  position: absolute;
  right: -60px;
  top: -38px;
  width: 128px; height: 128px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background: #FFD353;
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
}

/***** CUSTOM SCROLLBAR *****/
::-webkit-scrollbar {
  width: 8px;
  background: #F2F2F2;
}
::-webkit-scrollbar-thumb {
  background: #FFD353;
  border-radius: 6px;
}

/******* ACCESSIBILITY *******/
:focus {
  outline: 2px solid #24719E;
  outline-offset: 2px;
}

/***** PRINT SAFETY ******/
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  #cookie-modal,
  .cta-btn {
    display: none !important;
  }
}
