/* CSS 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #E1EFFE;
  color: #094067;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}

/* BRAND VARIABLES (NO CUSTOM PROPERTIES) */
:root {
  /* Brand Colors */
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #094067;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #19415E;
}
strong {
  font-weight: 600;
  color: #094067;
}

/* TEXT LINKS */
a {
  transition: color 0.2s;
  font-weight: 500;
  color: #094067;
}
a:hover, a:focus {
  color: #FFD803;
  text-decoration: underline;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(9,64,103,.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .28s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(9,64,103,0.18);
  transform: translateY(-2px) scale(1.01);
}

.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: center;
  gap: 20px;
  padding: 28px 24px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 0 28px 0 rgba(9,64,103,.09);
  margin-bottom: 20px;
  width: 100%;
  max-width: 540px;
}
.blockquote,
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #094067;
  margin-bottom: 10px;
  text-align: center;
}
.testimonial-card span {
  color: #094067;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.star-rating {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(9,64,103,0.08);
  padding: 28px 22px 22px 22px;
  flex: 1 1 270px;
  min-width: 240px;
  transition: box-shadow .25s, transform .16s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(9,64,103,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #E1EFFE 60%, #A9CBF8 100%);
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 64px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #094067;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  line-height: 1.14;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.18rem;
  color: #19415E;
  margin-bottom: 28px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FFD803 0%, #E1EFFE 100%);
  color: #094067;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 13px 36px;
  border-radius: 32px;
  box-shadow: 0 2px 10px 0 rgba(9,64,103,0.10);
  transition: background 0.26s, color 0.22s, box-shadow 0.18s, transform 0.18s;
  border: 2px solid #FFD803;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #FFE35D 0%, #B6DDFB 100%);
  color: #094067;
  box-shadow: 0 4px 20px 0 rgba(9,64,103,0.19);
  transform: translateY(-2px) scale(1.03);
  border-color: #FFD803;
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(9,64,103,0.08);
  padding: 0;
  position: relative;
  z-index: 21;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
header a img {
  height: 40px;
  width: auto;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #19415E;
  font-weight: 500;
  padding: 3px 0;
  position: relative;
  transition: color 0.18s;
}
nav a:hover,
nav a.active {
  color: #FFD803;
}
.mobile-menu-toggle {
  display: none;
  background: #094067;
  color: #FFD803;
  font-size: 2rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.18s;
  margin-left: 15px;
  border: none;
}
.mobile-menu-toggle:hover {
  background: #093A56;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #E1EFFE;
  box-shadow: 6px 0 18px rgba(9,64,103,0.14);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.76,0,.24,1), opacity 0.23s;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #094067;
  font-size: 2.4rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin: 14px 14px 0 0;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #FFD803;
  color: #094067;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 28px 32px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #094067;
  padding: 10px 0;
  font-weight: 600;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:hover {
  color: #FFD803;
  background: none;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: linear-gradient(110deg, #E1EFFE 80%, #B6DDFB 100%);
  padding-top: 44px;
  padding-bottom: 44px;
}
.testimonials .container {
  align-items: center;
}
.testimonials .content-wrapper {
  align-items: center;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 28px;
}
.pricing-table table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(9,64,103,0.09);
  border: none;
  margin-bottom: 20px;
  min-width: 650px;
}
.pricing-table thead tr {
  background: #E1EFFE;
  color: #094067;
}
.pricing-table thead th {
  padding: 18px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-bottom: 2px solid #B6DDFB;
}
.pricing-table tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid #E1EFFE;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody td strong {
  color: #19415E;
  font-weight: 600;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list h3 {
  color: #094067;
  margin-bottom: 7px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-list p {
  font-size: 1rem;
}

/* TEXT SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.text-section ul,
.text-section ol {
  padding-left: 18px;
  margin-bottom: 0;
}
.text-section li {
  padding-bottom: 8px;
  font-size: 1rem;
  color: #19415E;
  line-height: 1.6;
}
.text-section img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.location-map {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 12px 18px;
  margin-top: 18px;
  color: #094067;
  box-shadow: 0 2px 11px 0 rgba(9,64,103,.09);
}

/* FOOTER */
footer {
  background: #094067;
  padding-top: 38px;
  padding-bottom: 0px;
  color: #E1EFFE;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.footer-top a img {
  height: 38px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #E1EFFE;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #FFD803;
}
.footer-contact {
  margin-bottom: 18px;
  line-height: 1.7;
}
.footer-contact a {
  color: #FFD803;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #E1EFFE;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 28px;
}
.footer-social a img {
  height: 22px;
  width: auto;
  filter: grayscale(0.1) brightness(1.08);
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: none;
}
.footer-bottom {
  background: #093A56;
  padding: 18px 0;
  text-align: center;
  color: #E1EFFE;
  font-size: 0.95rem;
  width: 100%;
  margin-top: 36px;
  letter-spacing: .02em;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 18px 0 rgba(9,64,103,0.11);
  border-top: 3px solid #FFD803;
  padding: 22px 16px;
  z-index: 3003;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.33s cubic-bezier(.76,0,.24,1), opacity 0.19s;
  opacity: 1;
  gap: 26px;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: #094067;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-left: 32px;
}
.cookie-btn {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .97rem;
  border-radius: 24px;
  padding: 10px 23px;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.19s, color 0.18s, border 0.17s;
}
.cookie-btn.accept {
  background: #FFD803;
  color: #094067;
  border: 2px solid #FFD803;
}
.cookie-btn.reject {
  background: #E1EFFE;
  color: #094067;
  border: 2px solid #D3E4F8;
}
.cookie-btn.settings {
  background: #fff;
  color: #094067;
  border: 2px solid #B6DDFB;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #FFE35D;
  color: #094067;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #FFD803;
  color: #094067;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #E1EFFE;
  color: #094067;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9,64,103,0.18);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 40px 0 rgba(9,64,103,0.19);
  padding: 32px 26px 24px 26px;
  min-width: 320px;
  max-width: 99vw;
  z-index: 4002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 22px;
  animation: cookieModalIn .46s cubic-bezier(.76,0,.24,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(64px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #094067;
  margin-bottom: 11px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #094067;
  font-weight: 500;
}
.cookie-modal .cookie-toggle {
  margin-left: 12px;
  display: inline-block;
  width: 36px;
  height: 20px;
  background: #E1EFFE;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: #FFD803;
}
.cookie-modal .cookie-toggle-inner {
  position: absolute;
  left: 3px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #094067;
  transition: left 0.22s, background 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .cookie-toggle-inner {
  left: 20px;
  background: #094067;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  color: #094067;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #E1EFFE;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .features-grid,
  .footer-links {
    gap: 16px;
  }
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 35px;
  }
  .features-grid,
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 22px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 58px;
  }
  nav {
    display: none;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 580px) {
  .testimonial-card {
    padding: 13px 2px;
  }
  .pricing-table table {
    min-width: 390px;
  }
  .cookie-banner p { font-size: 0.98rem; }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
    margin-left: 6px;
  }
  .cookie-banner { gap: 10px; }
}
@media (max-width: 430px) {
  .btn-primary {
    font-size: .96rem;
    padding: 8px 12px;
  }
  .container { padding: 0 7px; }
}

/* UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* Prevent Overlap: generic fallback for all cards in lists/grids */
.card:not(:last-child),
.feature-item:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}

/* Prevents absolute for content, only allow occasional decoration */

/* Hide mobile menu by default, show when open class is present */

/* Hide cookie modal backdrop by default, show when open class is present */

/* Animations: micro hover/active effects for buttons, features, cards already included above */

/* --- Gradients/professional shadows: only solid colors/soft shadows per requirements --- */

/* Accessibility: Dark text on light backgrounds (e.g. testimonials, banners) enforced above */
