/*! 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, 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; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body, html { height: 100%; background: #F2F4F8; }
body { line-height: 1.6; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; color: #222; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: #243275; text-decoration: none; transition: color 0.18s; font-weight: 700; }
a:hover, a:active, a:focus { color: #FDB913; outline: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }

/* BRAND TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Oswald:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #243275;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.125rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.125rem; }
}

p, li, span, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
}
strong { font-weight: 700; }

.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 18px; box-shadow: 0 4px 18px rgba(36,50,117,0.04); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.feature-grid, .categories-grid, .article-preview-grid, .service-cards, .detailed-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.feature-grid > div, .categories-grid > div, .article-preview-grid > div, .service-cards > div, .detailed-services > div {
  background: #F2F4F8;
  border: 2.5px solid #24327520;
  border-radius: 14px;
  padding: 28px 20px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  box-shadow: 0 2px 14px rgba(36,50,117,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .22s cubic-bezier(.6,.4,.35,1), border-color .2s;
}
.feature-grid > div:hover, .categories-grid > div:hover, .service-cards > div:hover, .article-preview-grid > div:hover {
  border-color: #FDB91386;
  box-shadow: 0 6px 32px rgba(36,50,117,0.09);
}

@media (max-width: 900px) {
  .feature-grid, .categories-grid, .article-preview-grid, .service-cards, .detailed-services {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(36,50,117,0.07);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.ratings-summary {
  margin-top: 18px;
  background: #243275;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  border-radius: 6px;
  font-size: 1.1rem;
}

.cta-banner {
  background: #243275;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(36,50,117,.13);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.cta-banner h2, .cta-banner p {
  color: #fff;
}

.cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FDB913;
  color: #243275;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 14px 36px;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(36,50,117,0.12);
  margin: 10px 0 0 0;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .2s, color .2s, box-shadow .17s;
  outline: none;
  z-index: 2;
}
.cta-button:hover, .cta-button:active, .cta-button:focus {
  background: #243275;
  color: #fff;
  box-shadow: 0 5px 22px rgba(253,185,19,0.10);
}

/* HEADER */
header {
  background: #243275;
  color: #fff;
  padding: 0; 
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 80px;
  gap: 24px;
}
header a img {
  height: 44px;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 10px;
  transition: color .17s, background .15s, border-radius .18s;
  border-radius: 4px;
}
header nav a:hover, header nav a:focus {
  color: #FDB913;
  background: #202c5F;
}
header .cta-button {
  margin-left: 32px;
  margin-top: 0;
}

@media (max-width: 1000px) {
  header .container {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }
  header nav {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    padding: 0 10px;
  }
  header nav {
    display: none !important;
  }
  header .cta-button {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1080;
  background: #FDB913;
  color: #243275;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 6px 24px rgba(36,50,117,0.16);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  background: #243275;
  color: #FDB913;
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: #243275;
  color: #fff;
  box-shadow: -6px 0 28px rgba(36,50,117,0.22);
  z-index: 1200;
  padding: 46px 30px 30px 30px;
  transition: transform 0.42s cubic-bezier(.92, .08, .29, 1.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: #FDB913;
  color: #243275;
  border-radius: 50%;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 1300;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #243275;
  color: #FDB913;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px 10px;
  border-radius: 6px;
  transition: background .16s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDB913;
  color: #243275;
}
@media (min-width: 801px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* MAIN LAYOUT */
main {
  width: 100%;
  min-height: 68vh;
  margin-top: 0;
}
section {
  width: 100%;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px rgba(36,50,117,0.07);
  margin-bottom: 20px;
  flex-direction: row;
  border-left: 8px solid #FDB913;
  color: #222;
  font-size: 1.08rem;
  transition: box-shadow 0.17s;
}
.testimonial-card span {
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
  color: #243275;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #222;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(36,50,117,0.12);
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }
  .testimonial-card span {
    margin-left: 0;
  }
}

.confirmation-message {
  color: #243275;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 26px;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 2px solid #24327533;
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(36,50,117,0.06);
}
.search-bar input {
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: #243275;
  flex: 1;
  padding: 0 0 0 4px;
}

/* SERVICE PRICES */
.service-price {
  margin-top: 6px;
  display: inline-block;
  background: #FDB913;
  color: #243275;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 16px;
}

/* MAP SECTION */
.map-section {
  margin: 24px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
footer {
  background: #243275;
  color: #fff;
  padding: 50px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 36px;
  padding-bottom: 28px;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.99rem;
}
.footer-menu a {
  color: #FDB913;
  font-weight: 700;
  transition: color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 0.98rem;
  background-color: #F2F4F8;
  color: #fff;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-links a img {
  height: 28px;
  width: 28px;
  filter: brightness(1) invert(0.05) sepia(0.7) saturate(20) hue-rotate(178deg) contrast(2.2);
  transition: filter .16s;
}
.social-links a:hover img {
  filter: brightness(1) invert(0.65) sepia(1) saturate(17) hue-rotate(178deg) contrast(2.2);
}
.footer-copyright {
  font-size: 0.95rem;
  opacity: 0.72;
  width: 100%;
  margin: 38px 0 0 0;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 20px;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  padding: 26px 24px;
  z-index: 2000;
  box-shadow: 0 -2px 44px rgba(36,50,117,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.7,.63,.29,1), opacity 0.19s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner-text {
  flex: 1 1 0%;
  font-size: 1.04rem;
  line-height: 1.6;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: background .19s, color .17s;
  outline: none;
}
.cookie-btn.accept {
  background: #FDB913;
  color: #243275;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #243275;
  color: #FDB913;
}
.cookie-btn.reject {
  background: #fff;
  color: #243275;
  border: 2px solid #243275;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #243275;
  color: #fff;
}
.cookie-btn.settings {
  background: #243275;
  color: #FDB913;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FDB913;
  color: #243275;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 22px;
    padding: 20px 10px;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 0;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,50,117,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  backdrop-filter: blur(2px);
  animation: fadeInCookieBg .22s;
}
@keyframes fadeInCookieBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 20px;
  box-shadow: 0 9px 42px rgba(36,50,117,0.19);
  max-width: 404px;
  width: 90vw;
  padding: 38px 32px 30px 32px;
  position: relative;
  animation: fadeInCookieModal .35s cubic-bezier(.71,.01,.24,.99);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  width: 36px;
  height: 36px;
  background: #FDB913;
  color: #243275;
  border-radius: 50%;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #243275;
  color: #FDB913;
}
.cookie-modal h2 {
  color: #243275;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 1.07rem;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute; cursor: pointer;
  top:0; left:0; right:0; bottom:0;
  background: #F2F4F8;
  border-radius: 20px;
  transition: background .18s;
}
.cookie-category .switch input:checked + .slider {
  background: #FDB913;
}
.cookie-category .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.20s cubic-bezier(0.64,0.36,0.38,0.92);
  box-shadow: 0 2px 6px rgba(36,50,117,.19);
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-category label {
  font-weight: 700;
  color: #243275;
}
.cookie-category.disabled label {
  color: #888;
  opacity: 0.64;
}
.cookie-category.disabled .slider {
  background: #eee;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  padding: 10px 18px;
  font-size: 1rem;
}

/* MISC UTILITIES */
.team-endorsement {
  display: block;
  color: #FDB913;
  background: #24327511;
  border-radius: 7px;
  padding: 5px 14px;
  font-weight: 700;
  font-size: 1rem;
  margin: 10px 0 5px 0;
  font-style: italic;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  .container { padding: 0 4px; }
  .section {
    margin-bottom: 36px;
    padding: 26px 4px;
  }
  .cta-banner { padding: 24px 8px; }
}
/* Always leave at least 20px between cards and containers */
.card, .testimonial-card, .feature-grid > div { margin-bottom: 20px; }
.card-container, .feature-grid, .categories-grid, .service-cards, .article-preview-grid, .content-grid, .detailed-services { gap: 24px; }

/* High Contrast for Testimonial Texts */
.testimonial-card, .testimonial-card p, .testimonial-card span, .ratings-summary {
  color: #222 !important;
  background: #fff !important;
}

/* Animations for Buttons & Interactions */
.cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: background .20s, color .19s, box-shadow .16s, transform .20s;
}
.cta-button:active, .cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active, .cookie-modal-close:active {
  transform: scale(0.96);
}

/* Accessibility Focus Styles */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2.5px solid #FDB913;
  outline-offset: 1px;
}

/* Hide visually but keep accessible */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
