/* RESET & BASE ---------------------- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #F5F2EC 0%, #FFFFFF 80%);
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  min-height: 100vh;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #23607A;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #B86327;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

*:focus {
  outline: 2px solid #23607A;
  outline-offset: 2px;
}

/* MAIN LAYOUT CONTAINERS ---------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* TYPOGRAPHY ---------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23607A;
  margin-bottom: 8px;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.2rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul li, ol li {
  color: #434343;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23607A;
  margin-bottom: 12px;
  font-weight: 500;
}

strong, b {
  color: #23607A;
}

/* HEADER ---------------------- */
header {
  background: linear-gradient(90deg, #F5F2EC 60%, #f7fafc 100%);
  box-shadow: 0 1px 12px rgba(35, 96, 122, 0.03);
  padding: 0 0 0 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 18px 18px;
  gap: 24px;
}
.brand-logo img {
  height: 48px;
  min-width: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  color: #23607A;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 24px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a.active {
  background: #B86327;
  color: #fff;
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg,#23607a 60%,#195769 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(35,96,122,0.1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, transform 0.16s, box-shadow 0.18s;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg,#B86327 70%,#cd753f 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 32px rgba(184,99,39,0.15);
}
.cta.accent {
  background: #B86327;
  color: #fff;
  border-radius: 30px;
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.16s, transform 0.14s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta.accent:hover, .cta.accent:focus {
  background: #23607A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU -------------------------- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 202;
  background: none;
  border: none;
  font-size: 2rem;
  color: #23607A;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: #ececec;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(135deg, #f5f2ec 85%, #f7fafc 100%);
  box-shadow: 0 8px 24px rgba(35,96,122,0.10);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 32px;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #23607A;
  font-size: 2rem;
  align-self: flex-end;
  margin: 8px 26px 8px 8px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 201;
}
.mobile-menu-close:hover {
  background: #ececec;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  color: #23607A;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
  transition: color 0.16s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B86327;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
  .container {
    max-width: 95vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 975px) {
  .main-nav {
    gap: 6px;
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
}

/* Hide nav, show burger on small screens */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

@media (max-width: 610px) {
  .brand-logo img {
    height: 40px;
    min-width: 40px;
  }
}

/* HERO SECTION ------------------- */
section {
  background: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Features / cards / grid --------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.feature-grid li, .feature-grid div {
  background: #fff;
  box-shadow: 0 6px 18px rgba(35,96,122,0.07);
  border-radius: 20px;
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 340px;
  min-width: 220px;
  min-height: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.2s;
  position: relative;
}
.feature-grid li:hover, .feature-grid div:hover {
  box-shadow: 0 12px 32px rgba(184,99,39,0.18);
  transform: translateY(-5px) scale(1.015);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

/* Category tabs in catalog */
.category-tabs {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 20px 0 20px 0;
}
.category-tabs li a {
  display: block;
  padding: 10px 20px;
  background: #F5F2EC;
  border-radius: 20px;
  color: #23607A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.14s;
}
.category-tabs li a:hover, .category-tabs li a.active {
  background: #B86327;
  color: #fff;
}

/* Service highlights */
.service-highlights, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.service-highlights li, .service-list li {
  background: #F5F2EC;
  border-radius: 15px;
  box-shadow: 0 3px 16px rgba(35,96,122,0.07);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.service-highlights li:hover, .service-list li:hover {
  box-shadow: 0 8px 24px rgba(35,96,122,0.11);
  transform: translateY(-2px) scale(1.015);
}
.service-price {
  margin-top: 8px;
  font-weight: 700;
  color: #B86327;
  letter-spacing: 2px;
  font-size: 1rem;
}

.service-highlight {
  background: #23607A;
  color: #fff;
  border-radius: 18px;
  font-size: 1.08rem;
  padding: 18px 22px;
  margin-top: 18px;
  box-shadow: 0 4px 16px rgba(35,96,122,0.09);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/* Cards (General) -------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35,96,122,0.10);
  padding: 28px 22px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(184,99,39,0.25);
  transform: translateY(-4px) scale(1.01);
}

/* Responsive Card fixes */
@media (max-width: 650px) {
  .card-container, .feature-grid, .service-highlights, .service-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card, .feature-grid li, .feature-grid div, .service-highlights li, .service-list li {
    min-width: 0;
    width: 100%;
    max-width: unset;
  }
}

/* Content grid (utility) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Text & Image combined sections */
.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: flex-start;
    gap: 20px;
  }
}

/* Testimonials ------------------------------ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(35,96,122,0.09);
  margin-bottom: 20px;
  margin-top: 10px;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.16s, transform 0.15s;
  color: #222;
  font-size: 1.07rem;
}
.testimonial-card p {
  color: #222; /* High contrast text */
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  color: #23607A;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(35,96,122,0.14);
  transform: translateY(-3px) scale(1.013);
}

/* FAQ List */
.faq-list {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list li {
  padding: 13px 16px;
  background: #F5F2EC;
  border-radius: 8px;
  font-size: 1rem;
  color: #434343;
}
.faq-list li strong {
  color: #23607A;
}

/* Values List */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.values-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(35,96,122, 0.10);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  min-width: 200px;
  margin-bottom: 20px;
}
.values-list img {
  width: 30px;
  height: 30px;
}

/* Buttons & links -------------- */
button,
[type="button"],
[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  border: none;
  border-radius: 24px;
  background: #23607A;
  color: #fff;
  transition: background 0.14s, box-shadow 0.16s, transform 0.14s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(35,96,122,0.07);
}
button:hover, button:focus {
  background: #B86327;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* Blog list ------------------- */
.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.blog-posts-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 14px rgba(35,96,122,0.07);
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: box-shadow 0.13s, transform 0.15s;
}
.blog-posts-list li:hover {
  box-shadow: 0 7px 22px rgba(35,96,122,0.14);
  transform: scale(1.012);
}

/* Category filter */
.category-filter, .filter-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 18px 0 12px 0;
}
.category-filter select, .filter-bar select {
  padding: 7px 18px;
  border-radius: 24px;
  border: 1px solid #c7c9c6;
  font-size: 1rem;
  background: #fff;
  color: #23607A;
}

/* Feature item - utility flex alignment */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Text-section (about/values/policy pages) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Contact Info + Callout */
.contact-info {
  background: #F5F2EC;
  border-radius: 10px;
  padding: 18px 18px 8px 18px;
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.map-location {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.97rem;
}
.contact-callout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 16px;
}

/* Footer -------------------------- */
footer {
  background: linear-gradient(90deg, #23607A 40%, #B86327 100%);
  color: #fff;
  padding: 34px 0 16px 0;
  font-size: 1rem;
  margin-top: 60px;
  box-shadow: 0 -4px 24px rgba(35,96,122,0.09);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-info {
  text-align: center;
  margin-bottom: 5px;
}
.footer-info a {
  color: #F5F2EC;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  transition: color 0.13s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-nav a:hover {
  color: #F5F2EC;
  text-decoration: underline;
}
.social-media {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.social-media a {
  display: flex;
  align-items: center;
}
.social-media img {
  width: 26px;
  height: 26px;
  filter: brightness(96%) saturate(120%);
  transition: filter 0.2s;
}
.social-media a:hover img {
  filter: brightness(110%) drop-shadow(0 1px 6px #f5f2ec90);
}
.copyright {
  color: #F5F2EC;
  font-size: 0.98rem;
  margin-top: 2px;
  text-align: center;
}

/* Responsive Footer */
@media (max-width: 650px) {
  footer {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-nav {
    gap: 7px;
    font-size: 0.93rem;
  }
  .footer-logo img {
    height: 32px;
  }
}

/* Cookie Consent Banner -------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 2100;
  background: #fff;
  color: #434343;
  box-shadow: 0 -6px 32px rgba(35,96,122,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 18px 20px 18px;
  min-height: 54px;
  font-size: 1rem;
  transition: transform 0.24s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-message {
  max-width: 600px;
  margin-right: 12px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 26px;
  padding: 10px 18px;
  background: #23607A;
  color: #fff;
  font-weight: 700;
  border: none;
  transition: background 0.16s, color 0.13s;
  cursor: pointer;
}
.cookie-consent-banner button.cookie-reject {
  background: #ececec;
  color: #23607A;
}
.cookie-consent-banner button.cookie-reject:hover {
  background: #eb9479;
  color: #fff;
}
.cookie-consent-banner button.cookie-settings {
  background: #B86327;
  color: #fff;
}
.cookie-consent-banner button.cookie-settings:hover, 
.cookie-consent-banner button.cookie-settings:focus {
  background: #23607A;
}

@media (max-width: 710px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 10px 22px 10px;
  }
  .cookie-consent-banner .cookie-message {
    margin-right: 0;
  }
  .cookie-consent-banner .cookie-btns {
    gap: 11px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 2500;
  background: rgba(35,96,122,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.26s, visibility 0.26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 42px rgba(35,96,122,0.19);
  padding: 32px 30px 22px 30px;
  width: 95vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #23607A;
}
.cookie-modal .cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 11px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-cat .toggle {
  width: 28px;
  height: 16px;
  border-radius: 10px;
  background: #ececec;
  position: relative;
  border: 1px solid #c9c9c9;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-cat .toggle.enabled {
  background: #23607A;
}
.cookie-cat .toggle-dot {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(35,96,122,0.08);
  transition: left 0.19s;
}
.cookie-cat .toggle.enabled .toggle-dot {
  left: 14px;
}
.cookie-cat .required-label {
  font-size: 0.95rem;
  color: #B86327;
  background: #ffeedb;
  border-radius: 7px;
  padding: 2px 7px;
  margin-left: 6px;
  font-weight: 700;
}
.cookie-modal .cookie-btns {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #23607A;
  cursor: pointer;
}

@media (max-width: 460px) {
  .cookie-modal {
    padding: 18px 6vw 18px 6vw;
  }
}

/* Utility Classes -------------------- */
.text-center {
  text-align: center;
  align-items: center;
}
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Animations & Transitions -------------------- */
.section, .feature-grid li, .feature-grid div, .card, .service-highlights li, .service-list li, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.19s, background 0.13s;
}
.cta.primary, .cta.accent, button {
  transition: background 0.16s, color 0.13s, box-shadow 0.13s, transform 0.13s;
}

/* Responsive Typography */
@media (max-width: 650px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
  .container { padding-left: 3vw; padding-right: 3vw; }
  .feature-grid li, .feature-grid div, .service-highlights li, .service-list li {
    padding: 20px 14px;
  }
}
@media (max-width: 420px) {
  h1, h2 { font-size: 1.1rem; }
  h3 { font-size: 0.97rem; }
}

/* Modern Fonts (web font fallback - fonts served separately in production) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 700;
  src: local('Montserrat'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
}

/* End of CSS */
