/* ========================== */
/*      CSS RESET & BASE      */
/* ========================== */
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #233247;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #184973;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2C94C;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.6rem;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184973;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 20px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote {
  margin-bottom: 18px;
  font-size: 1rem;
}
blockquote {
  padding: 14px 24px;
  border-left: 5px solid #184973;
  background: #F4F7FA;
  font-style: italic;
  color: #233247;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ========================= */
/*     BRAND COLOR VARS      */
/* ========================= */
:root {
  --color-primary: #184973;
  --color-secondary: #F2C94C;
  --color-accent: #F4F7FA;
  --color-bg: #fff;
  --color-body: #233247;
  --color-heading: #184973;
  --color-link: #184973;
  --color-link-hover: #F2C94C;
  --color-muted: #8191A7;
  --shadow-base: 0 2px 16px rgba(24,73,115,0.08);
  --shadow-card: 0 2px 12px 0 rgba(24,73,115,0.09);
  --radius-base: 12px;
}

/* ========================= */
/*     CONTAINER LAYOUTS     */
/* ========================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-base);
  background: #F4F7FA;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  max-width: 700px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F7FA;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 20px;
}

/* ========================= */
/*       NAVIGATION          */
/* ========================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(24,73,115,0.05);
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  height: 82px;
  gap: 40px;
}
header a img {
  max-height: 48px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  color: var(--color-heading);
  padding: 8px 6px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F4F7FA;
  color: var(--color-secondary);
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(24,73,115,0.12);
  text-align: center;
  margin-top: 16px;
  min-width: 120px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.24s;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #13385a;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24,73,115,0.19);
}
.btn-secondary {
  background: var(--color-secondary);
  color: #184973;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #dec247;
  color: #184973;
  box-shadow: 0 4px 20px rgba(24,73,115,0.11);
}

/* Hide mobile burger menu on desktop */
.mobile-menu-toggle {
  display: none;
}
/* Mobile Navigation */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #184973;
  color: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.71,0.17,0.34,0.95);
  box-shadow: -2px 0 18px rgba(24,73,115,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 2;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 36px 0 0 28px;
  gap: 18px;
  width: 80vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 10px 2px;
  border-radius: 7px;
  min-width: 100px;
  transition: color 0.16s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(255,255,255,0.04);
}

/* Hamburger menu button styles */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #184973;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(24,73,115,0.19);
  transition: background 0.17s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #13385a;
  box-shadow: 0 4px 22px rgba(24,73,115,0.22);
}

@media (max-width: 980px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 62px;
    gap: 8px;
  }
  header .main-nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.08rem;
  }
}

/* ========================= */
/*         SECTIONS          */
/* ========================= */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  padding: 0;
}

.feature-grid, .service-list, .service-cards, .icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div,
.service-list > div,
.icons-grid > div,
.service-cards > div {
  flex: 1 1 240px;
  min-width: 260px;
  background: #F4F7FA;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 26px 18px 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.20s, transform 0.25s;
}
.feature-grid > div:hover,
.icons-grid > div:hover,
.service-cards > div:hover {
  box-shadow: 0 4px 24px 0 rgba(24,73,115,0.13);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img,
.icons-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.price {
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.08rem;
  color: #184973;
}

@media (max-width: 900px) {
  .feature-grid > div,
  .service-cards > div,
  .service-list > div,
  .icons-grid > div {
    min-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 18px;
  }
  .feature-grid, .service-list, .service-cards, .icons-grid {
    gap: 16px;
  }
}

/* ========================== */
/*         CTA SECTION        */
/* ========================== */
.contact-info, .contact-information {
  background: #F4F7FA;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 10px rgba(24,73,115,0.06);
  padding: 18px 22px;
  margin-top: 20px;
  font-size: 1rem;
}
.contact-info a, .contact-information a {
  color: #184973;
  text-decoration: underline;
}
.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #EFF3F8;
  border-radius: 9px;
  padding: 14px 20px;
  margin-top: 18px;
  max-width: 370px;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
}

/* ========================== */
/*      TESTIMONIAL CARDS     */
/* ========================== */
.testimonial-card {
  background: #F4F7FA;
  color: #184973;
  border-left: 5px solid #184973;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-base);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 32px 20px 26px;
  max-width: 600px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  background: none;
  color: #233247;
  border: none;
  padding: 0;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #8191A7;
}
.testimonial-card:hover {
  box-shadow: 0 5px 28px rgba(24,73,115,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* ======================= */
/*           FAQ          */
/* ======================= */
.next-steps ul,
section ul {
  margin-bottom: 20px;
}
.next-steps li {
  font-size: 1rem;
  margin-bottom: 7px;
}

/* ======================= */
/*         FOOTER         */
/* ======================= */
footer {
  background: #184973;
  color: #fff;
  padding: 44px 0 26px 0;
  font-size: 1rem;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #F2C94C;
  transition: color 0.15s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-brand img {
  height: 34px;
  margin: 0 auto 14px auto;
}
footer p {
  color: #cad7e2;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ======================= */
/*         MODALS & COOKIES BANNER         */
/* ======================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #233247;
  color: #fff;
  z-index: 15000;
  box-shadow: 0 -2px 16px rgba(24,73,115,0.09);
  padding: 20px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookieSlideIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  font-size: 0.98rem;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 26px;
  border-radius: 8px;
  border: none;
  margin: 0 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  font-weight: 600;
}
.cookie-accept {
  background: var(--color-secondary);
  color: #184973;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #dec247;
  color: #184973;
}
.cookie-reject {
  background: #eee;
  color: #184973;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #d3ddec;
}
.cookie-settings {
  background: none;
  color: #F2C94C;
  border: 1.6px solid #F2C94C;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #184973;
  color: #fff;
  border-color: #fff;
}
/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,73,115,0.41);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-base);
  color: #184973;
  padding: 28px 32px 22px 32px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 8px 40px rgba(24,73,115,0.10);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #e6ebef;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  display: flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle::after {
  content: '';
  width: 18px;
  height: 18px;
  background: #8191A7;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.2s, background 0.2s;
}
.cookie-toggle input[type="checkbox"]:checked + span::after {
  background: #184973;
  left: 18px;
}
.disabled-toggle .cookie-toggle {
  background: #d2dbe4 !important;
  cursor: not-allowed;
}
.disabled-toggle label, .disabled-toggle {
  color: #b0beca;
}

/* =========================== */
/* RESPONSIVE - MOBILE STYLES  */
/* =========================== */
@media (max-width: 900px) {
  .content-grid, .text-image-section {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.07rem; }
  .container {
    max-width: 96vw;
    padding: 0 9px;
  }
  .section, section {
    padding: 30px 7px;
    margin-bottom: 36px;
  }
  .card, .testimonial-card, .feature-item, .service-cards > div,
  .feature-grid > div, .icons-grid > div, .service-list > div {
    padding: 18px 10px 18px 14px;
  }
  .content-grid, .feature-grid, .icons-grid, .service-cards, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .contact-info, .contact-information {
    padding: 12px 11px;
  }
  .map-placeholder {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.02rem; }
  .footer-brand img {
    height: 24px;
  }
  .testimonial-card, .feature-item, .service-cards > div,
  .feature-grid > div, .icons-grid > div, .service-list > div {
    padding: 12px 5px 12px 9px;
    font-size: 0.97rem;
  }
}

/* ======================= */
/*       UTILITIES        */
/* ======================= */
.text-section {
  margin-bottom: 12px;
}

hr {
  border: none;
  border-bottom: 1px solid #EFF3F8;
  margin: 26px 0;
}

/* Accent backgrounds */
.bg-accent {
  background: #F4F7FA;
}

/* Small helper text */
.muted, .text-muted {
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Hide visually but available for accessibility */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============
   ANIMATIONS
   ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ==============
   PRINT STYLES
   ============= */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    color: #222;
    background: #fff;
  }
}
