/* =======================
   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, main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #EFF3F8 0%, #fff 100%);
  color: #2A4C7A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
:focus-visible {
  outline: 2px solid #2A4C7A;
  outline-offset: 2px;
}
/* =============
   Typography  
   ============= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2A4C7A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul li, ol li, .text-section {
  color: #254163;
  font-size: 1rem;
  line-height: 1.7;
}
.text-section {
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}
/* Typography scaling for responsiveness */
@media (min-width: 769px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
}
/* ============
   Containers
   ============ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 28px -8px rgba(42,76,122,0.08);
}
@media (max-width: 950px) {
  .section {
    padding: 32px 8px;
  }
}
/* =============
   Header & Nav
   ============= */
header {
  width: 100%;
  background: linear-gradient(90deg, #2A4C7A 0%, #375e90 100%);
  box-shadow: 0 1px 12px rgba(42,76,122,0.07);
  position: relative;
  z-index: 30;
}
header .container {
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
header nav img {
  margin-right: 30px;
  max-height: 38px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
header nav a:not(.cta-primary):hover,
header nav a:not(.cta-primary):focus {
  color: #FBAF4B;
  background: rgba(255, 255, 255, 0.08);
}
.cta-primary {
  background: linear-gradient(90deg, #FBAF4B 0%, #ffcf7b 100%);
  color: #2A4C7A !important;
  border-radius: 30px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  box-shadow: 0 2px 12px -2px #fbbd4b44;
  transition: background 0.25s, color 0.2s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  color: #fff !important;
  background: linear-gradient(90deg, #2A4C7A 0%, #3c609b 100%);
  box-shadow: 0 6px 32px -12px #2a4c7a56;
}
@media (max-width: 950px) {
  header nav img {
    margin-right: 16px;
    max-height: 32px;
  }
  header nav {
    gap: 8px;
  }
}
/* Hide nav for mobile (below 900px) */
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
}
/* =============
   Mobile Menu
   ============= */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 100;
  background: #FBAF4B;
  color: #2A4C7A;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px -8px #FBAF4B44;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2A4C7A;
  color: #ffcf7b;
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #2A4C7A;
  color: #fff;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.71,0.01,0.38,1.02);
  box-shadow: -6px 0 46px -15px #233B65aa;
  padding: 0 18px;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FBAF4B;
  font-size: 2.1rem;
  position: absolute;
  top: 26px;
  right: 24px;
  cursor: pointer;
  border: none;
  z-index: 121;
  transition: color 0.22s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff1d0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 80px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 8px 12px 18px;
  border-radius: 11px;
  transition: background 0.2s, color 0.2s;
  outline: 0;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FBAF4B;
  color: #2A4C7A;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ===================
   Hero Section
   =================== */
.hero {
  background: linear-gradient(120deg, #2A4C7A 0%, #FBAF4B 100%);
  color: #fff;
  padding: 62px 0 46px 0;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 8px 32px -8px #2a4c7a22;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
  font-size: 2.6rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px #2a4c7a44;
}
.hero p {
  color: #fff;
  font-size: 1.13rem;
  margin-bottom: 26px;
  max-width: 630px;
}
.hero .cta-primary {
  margin-top: 8px;
  box-shadow: 0 3px 32px -6px #ffd47b76;
}
@media (max-width: 767px) {
  .hero {
    padding: 38px 0 22px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 38px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
/* ========================
   Main Wrapper & Sections
   ======================== */
main {
  width: 100%;
  min-height: 60vh;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.section ul, .text-section ul {
  margin-left: 0;
}
.section ul li, .text-section ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #2A4C7A;
  background: #EFF3F8;
  border-radius: 11px;
  padding: 10px 16px;
  margin-bottom: 12px;
  margin-right: 8px;
  gap: 12px;
  box-shadow: 0 2px 8px -4px #2A4C7A0b;
}
.section ul li:last-child, .text-section ul li:last-child { margin-bottom: 0; }
.section ul li img, .text-section ul li img { max-width: 28px; max-height: 28px; margin-right: 7px; }

/* =======
 Cards
 ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 340px;
  background: #f6f8fb;
  border-radius: 18px;
  box-shadow: 0 2px 18px -8px #2a4c7a14;
  padding: 30px 22px 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
  border: 1.7px solid #EFF3F8;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 40px -10px #2a4c7a4a;
  transform: translateY(-5px) scale(1.02);
  border-color: #FBAF4B60;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #2A4C7A;
  margin-bottom: 7px;
}
.service-card p {
  color: #375e90;
  margin-bottom: 11px;
  font-size: 1.03rem;
}
.service-price {
  font-size: 1.02rem;
  font-weight: 700;
  color: #FBAF4B;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .service-card { min-width: 180px; max-width: 100%; }
}
/* ===============
   Testimonial Cards
   =============== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px 18px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px -8px #2a4c7a14;
  margin-bottom: 20px;
  border: 1.7px solid #EFF3F8;
  min-width: 220px;
  max-width: 370px;
  transition: box-shadow 0.23s, border 0.18s;
}
.testimonial-card p {
  font-style: italic;
  font-weight: 500;
  color: #2A4C7A;
  font-size: 1.11rem;
}
.testimonial-name {
  color: #254163;
  font-weight: 600;
  font-size: 0.98rem;
}
.testimonial-stars {
  color: #FBAF4B;
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 44px -8px #2a4c7a2d;
  border-color: #FBAF4B80;
}
@media (max-width: 900px) {
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
}
/* =============
   Button Styles
   ============= */
button, .cta-primary, .cookie-banner button, .cookie-modal button, .mobile-menu-toggle {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
/* =============
   Footer Styles
   ============= */
footer {
  padding: 0;
  background: #EFF3F8;
  box-shadow: 0 -4px 16px -9px #2a4c7a19;
  margin-top: 64px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  font-size: 1rem;
}
footer .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer a img {
  height: 32px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #2A4C7A;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
  padding: 4px 6px;
  border-radius: 7px;
  width: fit-content;
}
footer nav a:hover,footer nav a:focus {
  color: #FBAF4B;
  background: #fffbe5;
}
footer .text-section {
  font-size: 1rem;
}
footer .text-section a {
  color: #2A4C7A;
  padding: 2px 0;
  font-weight: 500;
  transition: color 0.13s;
}
footer .text-section a:hover,footer .text-section a:focus {
  color: #FBAF4B;
}
footer .text-section img {
  height: 32px;
  width: 32px;
  margin: 0 12px 0 0;
  vertical-align: middle;
}
.text-section p {
  margin-bottom: 6px;
}
@media (max-width: 950px) {
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 24px; }
}
/* =====================
   Flex Utility Patterns
   ===================== */
.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; }
.section { margin-bottom: 60px; padding: 40px 20px; }
/* Mobile: Stack flex containers as columns */
@media (max-width: 768px) {
  .content-grid, .text-image-section, .card-container, .feature-item {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start;
  }
}
/* ======================
   Cookie Banner Styles
   ====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #fffbe5 0%, #EFF3F8 100%);
  box-shadow: 0 -3px 24px -5px #2a4c7a29;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  padding: 26px 16px 16px 16px;
  gap: 15px;
  transition: transform 0.42s cubic-bezier(0.67,0.06,0.38,0.98), opacity 0.25s;
  font-size: 1.08rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 8px 24px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #FBAF4B;
  color: #2A4C7A;
  box-shadow: 0 1px 6px -2px #FBAF4B3a;
}
.cookie-banner button.cookie-settings {
  background: #2A4C7A;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2A4C7A;
  color: #fff;
  box-shadow: 0 4px 12px -4px #2A4C7A42;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #FBAF4B;
  color: #2A4C7A;
}
@media (max-width: 600px) {
  .cookie-banner { font-size: 0.98rem; padding: 18px 8px 9px 8px; gap: 11px; }
  .cookie-banner .cookie-actions { gap: 8px; }
}
/* Cookie Modal (Preferences) */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,76,122,0.43);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 21px;
  min-width: 320px;
  max-width: 430px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 6px 48px -10px #2A4C7A49;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeinModal 0.35s cubic-bezier(0.71,0.01,0.38,1.02);
  position: relative;
}
@keyframes fadeinModal {
  0% { transform: scale(0.95) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A4C7A;
  font-size: 1.33rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 500;
  color: #2A4C7A;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FBAF4B;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 1px solid #EFF3F8;
  outline: none;
  margin-right: 5px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 18px;
  background: #FBAF4B;
  color: #2A4C7A;
  font-weight: 600;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #2A4C7A;
  color: #fff;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  color: #2a4c7a;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  padding: 0 5px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10;
}
.cookie-modal .cookie-modal-close:focus, .cookie-modal .cookie-modal-close:hover {
  color: #FBAF4B;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 95vw;
    max-width: 98vw;
    padding: 22px 4vw 19px 4vw;
  }
  .cookie-modal .cookie-modal-actions { gap: 8px; }
}
/* ========================
   Miscellaneous Styles
   ======================== */
.address {
  color: #2A4C7A;
  font-weight: 600;
  font-size: 1.09rem;
  margin: 8px 0;
}
.text-section {
  margin-bottom: 12px;
}
section h2, section h1 {
  margin-bottom: 22px;
}
section {
  margin-bottom: 32px;
}
/* ==========
   Animations
   ========== */
a, button, .service-card, .testimonial-card, .cta-primary {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.13s;
}
/* ===============
   Responsive Fixes
   =============== */
@media (max-width: 750px) {
  .container { padding: 0 6px; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.14rem; }
}
@media (max-width: 500px) {
  .section {
    padding: 17px 2px;
    margin-bottom: 36px;
    border-radius: 13px;
  }
  .hero {
    padding: 29px 0 12px 0;
    margin-bottom: 22px;
  }
}
/* =====================
   Accessibility Fixes
   ===================== */
[tabindex]:focus, a:focus-visible, button:focus-visible {
  outline: 2px solid #FBAF4B;
  outline-offset: 2px;
}
::selection {
  background: #FBAF4B99;
  color: #2A4C7A;
}

/* ===============================
   General Utility & Custom Fixes
   =============================== */

.text-center { text-align: center; }
.mt-4 { margin-top: 20px; }
.mb-4 { margin-bottom: 20px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* =======================
   Hide content on print
   ======================= */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal-overlay {
    display: none !important;
  }
}
