/* RESET & BASE --------------------------------------------------- */
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #212121;
  background: #fff;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
ul, ol {
  margin: 0 0 1.5em 0;
  padding-left: 22px;
}
li > img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
   filter: grayscale(1) contrast(1.2);
}
a {
  color: #212121;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus { color: #254662; text-decoration: underline; }

.container {
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
  padding: 0 18px;
}

/* TYPOGRAPHY --------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 20px;
}
p, ul, ol {
  font-size: 1.08rem;
  margin-bottom: 18px;
}
strong { font-weight: 700; }
.text-section p, .text-section ul, .text-section ol { font-size: 1.14rem; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,34,34,0.055);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* HEADER ---------------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #E0E2E5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 24px 0;
  position: sticky;
  top: 0;  /* Keep header visible */
  z-index: 20;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-left: 34px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #212121;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: 3px;
  transition: background 0.15s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #f4f4f4;
  color: #254662;
}
.cta-btn {
  display: inline-block;
  background: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 13px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  margin-left: 36px;
  box-shadow: 0 1px 8px rgba(36,43,53, 0.05);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #254662;
  color: #fff;
  box-shadow: 0 3px 16px rgba(36,43,53, 0.09);
}

/* MOBILE MENU ---------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #212121;
  background: none;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  z-index: 1003;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #254662;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.98);
  display: flex; flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 28px 0 14px 22px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 1014;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #7CA9B0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 18px;
  padding: 20px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #fff;
  font-weight: 600;
  padding: 11px 0;
  width: 95%;
  border-radius: 5px;
  margin-bottom: 11px;
  transition: background 0.25s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #212121;
  color: #7CA9B0;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 968px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Restore nav/buttons on desktop */
@media (min-width: 969px) {
  .mobile-menu {
    display: none !important;
  }
}


/* MAIN & SECTIONS ----------------------------------------------------*/
main {
  min-height: 60vh;
  background: #F6F6F6;
  padding-top: 14px;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,34,34,0.04);
}
.text-section {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(34,34,34,0.029);
}

/* FLEXBOX LAYOUT HELPERS ---------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px rgba(17,17,17,0.04);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 7px 24px rgba(17,17,17,0.14);
  transform: translateY(-3px) scale(1.014);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fafbfc;
  border-left: 5px solid #212121;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0px 6px rgba(23,23,23,0.04);
  max-width: 540px;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(17,17,17,0.1);
  border-left-color: #254662;
}
.testimonial-card p {
  color: #1A1A1A;
  font-size: 1.12rem;
  margin-bottom: 6px;
  line-height: 1.65;
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  color: #333;
}
.testimonial-card span {
  margin-left: 3px;
  color: #254662;
  font-size: 1.14rem;
  letter-spacing: 1px;
}
.feature-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.contact-details {
  background: #f6fafd;
  border-radius: 9px;
  padding: 17px 23px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-details p {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #23232F;
}
.contact-details img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) brightness(.7);
  margin-right: 10px;
}

/* FOOTER ------------------------------------------------------------*/
footer {
  background: #23272F;
  color: #fff;
  padding: 50px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
  align-items: center;
}
footer nav a {
  color: #7CA9B0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.19s, border-bottom 0.19s;
  border-bottom: 2px solid transparent;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  border-bottom: 2px solid #7CA9B0;
}
footer p { color: #e6e6e6; font-size: 0.98rem; }

/* BUTTONS ----------------------------------------------------------*/
button, .cta-btn {
  appearance: none;
  border: none;
  outline: none;
}
button:active, button:focus, .cta-btn:active, .cta-btn:focus {
  outline: 2px solid #254662;
  outline-offset: 2px;
}

/* LISTS -----------------------------------------------------------*/
ul {
  list-style: none;
}
ul li, ol li {
  font-size: 1.08rem;
  color: #23232F;
  margin-bottom: 11px;
  line-height: 1.7;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul li img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  filter: grayscale(1) contrast(1.2);
}

/* MISCELLANEOUS STYLES --------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #f8f8f8;
}
::-webkit-scrollbar-thumb {
  background: #dbdbdb;
  border-radius: 7px;
}

/* ANIMATIONS & HOVER EFFECTS ---------------------------------------*/
.section, .card, .testimonial-card {
  transition: box-shadow 0.17s, background 0.19s, border 0.2s, transform 0.16s;
}
a, button, .cta-btn {
  transition: color 0.12s, box-shadow 0.14s, background 0.16s, border 0.16s;
}

/* MICRO-INTERACTIONS -----------------------------------------------*/
.cta-btn:active {
  background: #7CA9B0;
  color: #23232F;
}

/* MEDIA QUERIES ----------------------------------------------------*/
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .section { padding: 30px 8px; }
  header { padding: 16px 0; }
}
@media (max-width: 768px) {
  main { padding-bottom: 26px; }
  h1 { font-size: 1.62rem; margin-bottom: 17px; }
  h2 { font-size: 1.14rem; margin-bottom: 13px; }
  h3 { font-size: 1rem; margin-bottom: 10px; }
  section { margin-bottom: 36px; padding: 20px 6px 20px 8px; }
  .container { padding: 0 6px; }
  .content-wrapper { gap: 13px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .card-container, .content-grid { gap: 13px; }
  .card { padding: 19px 11px; }
  .testimonial-card {
    padding: 14px;
    max-width: 95vw;
  }
  .contact-details { padding: 10px 9px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
  .cta-btn { font-size: 0.99rem; padding: 12px 20px; margin-left: 16px; }
}

/* COOKIE BANNER ----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1100;
  background: #23232F;
  color: #fff;
  box-shadow: 0 -2px 24px rgba(18,18,18,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px 8vw 24px 8vw;
  font-size: 1.05rem;
  transition: transform 0.33s cubic-bezier(.7,0,.27,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
}
.cookie-btn, .cookie-settings-btn {
  background: #fff;
  color: #23232F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 10px 21px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 1px 5px rgba(28,28,28,0.06);
  transition: background 0.19s, color 0.19s;
}
.cookie-btn.accept {
  background: #254662;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #212121;
  border: 1.5px solid #23232F;
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: #111;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #f8f8f8;
  border-color: #254662;
}
.cookie-settings-btn {
  background: #7CA9B0;
  color: #fff;
}
.cookie-settings-btn:hover,.cookie-settings-btn:focus {
  background: #254662;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 19px 6vw;
    font-size: 0.96rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL ---------------------------------------------*/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,32,32,0.76);
  transition: opacity 0.28s;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #111;
  border-radius: 18px;
  min-width: 340px;
  min-height: 160px;
  padding: 38px 24px 24px 24px;
  box-shadow: 0 8px 36px rgba(30,33,60, 0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  color: #254662;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1.02rem;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 13px;
}
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #254662;
  border-radius: 5px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px; right: 16px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #23232F;
  cursor: pointer;
  opacity: .73;
  transition: color 0.16s, opacity 0.13s;
}
.cookie-modal .close-cookie-modal:hover { color: #254662; opacity: 1; }
.cookie-modal .cookie-save-btn {
  background: #254662;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 23px;
  border-radius: 22px;
  font-weight: 700;
  border: none;
  align-self: flex-end;
  margin-top: 11px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-save-btn:hover,
.cookie-modal .cookie-save-btn:focus {
  background: #111;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 19px 7px 16px 11px;
    min-width: 210px;
    min-height: unset;
  }
}

/* TYPOGRAPHY SCALE & SPACING -----------------------------------------*/
:root {
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 40px;
  --spacing-xl: 60px;
  --radius-s: 6px;
  --radius-m: 12px;
  --color-black: #111;
  --color-dark: #212121;
  --color-mid: #23232F;
  --color-gray: #e6e6e6;
  --color-white: #fff;
  --brand-primary: #254662;
  --brand-secondary: #7CA9B0;
  --brand-accent: #F3E9DD;
}

/* ACCESSIBILITY -----------------------------------------------------*/
:focus {
  outline: 2px solid #254662;
  outline-offset: 2px;
}

/* BRAND COLORS FOR LINKS/BUTTONS ------------------------------------*/
a.brand-link,
a.cta-btn {
  background: #254662;
  color: #fff;
}
a.brand-link:hover {
  background: #111;
}

/* MONOCHROME SOPHISTICATED STYLING ----------------------------------*/
.section, .card, .testimonial-card, .content-wrapper {
  background: #fff;
  color: #111;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(24,24,24,0.075);
}
.text-section, .contact-details {
  background: #F6F6F6;
}

.header, .footer { background: #fff; }

html, body { background: #fff; }

/* Subtle contrast lines */
.content-wrapper:not(:last-child) {
  border-bottom: 1px solid #eee;
}

/* Monochrome accents for icons and borders */
li img, .contact-details img, header img {
  filter: grayscale(1) brightness(90%) contrast(1.13);
}

/* END CSS */
