/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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 {
  /* Set good base font size for mobile-first */
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  line-height: 1.75;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #264653;
  background: #fff;
  font-size: 1rem;
  min-height: 100vh;
  font-weight: 400;
  transition: background 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #264653;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; letter-spacing: -0.02em; }
h2 { font-size: 1.75rem; margin-bottom: 20px; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-weight: 600; }
p, ul, ol, dl, blockquote {
  margin-bottom: 18px;
}
a {
  color: #264653;
  text-decoration: underline;
  transition: color 0.18s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #F4A261;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 0.5rem;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  color: #264653;
  background: #F9FAFB;
  padding: 18px 24px;
  border-radius: 0.75rem;
  filter: none;
  margin-bottom: 12px;
  border-left: 4px solid #F4A261;
  line-height: 1.6;
}
cite {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  color: #7b7b7b;
  letter-spacing: 0.01em;
  font-style: normal;
}

::-webkit-input-placeholder { color: #888; opacity: 1; }
::-moz-placeholder { color: #888; opacity: 1; }
:-ms-input-placeholder { color: #888; opacity: 1; }
::placeholder { color: #888; opacity: 1; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(38,70,83,0.05);
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 40px;
    border-radius: 0.75rem;
  }
  .container {
    padding-left: 8px; padding-right: 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Grid/Flex layouts */
.feature-grid, .service-cards, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 1rem; box-shadow: 0 2px 12px rgba(38,70,83,0.07); padding: 24px; transition: box-shadow 0.18s; display: flex; flex-direction: column; }
.card:hover, .card:focus-within { box-shadow: 0 8px 32px rgba(38,70,83,0.12); }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FEFEFE;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(38,70,83,0.08);
  margin-bottom: 20px;
  /* For column alignment on mobile */
  flex-direction: row;
}
@media (max-width: 640px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(38,70,83,0.06);
  position: sticky;
  top: 0;
  z-index: 98;
}
.main-nav {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
}
.main-nav > a {
  color: #264653;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-right: 12px;
  padding: 8px 6px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav > a.cta {
  background: #264653;
  color: #fff;
  padding: 8px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: auto;
  margin-right: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  box-shadow: 0 1px 8px rgba(244,162,97,0.08);
}
.main-nav > a.cta:hover, .main-nav > a.cta:focus {
  background: #F4A261;
  color: #264653;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: #F4A26122;
  color: #264653;
}
.main-nav img {
  height: 41px;
  margin-right: 16px;
  display: block;
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
    padding: 14px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #264653;
  padding: 10px 16px;
  margin: 0;
  cursor: pointer;
  z-index: 120;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4A26122;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 14px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 32px rgba(38,70,83,0.13);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(.34,0,.2,1);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #264653;
  cursor: pointer;
  z-index: 201;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4A26122;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 46px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #264653;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 5px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4A26122;
  color: #264653;
}
@media (min-width: 769px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* CARDS AND FEATURES */
.feature-grid > div, .service-cards > div {
  background: #FAFAFA;
  border-radius: 1rem;
  box-shadow: 0 1px 8px rgba(38,70,83,.06);
  padding: 23px 20px 20px 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, transform 0.16s;
  min-width: 222px;
  max-width: 325px;
}
.feature-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 6px 24px rgba(244,162,97,0.21);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img, .service-cards img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}
.service-cards {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.service-cards > div { margin-bottom: 20px; }

/* BUTTONS, CALL TO ACTIONS, LINKS */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: #F4A261;
  padding: 12px 32px;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(233,196,106,0.06);
  transition: background 0.19s, color 0.18s, box-shadow 0.18s, transform 0.11s;
  text-decoration: none;
  margin-top: 4px;
}
.cta:hover, .cta:focus {
  background: #264653;
  color: #fff;
  box-shadow: 0 6px 25px rgba(244,162,97,.12);
  transform: translateY(-1px) scale(1.025);
}

button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: #264653;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 10px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.16s;
  box-shadow: 0 1px 4px rgba(38,70,83,0.07);
}
button:hover, button:focus {
  background: #F4A261;
  color: #264653;
}

/* TEXT SECTION */
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h3 {
  font-size: 1.15rem;
  color: #264653;
  margin-bottom: 5px;
  font-weight: 600;
}

/* FAQ / DL */
dl {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
dt {
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #264653;
}
dd {
  margin-left: 0;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 40px 0 24px 0;
  box-shadow: 0 -2px 16px rgba(38,70,83,0.05);
  border-radius: 1.5rem 1.5rem 0 0;
  margin-top: 45px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #264653;
  font-size: 0.97rem;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F4A26122;
  color: #264653;
}
.footer-contact {
  text-align: center;
  color: #888;
  font-size: 0.97rem;
  margin-top: 8px;
}
.footer-contact a {
  color: #264653;
  text-decoration: underline;
  word-break: break-all;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(38,70,83,0.1);
  z-index: 3000;
  padding: 25px 18px 18px 18px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(.49,0,.23,1);
  transform: translateY(110%);
  opacity: 1;
}
.cookie-banner.open {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  color: #264653;
  font-size: 1rem;
  max-width: 540px;
}
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner-btns button {
  min-width: 120px;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: #264653;
  color: #fff;
  box-shadow: 0 2px 9px rgba(38,70,83,0.10);
  transition: background 0.16s, color 0.14s, box-shadow 0.18s;
  margin: 0;
}
.cookie-banner-btns .cookie-settings-btn {
  background: #F4A261;
  color: #264653;
}
.cookie-banner-btns button:hover, .cookie-banner-btns button:focus {
  background: #E9C46A;
  color: #264653;
}
.cookie-banner-btns .reject-btn {
  background: #e1e6eb;
  color: #264653;
  border: 1px solid #AEB9C2;
}
.cookie-banner-btns .reject-btn:hover, .cookie-banner-btns .reject-btn:focus {
  background: #F4A261;
  color: #264653;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.18);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.40,0,.18,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 14px 61px rgba(38,70,83,0.17);
  padding: 42px 28px 32px 28px;
  max-width: 440px;
  width: 91vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeUp 0.6s cubic-bezier(.49,0,.23,1);
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F9FAFB;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 0;
}
.cookie-category label, .cookie-category strong {
  font-size: 1rem;
  font-weight: 600;
  color: #264653;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #264653;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.16s;
  padding: 4px 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F4A26122;
}

/* TOGGLE SWITCHES FOR COOKIE MODAL */
.cookie-switch {
  width: 40px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E9C46A;
  border-radius: 34px;
  transition: background 0.26s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #264653;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.26s;
  box-shadow: 0 1px 4px rgba(38,70,83,0.10);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-category .always-on {
  color: #888;
  font-size: 0.98rem;
  font-weight: 400;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .main-nav, .container {
    max-width: 100vw;
  }
}
@media (max-width: 950px) {
  .feature-grid > div, .service-cards > div { min-width: 175px; }
}
@media (max-width: 700px) {
  .feature-grid, .service-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-cards > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.10rem; }
  .testimonial-card, .card, .section {
    padding: 16px 5px 16px 8px;
    border-radius: 0.6rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}

/* Typography scale for good hierarchy */
@media (min-width: 601px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  body { font-size: 1rem; }
}
@media (min-width: 960px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}

/* MICRO-INTERACTIONS */
.cta, .main-nav > a, .footer-nav a, .cookie-banner-btns button, .mobile-nav a, button {
  transition: box-shadow 0.20s, background 0.15s, color 0.18s, transform 0.12s;
}
.cta:active, .main-nav > a:active, .footer-nav a:active, .cookie-banner-btns button:active, .mobile-nav a:active, button:active {
  transform: scale(0.98);
  box-shadow: none;
}

/* FOCUS STATES ACCESSIBILITY */
a:focus, .cta:focus, button:focus, input:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .footer-nav a:focus {
  outline: 2px dotted #F4A261;
  outline-offset: 2px;
}

/* GENERIC SPACING CLASSES */
.mb-8{ margin-bottom:8px;}
.mb-16{margin-bottom:16px;}
.mb-24{margin-bottom:24px;}
.mb-32{margin-bottom:32px;}
.mb-40{margin-bottom:40px;}

/* MINIMAL FORM (for contact page if/when present) */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 440px;
  margin: 0 auto 20px auto;
}
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border: 1px solid #DEE6EC;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  background: #F9FAFB;
  color: #264653;
  outline: none;
  transition: border 0.18s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1px solid #F4A261;
  box-shadow: 0 0 0 2px #E9C46A33;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #264653;
  font-size: 1rem;
}

/* Hide unnecessary border for ul in text-section */
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
.text-section ul li, .text-section ol li { margin-bottom: 7px; }

/* Custom scrollbar (subtle, minimal) */
::-webkit-scrollbar {
  width: 10px;
  background: #F9FAFB;
}
::-webkit-scrollbar-thumb {
  background: #DEE6EC;
  border-radius: 24px;
}

/* MINIMAL DETAIL FOR EMPTY SECTIONS OR THANK YOU PAGE */
.text-section p:last-child {
  margin-bottom: 0;
}

/* END OF CSS */
