/* RESET & BASE STYLES ---------------------------------------------------------- */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #27B89B 0%, #1C3866 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #1C3866;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1C3866;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #27B89B;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C3866;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }
p, ul, ol, dl, dd { font-size: 1rem; margin-bottom: 16px; }
strong { font-weight: 700; }

body, input, button, textarea {
  font-family: 'Roboto', Arial, sans-serif;
}

ul, ol {
  list-style: disc inside;
  margin-left: 1em;
}

dt {
  font-weight: bold;
  margin-top: 12px;
}
dd {
  margin-bottom: 8px;
}

/* LAYOUT & FLEXBOX ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(44,89,128,0.08);
  padding: 28px 24px;
  flex: 1 1 320px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(28,56,102,0.10);
}
.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;
  margin-bottom: 20px;
  background: #F6FEFE;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,89,128,0.07);
  border-left: 4px solid #27B89B;
}
.testimonial-card p {
  color: #1C3866;
  font-size: 1.125rem;
  margin: 0 0 8px 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #14635A;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* HERO, PRIMARY SECTIONS ---------------------------------------------------------- */
section {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(28,56,102,0.07);
}
section:first-of-type {
  background: linear-gradient(120deg, #F9FFF2 30%, #E7F4F5 100%);
  box-shadow: 0 8px 32px rgba(39,184,155,0.07);
}

/* HEADER & NAV ---------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1.5px solid #E8ECF3;
  width: 100%;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(28,56,102,0.03);
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 0 0 0 4px;
  min-height: 68px;
}
header nav img {
  width: 170px;
  height: auto;
  margin-right: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1C3866;
  padding: 10px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover {
  background: #27B89B;
  color: #fff;
}
header nav .cta-nav {
  background: #27B89B;
  color: #fff;
  border-radius: 8px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(39,184,155,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header nav .cta-nav:hover {
  background: #1C3866;
  color: #fff;
  box-shadow: 0 4px 14px rgba(28,56,102,0.15);
}

/* MOBILE MENU ---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 51;
  background: #27B89B;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #14635A;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0 36px rgba(28,56,102,0.14);
  z-index: 102;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.5,.6,.35,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C3866;
  margin: 22px 24px 10px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 103;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #27B89B;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: #1C3866;
  padding: 12px 0;
  border-bottom: 1px solid #E8ECF3;
  width: 100%;
  transition: color 0.19s, background 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #27B89B;
  background: #F6FEFE;
  border-radius: 6px;
}

/* BUTTONS & CTA ---------------------------------------------------------- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.13s;
  margin-top: 8px;
  box-shadow: 0 2px 10px rgba(27,184,155,0.07);
}
.cta-primary {
  background: #27B89B;
  color: #fff;
  box-shadow: 0 4px 14px rgba(27,184,155,0.10);
}
.cta-primary:hover, .cta-primary:focus {
  background: #1C3866;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: #fff;
  color: #1C3866;
  border: 2px solid #27B89B;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #27B89B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: #27B89B;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.15s, transform 0.13s;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #1C3866;
  color: #fff;
  outline: none;
  transform: scale(1.025);
}

/* FOOTER ---------------------------------------------------------- */
footer {
  background: #1C3866;
  color: #fff;
  border-top: 3px solid #27B89B;
  padding: 0 0 48px 0;
  margin-top: 32px;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 8px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  opacity: 0.90;
  font-size: 0.98rem;
  padding: 2px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #27B89B;
  color: #fff;
}
footer p, footer strong {
  color: #fff;
  opacity: 0.95;
  margin-bottom: 6px;
}
footer img {
  width: 16px;
  margin-bottom: -3px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}
footer div {
  font-size: 0.97rem;
}

/* MISC ---------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F6FEFE;
}
::-webkit-scrollbar-thumb {
  background: #27B89B;
  border-radius: 8px;
}

blockquote {
  border-left: 4px solid #27B89B;
  padding-left: 18px;
  background: #F6FEFE;
  color: #1C3866;
  margin-bottom: 18px;
  border-radius: 8px;
  font-style: italic;
}

/* SPACING CLASSES ---------------------------------------------------------- */
.mb-24 { margin-bottom: 24px!important; }
.mb-32 { margin-bottom: 32px!important; }
.mt-32 { margin-top: 32px!important; }
.p-0 { padding: 0!important; }

/* FORMS & INPUTS (for potential future use) --------------------------------*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #E8ECF3;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #fff;
  color: #1C3866;
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #27B89B;
  box-shadow: 0 0 0 2px #C9F2EC;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C3866;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

/* COOKIE CONSENT BANNER ---------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #1C3866;
  box-shadow: 0 -4px 24px rgba(44,89,128,0.04);
  padding: 18px 24px;
  z-index: 120;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: cookieBannerIn 0.42s cubic-bezier(.44,1.43,.49,1.1) 0s;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  flex: 1 1 260px;
  font-size: 0.97rem;
  margin-bottom: 0;
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #27B89B;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, transform 0.13s;
}
.cookie-btn.settings {
  background: #1C3866;
}
.cookie-btn.reject {
  background: #E43D3D;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #14635A;
  outline: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #27B89B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B62626;
}

/* COOKIE CONSENT MODAL -----------------------------------------------------*/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39, 184, 155, 0.14);
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.32s ease;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 42px rgba(44,89,128,0.13);
  padding: 32px 30px 24px 30px;
  width: 95%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInUp 0.32s cubic-bezier(.44,1.43,.49,1.1) 0s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(41px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.36rem;
  color: #1C3866;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
}
.cookie-modal label input[type="checkbox"] {
  accent-color: #27B89B;
  width: 18px; height: 18px;
}
.cookie-modal-category-desc {
  color: #707070;
  font-size: .93rem;
  margin-left: 26px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #1C3866;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #27B89B;
  outline: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  header nav {
    flex-wrap: wrap;
    gap: 12px;
    padding-right: 62px;
  }
  header nav img { width: 136px; margin-right: 10px; }
  .container {
    max-width: 97vw;
    padding-left: 6px; padding-right: 6px;
  }
  .content-wrapper, .text-section {
    gap: 12px;
  }
  .section {
    margin-bottom: 36px;
    padding: 25px 7px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 13px;
    border-radius: 11px;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  footer .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 4px; padding-right: 4px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  footer .content-wrapper {
    gap: 10px;
    font-size: 0.91rem;
  }
  .cookie-modal {
    padding: 18px 9px 12px 10px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 13px 10px;
  }
}

/* PRINT (optional, accessibility) ------------------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; color: #222; }
  section { box-shadow: none !important; background: #fff !important; }
}

/* END */
