/* =============================================================
   RESET & BASELINE NORMALIZATION
   ============================================================= */
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,
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background: #F8F5F2;
  color: #23263A;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
a {
  color: #25A67B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #252A59;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}
button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #25A67B;
}

/* Selection highlight */
::selection {
  background: #25A67B;
  color: #fff;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #252A59;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
  margin-top: 24px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.875rem;
}
p, ul, ol, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #23263A;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  color: #252A59;
  background: #f3f6fc;
  border-left: 4px solid #25A67B;
  margin: 0;
  padding: 16px 24px;
}

strong {
  font-weight: 700;
  color: #252A59;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(20,35,66,0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}



/* =============================================================
   MAIN NAVIGATION (DESKTOP & MOBILE)
   ============================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #e0e6ef;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  min-height: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.main-navigation a {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #252A59;
  padding: 8px 0;
  transition: color 0.18s;
  position: relative;
  display: flex;
  align-items: center;
}
.main-navigation a.cta {
  background: #25A67B;
  color: #fff;
  padding: 8px 24px;
  border-radius: 32px;
  margin-left: 24px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 14px rgba(37,166,123,0.08);
  border: 0;
  cursor: pointer;
}
.main-navigation a.cta:hover, .main-navigation a.cta:focus {
  background: #252A59;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,42,89,0.12);
}
.main-navigation a:hover:not(.cta), .main-navigation a:focus:not(.cta) {
  color: #25A67B;
}
.main-navigation img {
  height: 40px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  background: #25A67B;
  color: #fff;
  border-radius: 6px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  margin-right: 16px;
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 201;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #252A59;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,42,89,0.95);
  box-shadow: 0 12px 24px rgba(37,42,89,0.18);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 40px;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.74,.15,.36,.98), opacity 0.38s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #f8f5f2;
  color: #252A59;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 301;
  border: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 10px rgba(20,35,66,0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #25A67B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 40px 32px 0 32px;
  z-index: 302;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: .01em;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  transition: color 0.18s, background 0.18s;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #25A67B;
  color: #fff;
}

@media (max-width: 1100px) {
  .main-navigation {
    gap: 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .main-navigation {
    gap: 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 850px) {
  .main-navigation {
    gap: 4px;
    font-size: 0.95rem;
  }
  .main-navigation a.cta {
    margin-left: 10px;
  }
}

@media (max-width: 800px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #252A59;
  color: #fff;
  width: 100vw;
  padding: 0 0 12px 0;
  border-top: 4px solid #25A67B;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #E3E6F0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
  padding: 6px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #25A67B;
}
.brand-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #d7defa;
  margin-bottom: 8px;
}
.brand-tagline img {
  height: 32px;
  width: auto;
}
.legal-info {
  color: #b3bada;
  font-size: 0.93rem;
  margin-bottom: 4px;
}

/* =============================================================
   HERO, CARD, SECTION, FLEXBOX LAYOUTS
   ============================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,42,89,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #f3f6fc;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(37,42,89,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  color: #23263A;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  font-size: 1.12rem;
  color: #252A59;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #25A67B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* List style for sections that use icons */
.section ul li, .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #23263A;
  border-radius: 8px;
  padding: 7px 0 7px 0;
  font-weight: 400;
}
.section ul li:last-child, .content-wrapper ul li:last-child {
  margin-bottom: 0;
}
.section ul li img, .content-wrapper ul li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.section ul li span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #25A67B;
  margin-left: 6px;
}

/* =============================================================
   BUTTONS & CTA
   ============================================================= */
.cta, .btn, button, input[type='submit'] {
  display: inline-block;
  background: #25A67B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  padding: 12px 38px;
  border-radius: 32px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(37,166,123,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.19s;
  margin-top: 8px;
  text-align: center;
  position: relative;
  outline: none;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus, button:hover, button:focus, input[type='submit']:hover, input[type='submit']:focus {
  background: #252A59;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,42,89,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Text section link CTAs */
.text-section .cta {
  margin-top: 16px;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 1100px) {
  .container {
    max-width: 920px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.625rem;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.97rem;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .container {
    max-width: 480px;
    padding: 0 8px;
  }
  .content-wrapper, .section {
    padding: 28px 8px;
    gap: 16px;
  }
  .card, .testimonial-card {
    padding: 16px 10px;
    min-width: 0;
    max-width: 100%;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 8px;
  }
  .brand-tagline img {
    height: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .section {
    margin-bottom: 36px;
    padding: 16px 4px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 6px;
    gap: 10px;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #252A59;
  color: #fff;
  z-index: 9999;
  width: 100vw;
  box-shadow: 0 -4px 18px rgba(37,42,89,0.10);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 14px 18px 14px;
  animation: cookie-slide-in 0.7s ease;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  width: 100%;
  align-items: flex-start;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn {
  background: #25A67B;
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 26px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
  box-shadow: 0 2px 4px rgba(37,166,123,0.07);
}
.cookie-btn.reject {
  background: #eee;
  color: #252A59;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ddd;
  color: #252A59;
}
.cookie-btn.settings {
  background: #252A59;
  color: #fff;
  border: 1px solid #25A67B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #252A59;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37,166,123,0.15);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-60%) scale(0.9);
  opacity: 0;
  min-width: 320px;
  max-width: 96vw;
  width: 440px;
  z-index: 11000;
  background: #fff;
  color: #23263A;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(37,42,89,0.19);
  padding: 32px 28px 24px 28px;
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal.active {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: auto;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #252A59;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal-close {
  background: #eee;
  border: none;
  color: #252A59;
  border-radius: 50%;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #25A67B;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f3f6fc;
  border-radius: 12px;
  padding: 10px 14px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #252A59;
}
.cookie-category input[type='checkbox'] {
  accent-color: #25A67B;
  width: 24px;
  height: 24px;
}
.cookie-category[data-required="true"] input[type='checkbox'] {
  pointer-events: none;
  opacity: 0.6;
}
.cookie-modal__actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 14px 8px 8px 8px;
    width: 96vw;
    min-width: 0;
  }
  .cookie-banner__content {
    padding: 0 4vw;
  }
}

/* Hide scroll when mobile menu or modal is active (optional, but recommended) */
body.menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}

/* =============================================================
   ADDITIONAL CLASSES & UTILS FOR CONSISTENCY
   ============================================================= */
.mt-40 { margin-top: 40px; }
.mb-32 { margin-bottom: 32px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-24 { gap: 24px; }

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

/* Card block for privacy/policy/terms */
.text-section {
  padding: 18px 10px;
  background: #f3f6fc;
  border-radius: 10px;
  color: #23263A;
}

/* =============================================================
   END OF CSS FILE
   ============================================================= */
