/* 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F2F2F2;
  color: #26313A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22577A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #29706E;
  text-decoration: none;
}

/* =============== LAYOUT =============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Primary Sections */
.section, section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,87,122,0.07);
}
main > section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 270px;
  background: #F2F2F2;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,87,122,0.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 320px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(34,87,122,0.15);
  transform: translateY(-3px) scale(1.02);
}
.service-card img {
  width: 48px;
  height: 48px;
}
.service-card h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22577A;
}
.service-price {
  color: #29706E;
  font-weight: 600;
  font-size: 1.05rem;
}
.service-card a {
  margin-top: 8px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  background: #F8FAFB;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(34,87,122,0.07);
  padding: 20px 24px;
  position: relative;
}
.testimonial-content {
  color: #26313A;
  font-size: 1.13rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-author {
  font-weight: 700;
  color: #22577A;
  font-size: 1rem;
}
.testimonial-stars {
  color: #29706E;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* LIST STYLES */
ul, ol {
  margin-left: 24px;
  margin-bottom: 0;
}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 2px;
}
ul li > strong, ol li > strong {
  color: #29706E;
}

/* DD & DT for FAQ sections */
dl {
  margin: 0;
}
dt {
  font-weight: bold;
  color: #22577A;
  margin-top: 16px;
}
dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #26313A;
}

/* Cards (Reusable/Card container styles) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(34,87,122,0.10);
  padding: 26px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,87,122,0.13);
  transform: translateY(-2px) scale(1.015);
}

/* Feature Items (Flexible List) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Text-Image Sections */
.text-image-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

/* Content grid (for e.g. .content-grid class) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Contact Map */
.contact-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,87,122,0.05);
  position: relative;
  z-index: 30;
  padding: 0 0 0 0;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}
header a {
  text-decoration: none;
  color: #22577A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 18px;
  padding: 6px 0;
  transition: color 0.2s;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
header nav a:last-child {
  margin-right: 0;
}
header a:hover, header a:focus {
  color: #29706E;
}
header img {
  width: 134px;
  height: auto;
  margin-right: 24px;
}

.cta-btn {
  background: #22577A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 12px 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(34,87,122,0.09);
  cursor: pointer;
  outline: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, color 0.2s, transform 0.19s;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #29706E;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}

/* ====== MOBILE BURGER MENU ====== */
.mobile-menu-toggle {
  display: none;
  background: #22577A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s;
  position: relative;
  z-index: 40;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #29706E;
}
@media (max-width: 1060px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 87, 122, 0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.86,0,0.07,1);
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.1rem;
  font-weight: lighter;
  margin: 22px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD800;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.17rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  margin-bottom: 6px;
  padding: 12px 0 12px 6px;
  border-radius: 5px;
  min-width: 180px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #29706E;
  color: #fff;
}

/* ========== FOOTER ========== */
footer {
  background: #22577A;
  color: #fff;
  border-top: none;
  box-shadow: 0 -2px 12px rgba(34,87,122,0.08);
  margin-top: 60px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
  padding: 36px 20px 20px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: #caf0f8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  font-size: 1rem;
  margin-right: 0;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #38A3A5;
}
footer .text-section span {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: block;
  margin-bottom: 10px;
}
footer .text-section p {
  color: #f1f1f1;
  font-size: 0.97rem;
}

/* =========== TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22577A;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.25rem;
  margin-top: 0;
}
h2 {
  font-size: 1.45rem;
}
h3 {
  font-size: 1.05rem;
}
h4, h5 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, dd {
  color: #26313A;
  font-size: 1rem;
}

/* BOLD/STRONG */
strong {
  color: #22577A;
  font-weight: 700;
}

/* ============= BUTTONS (also for cookies footer) ============== */
button, .btn {
  background: #38A3A5;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, transform 0.16s;
  outline: none;
  margin-right: 10px;
  margin-bottom: 0;
  min-width: 120px;
  margin-top: 10px;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #22577A;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}

/* ============= COOKIE CONSENT BANNER ============== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  color: #22577A;
  box-shadow: 0 -3px 16px rgba(34,87,122,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 120;
  padding: 24px 20px;
  min-height: 80px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: cookie-slidein 0.53s cubic-bezier(0.62,0,0.19,1);
  transition: transform 0.32s;
}
@keyframes cookie-slidein {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-consent-banner button {
  background: #22577A;
  color: #fff;
  border-radius: 6px;
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
  min-width: 98px;
}
.cookie-consent-banner button.accept {
  background: #38A3A5;
}
.cookie-consent-banner button.reject {
  background: #df3b51;
}
.cookie-consent-banner button.settings {
  background: #cccccc;
  color: #22577A;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #29706E;
  color: #fff;
}

/* Cookies - Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,87,122,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.25s cubic-bezier(0.62,0,0.19,1);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #26313A;
  border-radius: 14px;
  max-width: 420px;
  width: 92vw;
  padding: 34px 32px 28px 32px;
  box-shadow: 0 4px 32px rgba(34,87,122,0.22);
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #22577A;
  margin: 0 0 12px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-category {
  margin: 8px 0 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
}
.cookie-category label {
  cursor: pointer;
  font-weight: 600;
  flex: 1 1 auto;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: #29706E;
  width: 19px;
  height: 19px;
}
.cookie-category .always-on {
  color: #38A3A5;
  padding-left: 6px;
  font-size: 0.98rem;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal-actions button {
  background: #22577A;
  color: #fff;
  border-radius: 6px;
  border: none;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-width: 90px;
  margin: 0;
  transition: background 0.17s, color 0.16s;
}
.cookie-modal-actions button.save {
  background: #38A3A5;
}
.cookie-modal-actions button.cancel {
  background: #ddd;
  color: #22577A;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #29706E;
  color: #fff;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1024px) {
  .service-cards {
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 36px 20px 20px 20px;
  }
}
@media (max-width: 900px) {
  .service-cards {
    gap: 14px;
  }
  .container {
    padding: 0 12px;
  }
  .section, section {
    padding: 30px 8px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 22px 5px;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .service-cards {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  .feature-item {
    gap: 8px;
    margin-bottom: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container {
    gap: 12px;
  }
}
@media (max-width: 580px) {
  h1 {
    font-size: 1.47rem;
  }
  h2 {
    font-size: 1.107rem;
  }
  .service-card {
    padding: 17px 9px;
  }
  .contact-map {
    flex-direction: column;
    gap: 6px;
  }
  .testimonial-content {
    font-size: 1.03rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 16px 8px;
    min-height: 64px;
  }
  .cookie-modal {
    padding: 18px 7px 14px 7px;
  }
  .cookie-category {
    gap: 9px;
    font-size: 0.98rem;
  }
}

/* ========== UTILITY CLASSES =========== */
.mt24 { margin-top: 24px!important; }
.mt44 { margin-top: 44px!important; }
.mb16 { margin-bottom: 16px!important; }
.mb24 { margin-bottom: 24px!important; }
.mb40 { margin-bottom: 40px!important; }


/* =========== MISCELLANEOUS ============= */
::-webkit-input-placeholder { color: #b5b5b5; opacity: 1; }
::-moz-placeholder { color: #b5b5b5; opacity: 1; }
:-ms-input-placeholder { color: #b5b5b5; opacity: 1; }
::placeholder { color: #b5b5b5; opacity: 1; }

/* Selection */
::selection {
  background: #38A3A5;
  color: #fff;
}

/* Hide outline but keep high contrast for accessibility */
a:focus, button:focus, input:focus, .cta-btn:focus, .btn:focus {
  outline: 2px solid #29706E;
  outline-offset: 1px;
}


/* ======= PRINT FIX FOR BODY BG ======= */
@media print {
  body, html {
    background: #fff !important;
    color: #000 !important;
  }
  .section, section {
    background: #fff !important;
    box-shadow: none !important;
  }
  .testimonial-card, .card, .service-card {
    background: #fff !important;
    box-shadow: none !important;
  }
}
