/* 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 {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F6FA;
  color: #1A355E;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1A355E;
  letter-spacing: -0.015em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol {
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #273659;
  font-size: 1rem;
}
a {
  color: #1A355E;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB700;
  outline: none;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #273659;
  margin-bottom: 28px;
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFB700;
  font-weight: 900;
  font-size: 1.15rem;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 36px 0 rgba(26,53,94,0.06), 0 1.5px 3px 0 rgba(26,53,94,0.02);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 720px;
  margin: 0 auto;
}
.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) {
  .content-wrapper,
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}

/* HERO SECTION */
.hero {
  background: #1A355E;
  color: #fff;
  padding: 64px 0 40px 0;
  border-bottom-right-radius: 48px;
  border-bottom-left-radius: 48px;
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
}
.hero .subheadline {
  color: #fff;
}
.hero .cta.primary {
  margin-top: 20px;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 14px 0 rgba(26,53,94,0.08);
  position: sticky;
  top: 0;
  z-index: 1200;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 32px;
}
.logo-link img {
  height: 44px;
  margin-right: 30px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A355E;
  text-decoration: none;
  font-size: 1.03rem;
  padding: 10px 0px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFB700;
  background: rgba(255,183,0, 0.09);
  outline: none;
}
.main-nav .cta.primary {
  background: #FFB700;
  color: #1A355E;
  border-radius: 8px;
  padding: 10px 20px;
  margin-left: 16px;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px 0 rgba(255,183,0,0.10);
  font-weight: 900;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #1A355E;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(26,53,94,0.11);
}
.nav-container .mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #FFB700;
  border: none;
  color: #1A355E;
  font-size: 2.2rem;
  border-radius: 10px;
  padding: 8px 16px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1A355E;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.61,0.09,0.51,1.33);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  box-shadow: -12px 0 40px 0 rgba(26,53,94,0.18);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #1A355E;
  color: #fff;
  font-size: 2.0rem;
  border: none;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  border-radius: 8px;
  padding: 7px 15px 6px 15px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFB700;
  color: #1A355E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 45px;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #1A355E;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 14px 10px 14px 0;
  display: inline-block;
  min-width: 180px;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFB700;
  color: #fff;
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 22px;
  }
  .main-nav .cta.primary {
    margin-left: 6px;
    padding: 10px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav .cta.primary {
    padding: 8px 10px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .nav-container .mobile-menu-toggle {
    display: inline-block;
  }
}

/* FOOTER */
footer {
  background: #1A355E;
  color: #fff;
  padding: 40px 0 10px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-nav nav a {
  color: #fff;
  opacity: 0.9;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: .015em;
  text-decoration: underline;
  transition: color 0.23s, opacity 0.15s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #FFB700;
  opacity: 1;
  outline: none;
}
.footer-nav p {
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 0.8;
  color: #fff;
}

/* LISTS & FEATURES */
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
ul.feature-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
ul.feature-grid li {
  background: #F5F6FA;
  border-radius: 18px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  padding: 26px 20px;
  box-shadow: 0 2px 12px 0 rgba(26,53,94,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: background 0.2s, box-shadow 0.22s, transform 0.13s;
}
ul.feature-grid li:hover {
  background: #fffbe6;
  box-shadow: 0 6px 24px 0 rgba(255,183,0,0.18);
  transform: translateY(-4px) scale(1.022);
}
ul.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px 0 rgba(255,183,0,0.10);
}

ul.service-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
ul.service-list li {
  background: #fff;
  border-radius: 16px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 330px;
  padding: 26px 20px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.2px 8px 0 rgba(26,53,94,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2.5px solid #F5F6FA;
  transition: border-color 0.2s, box-shadow 0.24s, transform 0.12s;
}
ul.service-list li:hover {
  border-color: #FFB700;
  box-shadow: 0 6px 24px 0 rgba(255,183,0,0.11);
  transform: translateY(-2px) scale(1.017);
}

@media (max-width:1024px) {
  ul.feature-grid, ul.service-list {
    gap: 20px;
  }
}
@media (max-width:768px) {
  ul.feature-grid, ul.service-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* GENERAL CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(26,53,94,0.04);
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(26,53,94,0.10);
  transform: translateY(-4px) scale(1.022);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(255,183,0,0.11);
  margin-bottom: 20px;
  padding: 32px 22px 24px 22px;
  min-width: 220px;
  max-width: 480px;
  color: #171814;
}
.testimonial-card p {
  color: #1A355E;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFB700;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.testimonial-card .stars {
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  color: #FFD600;
  font-weight: bolder;
}

/* CONTACT INFO */
.contact-info {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 14px 0 rgba(26,53,94,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  max-width: 440px;
}
.contact-info ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 12px;
}
.contact-info li {
  margin-bottom: 6px;
  font-size: 1rem;
}

/* BUTTONS & CTAs */
.cta,
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 900;
  border: none;
  border-radius: 10px;
  padding: 13px 27px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(26,53,94,0.07);
  outline: none;
  transition: background 0.20s, color 0.20s, transform 0.13s, box-shadow 0.18s;
  margin-right: 10px;
  display: inline-block;
}
.cta.primary, .cta.primary:visited {
  background: #FFB700;
  color: #1A355E;
  font-weight: 900;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1A355E;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(26,53,94,0.13);
}
.cta.secondary, .cta.secondary:visited {
  background: #fff;
  color: #1A355E;
  font-weight: 800;
  border: 2.5px solid #FFB700;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFB700;
  color: #1A355E;
  border-color: #1A355E;
  transform: scale(1.02);
}
button, input[type="submit"] {
  background: #FFB700;
  color: #1A355E;
  font-weight: 900;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #1A355E;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(26,53,94,0.13);
}

/* MODALS & OVERLAYS */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #1A355E;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 26px 20px 22px 20px;
  box-shadow: 0 -6px 40px 0 rgba(26,53,94,0.15);
  font-size: 1.03rem;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  animation: cookieIn 0.46s cubic-bezier(.67,.06,.47,1.63);
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-buttons, .cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
#cookie-banner button, .cookie-banner button {
  min-width: 135px;
  padding: 12px 24px;
  font-size: 1.05rem;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.14s;
}
#cookie-banner .accept-cookies, .cookie-banner .accept-cookies {
  background: #FFB700;
  color: #1A355E;
  font-weight: 900;
}
#cookie-banner .accept-cookies:hover, .cookie-banner .accept-cookies:hover {
  background: #fff;
  color: #FFB700;
}
#cookie-banner .reject-cookies, .cookie-banner .reject-cookies {
  background: #fff;
  color: #1A355E;
  border: 2.2px solid #FFB700;
  font-weight: 900;
}
#cookie-banner .reject-cookies:hover, .cookie-banner .reject-cookies:hover {
  background: #FFB700;
  color: #fff;
  border-color: #1A355E;
}
#cookie-banner .cookie-settings, .cookie-banner .cookie-settings {
  background: transparent;
  color: #fff;
  border: 2.2px solid #FFB700;
  font-weight: 700;
}
#cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:hover {
  background: #FFB700;
  color: #1A355E;
  border-color: #fff;
}
@media (max-width:600px) {
  #cookie-banner, .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 8px 16px 8px;
    font-size: 0.99rem;
  }
  #cookie-banner .cookie-buttons, .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #1A355E;
  z-index: 4000;
  border-radius: 28px;
  box-shadow: 0 10px 60px 0 rgba(26,53,94,0.21);
  padding: 40px 28px 28px 28px;
  min-width: 330px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookieModalIn .4s cubic-bezier(.62,.15,.3,1.3);
}
@keyframes cookieModalIn {
  from {transform: translate(-50%,60%) scale(0.82); opacity: 0;}
  to   {transform: translate(-50%,-50%) scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #FFB700;
  margin-top: 2px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  color: #1A355E;
}
.cookie-modal .cookie-buttons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: #1A355E;
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #FFB700;
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 8px 16px 8px;
  }
}

/* FORMS */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.8px solid #F5F6FA;
  background: #F5F6FA;
  color: #1A355E;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  box-shadow: none;
  transition: border-color 0.17s, background 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFB700;
  background: #fffbe6;
}

/* UTILITY */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !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; }

/* RESPONSIVE */
@media (max-width: 1120px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section {
    padding: 24px 6px;
  }
  .footer-nav nav { gap: 12px; }
}
@media (max-width: 768px) {
  .hero { padding: 28px 0 20px 0; border-radius: 0 0 24px 24px; }
  .logo-link img { height: 36px; }
  .testimonial-card,
  ul.feature-grid li,
  ul.service-list li {
    min-width: 180px;
    max-width: 100%;
    padding: 20px 10px;
  }
}
@media (max-width: 520px) {
  .content-wrapper, .text-section { padding: 0!important; }
  .testimonial-card { padding: 20px 4vw; }
  .footer-nav { padding: 0; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta.primary, .cta.secondary, button, input[type="submit"] {
  will-change: transform;
}
.card, .testimonial-card, ul.feature-grid li, ul.service-list li {
  transition: box-shadow 0.22s, background 0.23s, transform 0.15s;
}
.card:hover, ul.feature-grid li:hover, ul.service-list li:hover {
  transform: translateY(-2px) scale(1.02);
}

/* GEOMETRIC DECORATIVE ELEMENTS */
.hero:before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: #FFB700;
  opacity: 0.10;
  border-radius: 28% 72% 46% 54%/58% 42% 58% 42%;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* SPACING & FLEX RULES for Provided Classes */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 9px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #1A355E28;
  border-radius: 9px;
}
::-webkit-input-placeholder { color: #AAA; opacity: 1; }
::-moz-placeholder { color: #AAA; opacity: 1; }
:-ms-input-placeholder { color: #AAA; opacity: 1; }
::placeholder { color: #AAA; opacity: 1; }

/* ACCESSIBILITY FOCUS OUTLINE */
a:focus, button:focus, .cta:focus, input:focus {
  outline: 2.5px dashed #FFB700;
  outline-offset: 3px;
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute!important;
  left: -9999px!important;
  top: auto!important;
  width: 1px!important;
  height: 1px!important;
  overflow: hidden!important;
}

/* Ensure no Grid, no Columns */
/* NO display:grid, NO grid-*, NO columns/column-count etc! */