/* ===============================================================
   CSS Reset & Normalize (consistent for all browsers)
   =============================================================== */
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 {
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F7F9F9;
  color: #191C1F;
  font-family: "Georgia", "Times New Roman", Times, serif;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #154360;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus-visible {
  color: #2E86C1;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
:focus-visible {
  outline: 2px solid #2E86C1;
  outline-offset: 2px;
}

/* ===============================================================
   Typography & Elegant Classic Scale
   =============================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", "Times New Roman", Times, serif;
  color: #154360;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem; /* 44px */
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.section h2, .section h1 {
  margin-top: 0;
}
p, ul, ol, blockquote, dl, dd {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.125rem;
  color: #212529;
  line-height: 1.7;
  margin-bottom: 1.25em;
}
strong, b {
  font-weight: 700;
  color: #154360;
}
small {
  font-size: 0.89em;
}
blockquote {
  font-style: italic;
  padding-left: 20px;
  border-left: 4px solid #2E86C1;
  color: #154360;
  margin-bottom: 1em;
  background: none;
}

dt {
  font-weight: 700;
  margin-top: 12px;
  color: #154360;
}
dd {
  margin-left: 20px;
  margin-bottom: 8px;
}

/* ===============================================================
   Container & Layout
   =============================================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #154360;
  margin-bottom: 12px;
}
/* Utility Flex Containers */
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(21,67,96,0.07);
  border-radius: 16px;
  margin-bottom: 20px;
  min-width: 0;
  color: #212529;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Section spacing - MANDATORY RULES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Cards & Surfaces */
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(21,67,96,0.07);
  padding: 32px 28px 28px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #E9ECEF;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(21,67,96,0.07);
  padding: 28px;
  border: 1px solid #EAF0F2;
}

/* Mobile-first Flex Direction */
.text-image-section,
.content-grid {
  flex-direction: column;
}

@media (min-width: 769px) {
  .text-image-section,
  .content-grid {
    flex-direction: row;
  }
}

/* ===============================================================
   Navigation & Header
   =============================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(21, 67, 96, 0.05);
  border-bottom: 1px solid #EAF0F2;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 70px;
  justify-content: space-between;
  padding: 18px 0;
}
nav > a img {
  height: 52px;
  width: auto;
  vertical-align: middle;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  margin-left: 24px;
}
nav ul li {
  margin: 0;
}
nav ul li a {
  font-size: 1.125rem;
  color: #154360;
  position: relative;
  padding: 7px 2px;
  transition: color 0.2s;
}
nav ul li a:hover,
nav ul li a:focus-visible {
  color: #2E86C1;
  text-decoration: underline;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: block;
  font-size: 2rem;
  background: #F7F9F9;
  color: #154360;
  border: 1px solid #2E86C1;
  border-radius: 10px;
  margin-left: 14px;
  width: 46px;
  height: 46px;
  line-height: 1;
  align-self: center;
  position: relative;
  z-index: 35;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus-visible {
  background: #2E86C1;
  color: #fff;
}

/* Hide desktop menu on mobile */
@media (max-width: 1024px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Slide In Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(21,67,96,0.97);
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.39s cubic-bezier(.55,0,.1,1), opacity 0.24s;
}
.mobile-menu-close {
  margin: 24px 0 12px 22px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  align-self: flex-start;
  z-index: 110;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus-visible {
  color: #2E86C1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 28px;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 2.1;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible {
  color: #2E86C1;
  text-decoration: underline;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============================================================
   CTA Buttons
   =============================================================== */
.cta-primary, .cta-secondary, .mobile-menu .cta-primary {
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: 35px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  text-align: center;
  text-decoration: none;
  margin-top: 14px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 2px solid #154360;
}
.cta-primary {
  background: #154360;
  color: #fff;
  box-shadow: 0 3px 17px 0 rgba(21,67,96,0.09);
}
.cta-primary:hover, .cta-primary:active, .cta-primary:focus-visible {
  background: #2E86C1;
  border-color: #2E86C1;
  color: #fff;
  box-shadow: 0 6px 16px 0 rgba(21,67,96,0.13);
}
.cta-secondary {
  background: #fff;
  color: #154360;
  border: 2px solid #154360;
  box-shadow: 0 3px 15px 0 rgba(21,67,96,0.07);
}
.cta-secondary:hover, .cta-secondary:active, .cta-secondary:focus-visible {
  background: #2E86C1;
  color: #fff;
  border-color: #2E86C1;
}

/* ===============================================================
   Feature Icons and Section Lists
   =============================================================== */
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 18px;
}
section ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(21,67,96,0.08);
  padding: 24px 18px;
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #EAF0F2;
  margin-bottom: 20px;
}
section ul li img {
  width: 41px;
  height: 41px;
}
@media (max-width: 768px) {
  section ul {
    flex-direction: column;
    gap: 16px;
  }
  section ul li {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Category and Filters Example */
.category-filters {
  font-size: 1rem;
  margin-top: 10px;
  color: #154360;
}
.category-filters a {
  color: #2E86C1;
  font-weight: 700;
  margin: 0 6px;
  padding: 4px 3px;
  transition: color 0.18s;
}
.category-filters a:hover, .category-filters a:focus-visible {
  color: #154360;
  text-decoration: underline;
}

/* ===============================================================
   Forms, Inputs & Newsletter
   =============================================================== */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
input[type="email"], input[type="text"], input[type="number"], textarea {
  font-family: inherit;
  font-size: 1.09rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #D8DEE4;
  box-shadow: none;
  background: #F7F9F9;
  transition: border 0.16s, box-shadow 0.16s;
  color: #212529;
  margin-bottom: 8px;
  width: 260px;
  max-width: 100%;
}
input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
  border-color: #2E86C1;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(46,134,193,0.07);
}
button[type="submit"] {
  background: #154360;
  color: #fff;
  padding: 12px 28px;
  border-radius: 22px;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 1.11rem;
  border: 2px solid #154360;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(21,67,96,0.08);
}
button[type="submit"]:hover, button[type="submit"]:focus-visible {
  background: #2E86C1;
  border-color: #2E86C1;
}

/* ===============================================================
   Footer Styling
   =============================================================== */
footer {
  background: #154360;
  color: #fff;
  padding: 48px 0 24px 0;
  margin-top: 60px;
  border-top: 2px solid #EAF0F2;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.125rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-weight: 700;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-menu {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-menu li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 3px 2px 3px;
  transition: color 0.18s;
}
.footer-menu li a:hover, .footer-menu li a:focus-visible {
  color: #2E86C1;
}
.footer-contact {
  font-size: 1rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  margin-bottom: 10px;
  color: #F7F9F9;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  filter: grayscale(14%);
  transition: filter 0.15s;
}
.footer-social a:hover img, .footer-social a:focus-visible img {
  filter: grayscale(0%);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-menu {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
}

/* ===============================================================
   Cookie Consent Banner & Modal
   =============================================================== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 999;
  background: #fff;
  color: #154360;
  box-shadow: 0 -2px 24px 0 rgba(21,67,96,0.14);
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: "Georgia", "Times New Roman", Times, serif;
  border-top: 1px solid #EAF0F2;
  animation: cookie-slide-in 0.60s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-settings {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 24px;
  border: 2px solid #154360;
  padding: 10px 22px;
  background: #154360;
  color: #fff;
  margin: 0 2px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.cookie-btn-reject {
  background: #fff;
  color: #154360;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus-visible {
  background: #154360;
  color: #fff;
}
.cookie-btn-settings {
  background: #2E86C1;
  color: #fff;
  border-color: #2E86C1;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus-visible {
  background: #fff;
  color: #2E86C1;
}
#cookie-consent-banner a {
  color: #2E86C1;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Cookie modal overlay */
#cookie-preferences-modal {
  position: fixed;
  z-index: 1001;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,67,96,0.62);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
#cookie-preferences-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  border: 2px solid #2E86C1;
  padding: 32px 26px 22px 26px;
  max-width: 410px;
  min-width: 0;
  box-shadow: 0 8px 32px 0 rgba(21,67,96,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.37s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #154360;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.09rem;
  padding-bottom: 9px;
  border-bottom: 1px solid #EAF0F2;
  margin-bottom: 7px;
}
.cookie-category-row:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #EAF0F2;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  margin-right: 8px;
  flex-shrink: 0;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  background: #2E86C1;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 2px;
  transition: left 0.18s, background 0.18s;
  pointer-events: none;
}
.cookie-toggle input:checked + span {
  background: #154360;
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-size: 1rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 18px;
  border: 2px solid #2E86C1;
  background: #2E86C1;
  color: #fff;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.cookie-modal-actions .cookie-btn-secondary {
  background: #fff;
  color: #2E86C1;
}
.cookie-modal-actions .cookie-btn-secondary:hover {
  background: #EAF0F2;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus-visible {
  background: #154360;
  color: #fff;
  border-color: #154360;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #154360;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    max-width: 94vw;
    padding: 18px 8vw 12px 8vw;
  }
}

/* ===============================================================
   Responsive Design – Mobile First
   =============================================================== */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.38rem;
    margin-bottom: 11px;
  }
  h3 {
    font-size: 1.12rem;
  }
  .service-card, .card {
    padding: 17px 11px 13px 13px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 12px 5px;
  }
}

@media (max-width: 600px) {
  .footer-brand img {
    height: 30px;
  }
  .footer-menu {
    font-size: 0.98rem;
    gap: 8px;
  }
  .mobile-nav a {
    font-size: 1.12rem;
  }
  .cookie-modal-content {
    padding: 9vw 3vw;
  }
}

/* ===============================================================
   Utility Classes
   =============================================================== */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.m-auto { margin-left: auto !important; margin-right: auto !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ===============================================================
   Subtle Animations & Microinteractions
   =============================================================== */
.cta-primary, .cta-secondary, button, .mobile-menu-toggle, .mobile-menu-close, .footer-menu a, .cookie-btn, .cookie-btn-settings {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, filter 0.15s;
}
.card, .service-card, .testimonial-card, section ul li {
  transition: box-shadow 0.15s, border-color 0.12s, transform 0.09s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, section ul li:hover {
  box-shadow: 0 8px 28px 0 rgba(21,67,96,0.13);
  border-color: #2E86C1;
  transform: translateY(-2px) scale(1.018);
}

/* ===============================================================
   Accessibility Utility
   =============================================================== */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===============================================================
   Elegant Classic Tone Enhancements
   =============================================================== */
section {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 14px 0 rgba(0,0,0,0.065);
}
main > section:first-of-type {
  background: #F7F9F9;
  box-shadow: none;
}
@media (max-width: 600px) {
  section {
    border-radius: 7px;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,0.045);
  }
}

/* Hide cookie banner/modal by default (displayed via JS) */
#cookie-consent-banner, #cookie-preferences-modal { display: none; }

/* END OF CSS FILE */
