/* =====================
   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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F9FAFC;
  color: #153B6D;
  font-family: 'Open Sans', Arial, system-ui, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #153B6D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #69C089;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ====================
   TYPOGRAPHY
   ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #153B6D;
  font-weight: 700;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: bold;
  color: #153B6D;
}
.text-section ul, .text-section ol {
  margin-bottom: 18px;
}
.text-section li {
  margin-bottom: 8px;
}

/* ====================
   LAYOUT CONTAINERS
   ==================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Force spacing between content cards/sections */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(21,59,109,0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(21,59,109,0.15);
}

.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 {
  background: #E6E9ED;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0 rgba(21,59,109,0.11);
  color: #153B6D;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
}
.testimonial-footer {
  font-size: 0.96rem;
  color: #153B6D;
  opacity: 0.82;
  font-style: italic;
  margin-left: 24px;
}
.feature-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 8px 0 rgba(21,59,109,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 18px;
  transition: box-shadow 0.19s, transform 0.19s;
  min-width: 220px;
}
.feature-item:hover {
  box-shadow: 0 3px 22px 0 rgba(21,59,109,0.18);
  transform: translateY(-3px) scale(1.015);
}

/* =========== HEADER =============== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(21,59,109,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
  padding-top: 0;
  padding-bottom: 0;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 28px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #153B6D;
  letter-spacing: 0.01em;
  padding: 6px 0;
  transition: color 0.23s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #69C089;
}
.cta {
  background: #153B6D;
  color: #fff;
  border-radius: 5px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  margin-left: 16px;
  display: inline-block;
  box-shadow: 0 1px 4px 0 rgba(21,59,109,0.10);
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.20s, transform 0.20s, box-shadow 0.20s;
}
.cta.primary {
  background: #69C089;
  color: #153B6D;
  box-shadow: 0 2px 12px 0 rgba(21,59,109,0.07);
}
.cta:hover,
.cta:focus {
  background: #235291;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(21,59,109,0.15);
  text-decoration: none;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #49A671;
  color: #fff;
}

/* =========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #153B6D;
  padding: 8px 12px;
  border-radius: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  transition: background 0.18s;
  margin-left: 8px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E6E9ED;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,59,109, 0.97);
  z-index: 200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8), opacity 0.22s;
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 22px 22px 0 0;
  cursor: pointer;
  z-index: 202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 7px 0;
  border-radius: 2px;
  transition: background 0.14s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #69C089;
  color: #153B6D;
}

@media (max-width: 1040px) {
  .main-nav, .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================
   HERO SECTION
   =================== */
.hero {
  background: linear-gradient(90deg, #E6E9ED 60%, #fff 100%);
  padding: 44px 0 44px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 580px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #153B6D;
  margin-bottom: 12px;
  line-height: 1.18;
}
.hero .subheadline {
  font-size: 1.12rem;
  color: #235291;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 17px;
}

/* ===================
   FEATURES SECTION
   =================== */
.features .container {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: grayscale(30%);
  margin-bottom: 6px;
}
/* ===================
   TRUST BADGES
   =================== */
.trust .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 18px 0;
}
.badge {
  background: #153B6D;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 6px 20px 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 1px 6px 0 rgba(21,59,109,0.08);
}
.badge img {
  width: 22px;
  height: 22px;
  filter: brightness(1.4);
}

/* ===================
   CTA BANNER
   =================== */
.cta-banner.accent {
  background: #153B6D;
  color: #fff;
  border-radius: 10px;
  margin: 54px 0 0 0;
  box-shadow: 0 3px 19px 0 rgba(21,59,109,0.13);
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner .cta {
  background: #69C089;
  color: #153B6D;
  font-size: 1.13rem;
  margin-left: 0;
  box-shadow: 0 2px 6px 0 rgba(21,59,109,0.07);
}
.cta-banner .cta.primary:hover {
  background: #49A671;
  color: #fff;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #153B6D;
  color: #fff;
  padding: 36px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(1.4);
}
.footer-nav {
  display: flex;
  gap: 18px;
}
.footer-nav a {
  color: #E6E9ED;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #69C089;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  background: #235291;
  border-radius: 50%;
  padding: 4px;
  transition: background 0.18s;
}
.social-links a:hover,
.social-links a:focus {
  background: #69C089;
}
.social-links img {
  width: 18px;
  height: 18px;
  filter: brightness(1.25);
}

/* =====================
   CARDS/LISTS/GRIDS
   ===================== */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.team-member {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 10px 0 rgba(21,59,109,0.07);
  padding: 22px 18px 16px 18px;
  min-width: 215px;
  flex: 1 1 180px;
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(21,59,109,0.08);
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  gap: 14px;
  transition: box-shadow 0.24s, transform 0.19s;
}
.service-item:hover {
  box-shadow: 0 4px 22px 0 rgba(21,59,109,0.16);
  transform: translateY(-3px) scale(1.015);
}
.service-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: grayscale(17%);
}
.reports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.report-preview {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(21,59,109,0.09);
  padding: 20px 16px;
  flex: 1 1 250px;
  min-width: 235px;
  margin-bottom: 20px;
}
.fact-snippet {
  background: #fff;
  border-radius: 8px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(21,59,109,0.10);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 6px 0;
}
.filters span {
  background: #E6E9ED;
  color: #235291;
  border-radius: 6px;
  padding: 6px 15px 6px 10px;
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.snippet {
  background: #E6E9ED;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.workshop-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(21,59,109,0.07);
  padding: 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}
.process-steps h3 {
  margin-bottom: 2px;
}

/* ===================
   CONTACT PAGE
   =================== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.address-block, .email-block, .hours-block, .phone-block {
  background: #E6E9ED;
  border-radius: 7px;
  padding: 16px 12px;
  flex: 1 1 180px;
}
.contact-info h2 {
  font-size: 1.15rem;
  color: #153B6D;
  margin-bottom: 7px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 42px;
  margin: 18px 0;
  border-radius: 10px;
  color: #A2A6AC;
  font-size: 1.01rem;
  box-shadow: 0 2px 8px 0 rgba(21,59,109,0.08);
}

/* ===================
   LEGAL SECTIONS
   =================== */
.legal .text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px 0 rgba(21,59,109,0.09);
  padding: 32px 24px;
  margin: 32px 0 16px 0;
}

/* ===================
   CONFIRMATION PAGE
   =================== */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}
.confirmation h1 {
  color: #153B6D;
}
.confirmation .cta {
  margin-top: 18px;
}

/* ===================
   COOKIE BANNER + MODAL
   =================== */
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #153B6D;
  color: #fff;
  z-index: 3000;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -2px 12px 0 rgba(21,59,109,0.14);
  animation: cookieBannerIn 0.47s cubic-bezier(.83,-0.01,.52,1.04);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0.4; }
  to {   transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 240px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner__button {
  background: #fff;
  color: #153B6D;
  border-radius: 6px;
  border: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 23px;
  transition: background 0.17s, color 0.19s, transform 0.15s;
  margin: 1px 0;
}
.cookie-banner__button.accept {
  background: #69C089;
  color: #153B6D;
}
.cookie-banner__button.reject {
  background: #E6E9ED;
  color: #153B6D;
}
.cookie-banner__button.settings {
  background: #fff;
  color: #235291;
}
.cookie-banner__button:focus, .cookie-banner__button:hover {
  filter: brightness(0.96);
  background: #235291;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
/* -------- Cookie Modal -------- */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,59,109, 0.79);
  z-index: 4000;
  justify-content: center;
  align-items: center;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal__dialog {
  background: #fff;
  color: #153B6D;
  border-radius: 11px;
  padding: 38px 28px 22px 28px;
  min-width: 305px;
  max-width: 96vw;
  box-shadow: 0 4px 28px 2px rgba(21,59,109,0.21);
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalIn 0.37s cubic-bezier(.51,1.42,.38,1.01);
}
@keyframes cookieModalIn {
  from { transform: translateY(90px) scale(0.91); opacity: 0.1; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__header {
  font-family: 'Roboto Slab', serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-category label {
  font-weight: bold;
  color: #153B6D;
  margin-left: 8px;
}
.cookie-category input[type='checkbox'] {
  width: 19px;
  height: 19px;
  accent-color: #153B6D;
}
.cookie-category.required label {
  color: #69C089;
  font-weight: 700;
}
.cookie-modal__footer {
  display: flex;
  gap: 13px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal__button {
  background: #235291;
  color: #fff;
  border-radius: 6px;
  border: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 19px;
  transition: background 0.17s, color 0.15s, transform 0.15s;
}
.cookie-modal__button.cancel {
  background: #E6E9ED;
  color: #153B6D;
}
.cookie-modal__button:focus, .cookie-modal__button:hover {
  background: #69C089;
  color: #153B6D;
  transform: scale(1.05);
}

/* =====================
   RESPONSIVE ADJUSTMENTS
   ===================== */
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    gap: 10px;
    height: auto;
    flex-direction: row;
  }
  .content-wrapper, .section {
    padding: 20px 6px;
    margin-bottom: 38px;
  }
  .main-nav {
    display: none !important;
  }
  .content-grid, .feature-grid, .card-container, .team-bios, .service-list, .reports-grid, .contact-info {
    flex-direction: column !important;
    gap: 17px !important;
    align-items: stretch !important;
  }
  .feature-item, .card, .service-item, .report-preview, .team-member {
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav, .social-links {
    flex-direction: column;
    gap: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .map-placeholder {
    padding: 20px;
    font-size: 1rem;
  }
  .badges {
    flex-direction: column;
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    padding: 18px 10px 15px 10px;
    font-size: 0.97rem;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.16rem; }
  h3 { font-size: 1.02rem; }
  .section {
    padding: 12px 3px !important;
  }
}

/* ==========================
   SCROLLBAR (optional for corporate polish)
   ========================== */
::-webkit-scrollbar {
  width: 12px;
  background: #E6E9ED;
}
::-webkit-scrollbar-thumb {
  background: #153B6D;
  border-radius: 6px;
}

/* ==========================
   SMALL ANIMATIONS & HOVER FX
   ========================== */
.card, .feature-item, .service-item, .report-preview, .team-member, .workshop-item {
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .feature-item:hover, .service-item:hover, .report-preview:hover, .team-member:hover, .workshop-item:hover {
  box-shadow: 0 3px 22px 0 rgba(21,59,109,0.13);
  transform: translateY(-2px) scale(1.015);
}

/* ==========================
   MISC
   ========================== */
hr {
  border: 0;
  height: 1px;
  background: #E6E9ED;
  margin: 30px 0;
}

/* ==============================
   OVERRIDE: Only flexbox allowed
   (NO grid, columns, column-count, column-gap, no abs pos on content)
   ============================== */
/* No forbidden properties used */
