/*! 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, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B1F2B;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: inherit; }
img, svg { display: block; max-width: 100%; height: auto; }
a {
  color: #517C8C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #1B1F2B;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}

/* Typography - Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1B1F2B;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 12px; font-weight: 700; }
p, li, a, span, strong {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong { font-weight: 700; }
.text-section {
  margin-bottom: 24px;
  font-size: 1.07rem;
}

/* Brand Colors */
:root {
  --pf-primary: #1B1F2B;
  --pf-secondary: #517C8C;
  --pf-accent: #F7E8D9;
  --pf-bg: #fff;
  --pf-contrast-bg: #F7E8D9;
  --pf-text: #1B1F2B;
}

/* Container Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px; padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section Spacing and Flex Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(27, 31, 43, 0.07);
  padding: 28px 24px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(27, 31, 43, 0.13);
  transform: translateY(-4px) scale(1.022);
}
.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;
  background: #F7E8D9;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(27,31,43,0.04);
  color: #1B1F2B;
  min-width: 240px;
  margin-bottom: 20px;
  flex: 1 1 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(27,31,43,0.06);
  padding: 20px;
  margin-bottom: 20px;
}

/* Specific Patterns */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(81, 124, 140, 0.07);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 20px 0 rgba(27,31,43,0.08);
  transform: translateY(-3px) scale(1.025);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-block {
  flex: 1 1 260px;
  background: #F7E8D9;
  border-radius: 18px;
  padding: 28px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(81, 124, 140, 0.04);
  display: flex;
  flex-direction: column;
}

.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.faq-accordion .text-section {
  background: #fff;
  border: 1.5px solid #517C8C20;
  border-radius: 12px;
  padding: 20px 18px;
  margin: 0 0 0 0;
  flex: 1 1 220px;
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  flex-direction: row;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px 0 rgba(81, 124, 140, 0.05);
  margin-bottom: 0;
  min-width: 220px;
}

.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.testimonial-meta span, .testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #517C8C;
}


/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 28px;
  font-size: 1.1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(27,31,43,0.06);
  transition: background .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn-primary {
  background: #517C8C;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1B1F2B;
  color: #F7E8D9;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(81,124,140,.13);
}
.btn-secondary {
  background: #fff;
  color: #517C8C;
  border: 2px solid #517C8C;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #517C8C;
  color: #fff;
  border-color: #517C8C;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(81,124,140,0.13);
}

/* Hero Section */
.hero {
  background: #517C8C;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 0 0 32px 32px;
  padding: 60px 0 60px 0;
  margin-bottom: 60px;
}
.hero h1 {
  color: #fff;
  font-size: 2.9rem;
  margin-bottom: 18px;
}
.hero p {
  color: #F7E8D9;
  font-size: 1.17rem;
  margin-bottom: 38px;
}
.hero .btn-primary {
  background: #F7E8D9;
  color: #1B1F2B;
  box-shadow: 0 2px 10px 0 rgba(27,31,43,0.11);
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #fff;
  color: #517C8C;
}

/* Header & Navigation */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(27,31,43,.04);
  z-index: 99;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
header a {
  display: inline-block;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1B1F2B;
  margin-right: 20px;
  padding: 4px 0;
  letter-spacing: .01em;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
header nav a:last-child {
  margin-right: 0;
}
header .btn-primary {
  margin-left: 24px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #1B1F2B;
  display: none;
  cursor: pointer;
  margin-left: 20px;
  padding: 5px 12px;
  border-radius: 10px;
  transition: background .14s, color .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F7E8D9;
  color: #517C8C;
}

/* Mobile Navigation */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1B1F2B;
  color: #fff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #F7E8D9;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  transition: color .14s, background .14s;
  border-radius: 10px;
  padding: 4px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #517C8C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 36px 0 36px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.28rem;
  padding: 14px 0;
  border-bottom: 1px solid #444;
  width: 100%;
  transition: color .18s, background .19s, padding-left .2s;
  border-radius: 0 10px 10px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #517C8C;
  color: #fff;
  padding-left: 20px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1B1F2B;
  color: #fff;
  z-index: 3500;
  box-shadow: 0 -2px 12px 0 rgba(27,31,43,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 20px 24px 20px;
  font-size: 1rem;
  animation: cookieBannerIn 0.5s ease;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__btns {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 20px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(27,31,43,0.11);
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-banner .accept {
  background: #517C8C;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #F7E8D9;
  color: #1B1F2B;
}
.cookie-banner .reject {
  background: #fff;
  color: #517C8C;
  border: 2px solid #517C8C;
}
.cookie-banner .reject:hover {
  background: #517C8C;
  color: #fff;
  border-color: #517C8C;
}
.cookie-banner .settings {
  background: #F7E8D9;
  color: #1B1F2B;
}
.cookie-banner .settings:hover {
  background: #517C8C;
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3550;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,31,43,.62);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .24s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B1F2B;
  border-radius: 16px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 12px 58px 0 rgba(27,31,43,.22);
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: slideModalIn .37s cubic-bezier(.42, 0, .14, 1.05);
  position: relative;
}
@keyframes slideModalIn {
  from { transform: translateY(100px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #517C8C;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 4px 14px;
  transition: background .15s, color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F7E8D9;
  color: #1B1F2B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #517C8C;
  width: 19px;
  height: 19px;
  margin-right: 6px;
}
/* Essential Cookie always checked and disabled */
.cookie-category .essential {
  font-weight: 700;
  color: #517C8C;
}


/* Contact Info, Map, and Other Layouts */
.content-contact-info, .contact-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
  align-items: center;
}
.content-contact-info > div, .contact-preview > div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  background: #F7E8D9;
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1 1 200px;
}
.map-snippet, .map-embed {
  flex: 1 1 200px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 5px 0 rgba(81,124,140,0.045);
  color: #1B1F2B;
  font-size: 1.06rem;
}

/* Footer Styles */
footer {
  width: 100%;
  background: #1B1F2B;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  gap: 24px;
}
.footer-nav {
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 2px solid #517C8C33;
  display: flex;
  justify-content: center;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #F7E8D9;
  font-size: 1rem;
  padding: 2px 0;
  margin-right: 0;
  font-weight: 600;
  letter-spacing: .01em;
}
.footer-nav a:hover {
  color: #517C8C;
}
.footer-contact {
  padding: 36px 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-contact img {
  width: 53px; height: 53px;
  margin-right: 18px;
}
.footer-contact div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #F7E8D9;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #F7E8D9;
  text-decoration: underline;
  font-size: 0.98rem;
}
.footer-contact a:hover {
  color: #517C8C;
}

/* Form Elements */
input[type="text"], input[type="email"], input[type="number"], textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid #517C8C44;
  background: #fff;
  color: #1B1F2B;
  outline: none;
  margin-bottom: 18px;
  min-width: 180px;
  transition: border .16s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #517C8C;
}
button:focus {
  outline: 2px solid #F7E8D9;
}

/* Miscellaneous */
ol > li, ul > li {
  margin-bottom: 12px;
  line-height: 1.55;
}
ul:last-child, ol:last-child { margin-bottom: 0; }
::-webkit-selection { background: #517C8C; color: #fff; }
::selection { background: #517C8C; color: #fff; }

/* Spacing for all major blocks for breathing space */
section { margin-bottom: 60px; padding: 40px 20px; }
section:last-child { margin-bottom: 0; }

/* Media Queries - Responsive Design */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .content-wrapper { max-width: 96vw; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .testimonial-slider, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-block, .testimonial-card, .card {
    flex-basis: 95%;
  }
  .content-contact-info, .contact-preview {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 6px;
    min-height: 56px;
  }
  nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .content-wrapper { padding-left: 0; padding-right: 0; }
  .hero { padding: 36px 0 36px 0; border-radius: 0 0 24px 24px; }
  .hero h1 { font-size: 2rem; }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .contact-preview, .content-contact-info {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-grid, .icon-list {
    flex-direction: column;
    gap: 14px;
  }
  .icon-list li {
    min-width: 160px;
  }
  .card {
    padding: 16px 8px;
  }
  .service-block {
    padding: 18px 10px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 14px 10px;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 10px;
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .logo, header img {
    width: 120px;
    height: auto;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  .hero { padding: 24px 0 24px 0; }
  .footer-contact img { width: 37px; height: 37px; }
}

/* Micro-interactions */
.card, .feature-grid > div, .testimonial-card, .service-block {
  transition: box-shadow .22s, transform .16s;
}
.card:hover, .feature-grid > div:hover, .service-block:hover {
  box-shadow: 0 10px 26px 0 rgba(81,124,140,0.18);
  transform: translateY(-3px) scale(1.022);
}

/* Hide mobile menu by default on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  nav { display: flex !important; }
}
