/* --- CSS 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, main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #FAFCFF;
  color: #26394C;
  -webkit-font-smoothing: antialiased;
  min-width: 0;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #23647A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFB947;
  text-decoration: underline;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #23647A;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.65rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
h5, h6 { font-weight: 500; }

p, li, address {
  font-size: 1rem;
  color: #26394C;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #26394C;
}

/* --- GLOBAL CONTAINERS & FLEX LAYOUTS --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(35,100,122,0.07);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(35,100,122,0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(35,100,122,0.18);
  transform: translateY(-3px);
}

.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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #E6F2FB;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(35,100,122,0.08);
  color: #26394C;
  max-width: 480px;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(35,100,122,0.16);
  transform: translateY(-2px);
}
.testimonial-card p {
  color: #26394C;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 600;
  color: #23647A;
}


/* --- HERO SECTION WITH GRADIENT --- */
.hero {
  background: linear-gradient(120deg, #E6F2FB 0%, #FFB947 100%);
  border-radius: 0 0 36px 36px;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 6px 20px 0 rgba(35,100,122,0.06);
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 48px 0 32px;
}
.hero h1 {
  color: #23647A;
  background: none;
}
.hero p {
  font-size: 1.13rem;
  color: #26394C;
}

/* --- HEADER, NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(35,100,122,0.09);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.03rem;
  color: #23647A;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.19s, color 0.19s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6F2FB;
  color: #FFB947;
  outline: none;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #23647A 50%, #FFB947 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 26px;
  font-size: 1.13rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  box-shadow: 0 6px 22px 0 rgba(255,185,71,0.16), 0 1.5px 6px rgba(35,100,122,0.03);
  transition: background 0.24s, color 0.22s, box-shadow 0.18s, transform 0.14s;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  margin-right: 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FFB947 51%, #23647A 100%);
  color: #26394C;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 11px 30px 0 rgba(255,185,71,0.19), 0 3px 8px rgba(35,100,122,0.09);
  outline: none;
}


/* --- FOOTER --- */
footer {
  background: #E6F2FB;
  border-radius: 36px 36px 0 0;
  margin-top: 80px;
  box-shadow: 0 -4px 20px 0 rgba(35,100,122,0.06);
  padding: 32px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 16px 20px;
}
footer img {
  height: 52px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-weight: 500;
  font-family: 'Quicksand',sans-serif;
  color: #23647A;
  transition: color 0.16s;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFB947;
  color: #26394C;
}
footer p {
  color: #23647A;
  font-size: 0.97rem;
}

/* --- LIST/ICON STYLES --- */
ul li, ol li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
}
ul li img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  margin-top: 1px;
}

.text-section {
  margin-bottom: 18px;
}

address {
  font-style: normal;
  margin-bottom: 12px;
  color: #26394C;
}

/* --- HAMBURGER MENU / MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: #23647A;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  z-index: 2001;
  transition: background 0.16s, transform 0.15s;
  box-shadow: 0 4px 14px 0 rgba(35,100,122, 0.17);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFB947;
  color: #26394C;
  outline: none;
  transform: scale(1.04);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.57,0.23,0.08,1.03);
  box-shadow: -4px 0 32px 0 rgba(35,100,122,0.16);
  padding-top: 32px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #23647A;
  font-size: 2.1rem;
  margin: 18px 34px 0 0;
  cursor: pointer;
  transition: color 0.15s, transform 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFB947;
  transform: scale(1.1);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 38px 40px;
  margin-top: 30px;
  align-items: flex-start;
  flex: 1;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: #23647A;
  transition: color 0.18s, background 0.15s;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 8px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6F2FB;
  color: #FFB947;
  outline: none;
}

/* Block scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  background: #23647A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 20px;
  box-shadow: 0 -6px 32px 0 rgba(35,100,122,0.20);
  border-radius: 24px 24px 0 0;
  font-size: 1rem;
  animation: fadeInUpCookie 0.55s cubic-bezier(.62,-0.07,.46,1.14);
}
@keyframes fadeInUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to {transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  margin: 0;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.12s, box-shadow 0.13s;
  box-shadow: 0 2px 8px 0 rgba(35,100,122,0.09);
}
.cookie-consent-banner .accept {
  background: #FFB947;
  color: #23647A;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #f9a81b;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #23647A;
  border: 1px solid #E6F2FB;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #E6F2FB;
  color: #23647A;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #E6F2FB;
  color: #23647A;
}

/* Cookie Modal */
.cookie-preferences-modal {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,100,122, 0.28);
  z-index: 3200;
  padding: 0;
}
.cookie-preferences-modal.open {
  display: flex;
  animation: fadeInCookieModal 0.29s cubic-bezier(.54,-0.09,.44,1.04);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #26394C;
  border-radius: 22px;
  box-shadow: 0 20px 80px 0 rgba(35,100,122,0.16);
  max-width: 460px;
  margin: 56px auto 0 auto;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  align-self: center;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #23647A;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFB947;
  outline: none;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #23647A;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFB947;
  width: 19px;
  height: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.cookie-modal-actions button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-actions .save {
  background: #FFB947;
  color: #23647A;
}
.cookie-modal-actions .save:hover, .cookie-modal-actions .save:focus {
  background: #23647A;
  color: #fff;
}
.cookie-modal-actions .cancel {
  background: #fff;
  color: #23647A;
  border: 1px solid #E6F2FB;
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: #E6F2FB;
  color: #FFB947;
}

/* --- RESPONSIVE FLEX LAYOUTS & BREAKPOINTS --- */
@media (max-width: 1023px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 44px;
  }
  .hero {
    min-height: 240px;
    margin-bottom: 38px;
    padding-bottom: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 26px 26px;
    min-height: 180px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px 0 rgba(35,100,122,0.06);
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    padding: 12px 10px;
  }
  .main-nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 18px;
  }
  .feature-item {
    gap: 8px;
    align-items: flex-start;
  }
  footer .container {
    padding: 12px 8px 10px 8px;
  }
  .footer-nav { gap: 10px; margin-bottom: 7px; }
}
@media (max-width: 560px) {
  .hero .content-wrapper {
    padding: 22px 0 10px;
  }
  .section {
    padding: 16px 3.5vw;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 12px 18px 10px;
    font-size: 0.96rem;
  }
  .cookie-preferences-modal .cookie-modal-content {
    max-width: 92vw;
    padding: 22px 9vw 22px 7vw;
  }
}

/* --- BUTTONS & MICRO-INTERACTIONS --- */
button, .cta-primary {
  transition: background 0.19s, color 0.13s, box-shadow 0.15s, transform 0.13s;
  outline: none;
}
button:active, .cta-primary:active {
  transform: scale(0.98);
}

/* --- FORMS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #E6F2FB;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 14px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #FFB947;
}
label {
  font-weight: 600;
  margin-bottom: 4px;
}

/* --- MISCELLANEOUS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #E6F2FB;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #FFB947;
  border-radius: 14px;
}

hr {
  border: none;
  border-bottom: 1.5px solid #E6F2FB;
  margin: 32px 0 22px 0;
}

/* --- UTILITY CLASSES --- */
.mt-8 { margin-top: 8px!important; }
.mt-16 { margin-top: 16px!important; }
.mt-24 { margin-top: 24px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mb-32 { margin-bottom: 32px!important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }
.rounded { border-radius: 16px!important;}

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

/* --- PRINT FRIENDLY --- */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .mobile-menu-toggle, footer {
    display: none !important;
  }
  .section, .card, .testimonial-card {
    box-shadow: none !important;
    background: #fff !important;
  }
}

/* --- END OF CSS --- */

