/* CSS RESET & 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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  background-color: #F9FAFB;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B2C34;
  background: linear-gradient(to bottom right, #F9FAFB 0%, #E8F4FC 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #13334C;
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, a:focus {
  color: #F2B134;
  outline: none;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

blockquote {
  font-style: italic;
  color: #394867;
  background: rgba(244, 244, 249, 0.65);
  padding: 18px 28px;
  border-radius: 18px;
  border-left: 5px solid #F2B134;
  margin-bottom: 12px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #13334C;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
  font-weight: 700;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  font-weight: 600;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 500;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  line-height: 1.68;
  color: #2B2C34;
}
.subheadline {
  font-size: 1.13rem;
  font-weight: 400;
  color: #3985B3;
  margin-bottom: 20px;
}

strong {
  font-weight: 600;
  color: #244062;
}

/* CONTAINER & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section,
main > section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, #FFF7EB 0%, #F3F6FF 100%);
  border-radius: 26px;
  box-shadow: 0 3px 18px 0 rgba(120,160,200,0.07);
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section, main > section {
    padding: 28px 10px;
    border-radius: 16px;
  }
}

/* CONTENT WRAPPER */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.text-section {
  background: #FEFEFC;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 rgba(200,200,220,0.11);
  padding: 28px 22px;
}

@media (max-width: 700px) {
  .text-section {
    padding: 16px 8px;
  }
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(245,186,150,0.12);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 28px 0 rgba(110,163,212,0.17);
  z-index: 1;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8FAFD;
  border-radius: 14px;
  padding: 18px 19px;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px 0 rgba(140,160,190,0.08);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F8FF;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(120,160,250,0.08);
  margin-bottom: 20px;
  color: #19406B;
}
.testimonial-card blockquote {
  color: #19406B;
  margin: 0;
  border-left: 5px solid #73C1E5;
  background: none;
  padding: 0 22px 0 14px;
}
.testimonial-card p {
  margin: 0;
  font-size: 1.01rem;
}
.testimonial-card strong {
  color: #184171;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 9px;
    gap: 7px;
  }
  .testimonial-card blockquote {
    padding-left: 3px;
  }
}

/* BUTTONS & CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: linear-gradient(90deg, #FBE8CB 0%, #E1F3FA 100%);
  color: #13334C;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  border-radius: 22px;
  box-shadow: 0 1px 8px 0 rgba(242,177,52,0.07);
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.16s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #F2B134 0%, #67C6E7 100%);
  color: #19406B;
  box-shadow: 0 6px 20px 0 rgba(180,150,60,0.15);
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

button, .button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  outline: none;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus, .button:focus {
  outline: 2px solid #13334C;
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #E1F3FA 0%, #FBE8CB 100%);
  box-shadow: 0 1px 14px rgba(120,180,230,0.07);
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 0 18px;
  height: 68px;
}
.main-nav a {
  color: #13334C;
  font-size: 1.06rem;
  font-weight: 500;
  border-radius: 9px;
  padding: 6px 15px;
  transition: color .16s, background .16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2B134;
  background: #E5E8EB;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 10px;
}
/* Hide mobile nav on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 950px) {
  .main-nav {
    gap: 15px;
    padding: 0 5vw;
  }
}
@media (max-width: 800px) {
  .main-nav a {
    font-size: 0.98rem;
    padding: 6px 9px;
  }
  .main-nav img {
    height: 35px;
  }
  .main-nav {
    gap: 7px;
    padding-left: 4px;
  }
}
@media (max-width: 650px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 13px;
    right: 18px;
    background: #F2B134;
    color: #13334C;
    border-radius: 13px;
    font-size: 2.1rem;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 10px 0 rgba(242,177,52,0.12);
    border: none;
    z-index: 220;
    transition: background .18s, color .18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #13334C;
    color: #fff;
    outline: none;
  }
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(250,253,255,0.97);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.8,0,.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 16px 24px;
  box-shadow: 0 0 60px 0 rgba(14, 54, 84, 0.17);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.42,.14,.43,1.01);
}
.mobile-menu-close {
  background: #F2B134;
  color: #13334C;
  border-radius: 13px;
  font-size: 2.05rem;
  width: 46px;
  height: 46px;
  align-self: flex-end;
  border: none;
  margin-bottom: 12px;
  margin-right: -9px;
  transition: background .18s, color .18s, box-shadow .16s;
  box-shadow: 0 1px 8px 0 rgba(242,177,52,0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #13334C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  color: #13334C;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 0;
  border-radius: 10px;
  transition: background .15s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B134;
  color: #fff;
  outline: none;
}
@media (min-width: 651px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* TABLE STYLING */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(187,210,235,0.09);
  margin-bottom: 22px;
  overflow-x: auto;
  display: block;
}
thead th {
  background: #EAF3FF;
  color: #13334C;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 14px 10px;
  text-align: left;
  border-radius: 8px 8px 0 0;
}
tbody td {
  padding: 12px 10px;
  color: #244062;
}
tbody tr {
  border-bottom: 1px solid #E5E8EB;
}
tbody tr:last-child {
  border-bottom: none;
}

@media (max-width: 650px) {
  table, thead, tbody, tr, th, td {
    display: block;
  }
  table thead {
    display: none;
  }
  table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 10px 0 rgba(200,220,255,0.09);
    padding: 10px 0;
  }
  table td {
    padding: 12px 12px;
    font-size: 1rem;
    position: relative;
  }
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #EAF3FF;
  border-radius: 14px;
  padding: 18px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 8px 0 rgba(62,130,180,0.07);
}
.contact-info img {
  height: 17px;
  width: 17px;
  margin-right: 8px;
  vertical-align: sub;
}


/* FOOTER */
footer {
  background: linear-gradient(90deg, #F8F8F8 0%, #E1F3FA 100%);
  box-shadow: 0 -1px 12px 0 rgba(60,60,140,0.05);
  padding: 33px 0 17px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 34px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #13334C;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: .97rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2B134;
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #2B2C34;
  font-size: 1em;
}
.footer-info img {
  height: 36px;
  margin-bottom: 6px;
}
@media (max-width: 700px) {
  .footer-nav {
    gap: 9px;
    font-size: .94em;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .footer-info img {
    height: 23px;
  }
}


/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFF7EB 0%, #E1F3FA 100%);
  color: #13334C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  box-shadow: 0 -2px 24px 0 rgba(56, 60, 110, 0.09);
  z-index: 1999;
  padding: 20px 10px 17px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: banner-slide-up 0.44s ease;
}
@keyframes banner-slide-up {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 5px;
}
.cookie-banner button, .cookie-banner .button {
  padding: 7px 20px;
  font-size: 1em;
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 14px;
  border: none;
  margin: 0;
  background: #EAF3FF;
  color: #13334C;
  font-weight: 500;
  box-shadow: 0 1px 6px 0 rgba(120,160,200,0.09);
  transition: background 0.14s, color 0.13s;
}
.cookie-banner .accept {
  background: #F2B134;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #13334C;
  color: #fff;
}
.cookie-banner .reject {
  background: #E3697F;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #13334C;
  color: #fff;
}
.cookie-banner .settings {
  background: #EAF3FF;
  color: #19406B;
  border: 1px solid #B0D9F7;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F2B134;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23,34,54,0.25);
  z-index: 2005;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.35s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(90deg, #FFF7EB 0%, #E1F3FA 100%);
  border-radius: 20px;
  box-shadow: 0 7px 36px 0 rgba(80,150,220,0.15);
  padding: 28px 25px 24px 25px;
  max-width: 97vw;
  width: 370px;
  color: #13334C;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop 0.35s cubic-bezier(.7,.2,.25,1.11);
}
@keyframes modal-pop {
  0% { transform: scale(0.9); opacity: 0; }
  90% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.23rem;
  color: #19406B;
  margin-bottom: 10px;
}
.cookie-modal-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(120,160,200,0.07);
  padding: 12px 17px 12px 17px;
  margin-bottom: 10px;
}
.cookie-modal-section label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #EAF3FF;
  border-radius: 11px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #F2B134;
  border-radius: 11px;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  transition: 0.15s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #45BCC1;
  left: 18px;
}
.cookie-switch input:disabled + .cookie-slider {
  background: #ADADAD;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .save {
  background: #F2B134;
  color: #fff;
}
.cookie-modal .cancel {
  background: #EAF3FF;
  color: #13334C;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #13334C;
  color: #fff;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #13334C;
  color: #fff;
}


@media (max-width: 400px) {
  .cookie-modal {
    padding: 10px 4vw 10px 4vw;
    width: 95vw;
  }
}

/* MISCELLANEOUS */
::-webkit-input-placeholder { color: #B0BAC7; }
::-moz-placeholder { color: #B0BAC7; }
:-ms-input-placeholder { color: #B0BAC7; }
::placeholder { color: #B0BAC7; }

hr {
  border: none;
  border-top: 1px solid #E5E8EB;
  margin: 23px 0;
}

/* SPACING UTILS */
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }

/* --- CUSTOM SOFT PASTEL ACCENTS --- */
.pastel-block {
  background: linear-gradient(90deg, #F7E0FF 0%, #E9F8F3 100%);
  border-radius: 16px;
  padding: 20px 14px;
  box-shadow: 0px 2px 12px 0 rgba(210,180,236,0.09);
}
@media (max-width: 900px) {
  .pastel-block {
    padding: 10px 5px;
  }
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 900px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
}
@media (max-width: 550px) {
  body {
    font-size: 0.97rem;
  }
  .section, main > section {
    padding: 19px 2px;
    margin-bottom: 20px;
  }
  .container {
    padding: 0 2px;
  }
  .cta-button {
    font-size: .98rem;
    padding: 9px 13px;
  }
}

/* Fix for all cards/sections min 20px spacing (ENFORCED) */
.section:not(:last-child),
main > section:not(:last-child) {
  margin-bottom: 60px;
}
.card-container > .card,
.card-container > div {
  margin-bottom: 20px;
}

.card, .testimonial-card, .feature-item, .text-section {
  margin-bottom: 20px;
}

/* Fix z-index for overlays and no element overlap */
[data-zenith-z-index] {
  position: relative;
  z-index: 9999;
}

/* Hide scroll on overlay open */
body.modal-open {
  overflow: hidden;
}
