/* ========================
   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,
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;
}
footer p {color: white;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F9FB;
  color: #212b36;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  padding-left: 22px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #1B305C;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F5C042;
}

/* ============================
   BRAND FONTS + TYPOGRAPHY  
============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
:root {
  --color-primary: #1B305C;
  --color-secondary: #F5C042;
  --color-accent: #FFFFFF;
  --color-bg: #F7F9FB;
  --color-grey-100: #f1f4f8;
  --color-grey-200: #e2e9f1;
  --color-grey-300: #c5cdd9;
  --color-grey-400: #8a94a6;
  --color-grey-700: #364058;
  --color-text: #212b36;
  --color-light: #ffffff;
  --color-muted: #3b445a;
  --shadow-card: 0 2px 12px 0 rgba(27, 48, 92, 0.08);
  --border-radius: 12px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
}
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.14;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
}
.subheadline {
  font-size: 1.05rem;
  color: var(--color-grey-700);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 22px;
  max-width: 640px;
}
p {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* ============================
   LAYOUT • SECTIONS & CONTAINER
============================*/
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
main > section {
  margin-bottom: 40px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  background: none;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

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

/* ============================
   FLEXBOX GRIDS & CARDS
============================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(27, 48, 92, 0.14);
  transform: translateY(-2px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid > div {
  background: var(--color-grey-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 36px 0 rgba(27, 48, 92, 0.16);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  margin-bottom: 12px;
  width: 40px;
  height: 40px;
}
.service-price {
  margin-top: 10px;
  font-size: 0.98rem;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.1px;
}


/* ============================
   HERO BLOCK
============================*/
.hero {
  min-height: 320px;
  background: linear-gradient(90deg, #f0f3fa 0%, #e3eaf4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding: 50px 0 44px 0;
  box-shadow: var(--shadow-card);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 520px;
}
.hero h1 {
  font-size: 2.45rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}


/* ============================
   BUTTONS
============================*/
.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 13px 34px;
  box-shadow: 0 2px 10px 0 rgba(27,48,92,0.10);
  border: none;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, transform .15s;
  text-align: center;
  margin-top: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #254382;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 5px 18px 0 rgba(27,48,92,0.13);
  color: #fff;
}
.btn-secondary {
  background: var(--color-secondary);
  color: #1B305C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 26px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 2px 7px 0 rgba(245,192,66,0.07);
  transition: background .18s, color .18s, transform .15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e3b23c;
  color: #12203c;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 4px 14px 0 rgba(245,192,66,0.14);
}

/* ============================
   HEADER + NAVIGATION
============================*/
header {
  background: var(--color-light);
  box-shadow: 0 2px 18px 0 rgba(27, 48, 92, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  max-height: 45px;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
header nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 6px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-grey-100);
  color: var(--color-secondary);
}
header .btn-primary {
  margin-left: 20px;
}
header .mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  cursor: pointer;
  display: none;
  margin-left: 10px;
  padding: 7px 11px;
  border-radius: 8px;
  transition: background .16s;
}
header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:focus {
  background: var(--color-grey-200);
  color: var(--color-secondary);
}

/* ============================
   MOBILE MENU (OFF-CANVAS NAV)
============================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,48,92,0.98);
  color: #fff;
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.5,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 26px 24px 10px 0;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 7px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(245,192,66,0.12);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 38px 0 38px;
  gap: 16px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px 0 12px 0;
  border-radius: 6px;
  transition: background .15s, color .15s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(245,192,66,0.15);
  color: var(--color-secondary);
}

@media (max-width: 1070px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 96vw;
  }
  .hero .content-wrapper {
    max-width: 96vw;
  }
}
@media (max-width: 820px) {
  header nav {
    gap: 7px;
  }
  .feature-grid > div, .feature-grid {
    max-width: none;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
  .hero, .section {
    padding: 28px 6vw;
    margin-bottom: 30px;
  }
  .hero h1, h1 {
    font-size: 1.57rem;
  }
  h2 {
    font-size: 1.18rem
  }
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 100%;
    max-width: 100%;
    padding: 18px 14px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .hero, .section {
    padding: 13vw 3vw;
  }
  h1, .hero h1 {
    font-size: 1.23rem;
  }
}

/* ============================
   TESTIMONIALS
============================*/
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #F3F7FC;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 6px 0 rgba(27,48,92,0.08);
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 360px;
  flex: 1 1 260px;
  border-left: 5px solid var(--color-primary);
}
.testimonial-card p {
  color: #234;
  font-size: 1rem;
  margin-bottom: 7px;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.97rem;
  font-style: italic;
}

@media (max-width: 992px) {
  .testimonial-carousel {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ============================
   FOOTER
============================*/
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 60px;
  width: 100%;
  padding-top: 38px;
  box-shadow: 0 -4px 28px 0 rgba(27,48,92,0.04);
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 18px;
}
.footer-top img {
  max-height: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 22px;
}
.footer-nav nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 17px;
}
.footer-nav a {
  color: #d7def0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: color .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  font-size: 1rem;
  margin-bottom: 14px;
  margin-top: 8px;
  color: #f7fafd;
}
.footer-contact a {
  color: var(--color-secondary);
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 11px;
  }
  .footer-nav nav {
    gap: 9px;
  }
}

/* ============================
   COOKIE CONSENT BANNER
============================*/
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1600;
  background: #e9f0fa;
  color: #234063;
  box-shadow: 0 -2px 20px 0 rgba(27,48,92,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  gap: 20px;
  border-top: 3px solid var(--color-primary);
  transition: transform 0.3s cubic-bezier(.5,0,.2,1);
  font-size: 1rem;
}
#cookie-consent-banner.hide {
  transform: translateY(100%);
}
#cookie-consent-banner .cookie-text {
  flex: 3 1 auto;
  max-width: 700px;
  font-size: 1rem;
  color: #234063;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}
.cookie-btns .btn-cookie {
  border-radius: 6px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-left: 0;
  transition: background .16s, color .16s;
}
.cookie-btns .btn-accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btns .btn-accept:hover, .cookie-btns .btn-accept:focus {
  background: #234063;
}
.cookie-btns .btn-reject {
  background: var(--color-grey-300);
  color: var(--color-primary);
}
.cookie-btns .btn-reject:hover, .cookie-btns .btn-reject:focus {
  background: #d1d9e6;
}
.cookie-btns .btn-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btns .btn-settings:hover, .cookie-btns .btn-settings:focus {
  background: #fbe7b1;
  color: #805a08;
}
@media (max-width: 680px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 13px;
    gap: 12px;
  }
  .cookie-btns {
    flex-wrap: wrap;
    gap: 8px;
  }
  #cookie-consent-banner .cookie-text {
    max-width: 100vw;
  }
}

/* ============================
   COOKIE PREFERENCES MODAL
============================*/
#cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,48,92,0.41);
  z-index: 1650;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
#cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
#cookie-modal {
  background: #fff;
  min-width: 310px;
  max-width: 430px;
  padding: 34px 26px 20px 26px;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 36px 0 rgba(27,48,92,0.20);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transform: translateY(-60px) scale(0.98);
  opacity: 0.95;
}
#cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-option label {
  font-size: 1rem;
  color: var(--color-muted);
}
.cookie-category-essential {
  color: var(--color-primary);
  font-weight: 500;
  font-style: italic;
}
#cookie-modal .btn-cookie-save {
  background: var(--color-primary);
  color: #fff;
  padding: 9px 26px;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 18px;
  transition: background .16s, color .16s;
}
#cookie-modal .btn-cookie-save:hover {
  background: #254382;
}
#cookie-modal .btn-cookie-cancel {
  background: var(--color-grey-300);
  color: var(--color-primary);
  padding: 9px 26px;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background .16s, color .16s;
}
#cookie-modal .btn-cookie-cancel:hover {
  background: #d1d9e6;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 14px; top: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-grey-400);
  cursor: pointer;
  transition: color .14s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  color: var(--color-primary);
}

@media (max-width: 500px) {
  #cookie-modal {
    min-width: 90vw;
    max-width: 97vw;
    padding: 24px 7vw 12px 7vw;
  }
}

/* ============================
   MISCELLANEOUS
============================*/
hr {
  border: none;
  border-top: 1px solid var(--color-grey-200);
  margin: 30px 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #f5f7fa;
}
::-webkit-scrollbar-thumb {
  background: #e2e9f1;
  border-radius: 8px;
}

/* Prevent text selection on buttons for UX */
button, .btn-primary, .btn-secondary, .btn-cookie, .btn-cookie-save, .btn-cookie-cancel {
  user-select: none;
}

/* Utility classes */
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ============================
   FORMATTED CODE STOPS HERE - 
   For additional styles for forms, labels, error msg, etc., extend here.
============================*/