/* ---- 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;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7F7F7;
  color: #191919;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #181818;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.8rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 24px; line-height: 1.18; }
h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.24; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p { margin-bottom: 18px; color: #262626; }
strong { font-weight: 700; }

/* ---- GENERAL LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(36,50,71,0.09);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* ---- HEADER ---- */
header {
  background: #fff;
  border-bottom: 1.5px solid #E3E6EB;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.brand-logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #243247;
  transition: width 0.18s;
  margin-top: 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #243247;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 60%;
}
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #243247;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  box-shadow: 0 2px 14px 0 rgba(36,50,71,0.06);
  transition: background 0.22s, box-shadow 0.22s;
  cursor: pointer;
  display: inline-block;
  margin-left: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #181d2d;
  box-shadow: 0 4px 18px 0 rgba(36,50,71,0.12);
  color: #E6942A;
}
/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #243247;
  display: none;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #243247;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(36,50,71,0.98);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.6,.04,.98,.335);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 28px 24px 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 30px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1205;
}
.mobile-menu-close:focus {
  outline: 2px solid #E6942A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  padding: 10px 0;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  transition: color 0.20s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E6942A;
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(138deg, #fff 72%, #E3E6EB 100%);
  padding: 54px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 660px;
  align-items: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.2rem;
  text-align: center;
  color: #243247;
  margin-bottom: 12px;
}
.hero p {
  text-align: center;
  font-size: 1.16rem;
  color: #181818;
  margin-bottom: 22px;
}
.hero .cta-btn {
  margin: 0 auto;
  font-size: 1.07rem;
}
@media (min-width: 690px) {
  .hero {
    padding: 70px 0 66px 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}

/* ---- FEATURES SECTION ---- */
.features {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(36,50,71,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 14px;
}
@media (min-width: 800px) {
  .features .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 42px;
    justify-content: space-between;
  }
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F8FA;
  border-radius: 10px;
  padding: 30px 22px;
  box-shadow: 0 2px 10px rgba(36,50,71,0.03);
  max-width: 340px;
  min-width: 0;
  margin-bottom: 0;
  transition: box-shadow 0.20s;
}
.feature img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.feature h3 {
  color: #243247;
  font-size: 1.28rem;
  margin-bottom: 6px;
}
.feature p {
  color: #212223;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature:hover {
  box-shadow: 0 6px 28px 0 rgba(36,50,71,0.14);
}
@media (max-width: 799px) {
  .feature {
    width: 100%;
    max-width: 100%;
  }
}

/* ---- SERVICES CARDS (ON / & services.html) ---- */
.services {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(36,50,71,0.07);
  margin-bottom: 60px;
}
.services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 10px;
  background: #F7F8FA;
  box-shadow: 0 2px 5px rgba(36,50,71,0.04);
  padding: 28px 22px;
  margin-bottom: 0;
  min-width: 0;
  max-width: 340px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.service-item img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.service-item h3 {
  color: #243247;
  font-size: 1.19rem;
}
.service-item p {
  color: #212223;
  font-size: 1rem;
}
.service-item .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #191919;
  background: #E3E6EB;
  border-radius: 18px;
  padding: 6px 16px;
  margin-top: 10px;
  font-weight: 600;
  align-self: flex-end;
}
.service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(36,50,71,0.18);
  transform: translateY(-2px) scale(1.03);
  z-index: 2;
}
@media (max-width: 900px) {
  .services .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .service-item {
    width: 100%;
    max-width: 100%;
  }
}

/* ---- ABOUT, SECTION CONTENT ---- */
.about {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(36,50,71,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about ul, .services ul, .contact-list {
  margin-top: 8px;
  margin-bottom: 18px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about ul li, .services ul li {
  position: relative;
  padding-left: 24px;
  color: #243247;
  font-size: 1.05rem;
}
.about ul li:before, .services ul li:before {
  content: '\2022';
  position: absolute;
  left: 0px;
  color: #181818;
  font-size: 1.36em;
  line-height: 1.1;
  top: 0;
}

/* ---- CTA SECTIONS ---- */
.cta {
  background: #243247;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 18px 0 rgba(36,50,71,0.09);
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta h2 {
  color: #fff;
}
.cta .cta-btn {
  background: #fff;
  color: #243247;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 2px 12px 0 rgba(36,50,71,0.12);
  margin-left: 0;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #E6942A;
  color: #fff;
  border: 2px solid #E6942A;
}

/* ---- TESTIMONIALS SECTION ---- */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(36,50,71,0.08);
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  background: #F8F8F8;
  border-radius: 10px;
  padding: 22px 18px 19px 18px;
  box-shadow: 0 2px 10px rgba(36,50,71,0.07);
  margin-bottom: 0;
  flex: 1 1 260px;
  max-width: 360px;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #191919;
  font-style: italic;
  font-size: 1.07rem;
  margin-bottom: 7px;
  line-height: 1.55;
}
.testimonial-author {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #243247;
  font-weight: 600;
}
.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 5px;
}
.stars img {
  width: 20px;
  height: 20px;
  filter: grayscale(0%) saturate(0%) brightness(0.9) contrast(155%);
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(36,50,71,0.20);
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* ---- CONTACT SECTION ---- */
.contact {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(36,50,71,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  color: #243247;
}
.contact-list img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.86;
}
.contact-list a {
  color: #181818;
  text-decoration: underline;
}
.contact-list a:hover, .contact-list a:focus {
  color: #E6942A;
  text-decoration: underline;
}

/* ---- FOOTER ---- */
footer {
  background: #181d2d;
  color: #fff;
  width: 100%;
  padding: 0;
  border-top: 1.5px solid #22283b;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 20px 22px 20px;
}
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  transition: color 0.17s, opacity 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #E6942A;
  opacity: 1;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 6px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.15s, transform 0.18s;
  cursor: pointer;
}
.social-icons img:hover {
  opacity: 1;
  transform: scale(1.09) rotate(-7deg);
}
.footer-copy {
  font-size: 0.97rem;
  color: #B0B7C6;
  margin-top: 8px;
}

/* ----- CARDS & FLEX SPACING HELPERS ----- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(36,50,71,0.06);
  padding: 32px 22px;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 7px 22px rgba(36,50,71,0.2);
  z-index: 3;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- BUTTONS GENERIC ---- */
button, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
button {
  background: #243247;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 26px;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  font-size: 1rem;
}
button:hover, button:focus {
  background: #E6942A;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(230,148,42,0.14);
}

/* ---- HEADINGS & TYPOGRAPHY SCALE ---- */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.08rem; }
  .cta-btn, button { font-size: 0.93rem; padding: 10px 20px; }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #191c27ee;
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(36,50,71,0.17);
  z-index: 1400;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 20px 16px 18px 16px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.38s, transform 0.38s;
  font-size: 1.02rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner-message {
  flex: 1 1 300px;
  max-width: 540px;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 24px;
  border: none;
  border-radius: 30px;
  background: #243247;
  color: #fff;
  margin-left: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.accept {
  background: #E6942A;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #243247;
  border: 1.5px solid #E3E6EB;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #d98219;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #243247;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #243247;
  border: 1.5px solid #E3E6EB;
  padding: 8px 14px;
  font-size: 0.98rem;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #E6942A;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 10px 14px 10px;
    font-size: 0.94rem;
  }
  .cookie-banner-message { font-size: 0.97rem; }
  .cookie-banner-actions { gap: 7px; }
}

/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36,50,71,0.87);
  z-index: 1420;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.38s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #222;
  padding: 38px 28px 30px 28px;
  border-radius: 16px;
  min-width: 310px;
  max-width: 420px;
  box-shadow: 0 7px 28px 0 rgba(36,50,71,0.21);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #243247;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 5px;
}
.cookie-category label {
  font-size: 1rem;
  color: #181818;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #E6942A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 23px;
  border-radius: 24px;
  background: #243247;
  color: #fff;
  border: none;
}
.cookie-modal button.save {
  background: #E6942A;
  color: #fff;
}
.cookie-modal button.close-modal {
  background: #fff;
  color: #243247;
  border: 1.5px solid #E3E6EB;
}
.cookie-modal button.save:hover, .cookie-modal button.save:focus {
  background: #d98219;
}
.cookie-modal button.close-modal:hover, .cookie-modal button.close-modal:focus {
  background: #243247;
  color: #fff;
}
.cookie-modal .close-x {
  position: absolute;
  top: 19px;
  right: 18px;
  font-size: 1.45rem;
  background: none;
  border: none;
  color: #243247;
  opacity: 0.7;
  cursor: pointer;
}
.cookie-modal .close-x:hover { color: #E6942A; opacity: 1; }
.cookie-modal .essential-label {
  opacity: 0.6;
  font-style: italic;
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    max-width: 95vw;
    padding: 20px 12px;
  }
}

/* ---- MONOCHROME SOPHISTICATED DETAILS ---- */
.section, .features, .about, .services, .testimonials, .contact {
  border: 1.2px solid #E3E6EB;
}
.card, .feature, .service-item, .testimonial-card, .about, .services, .testimonials, .contact {
  box-shadow: 0 2px 16px 0 rgba(24,24,24,0.06);
}
.card, .feature, .service-item, .testimonial-card {
  background: linear-gradient(120deg,#fff 90%, #f7f7f7 100%);
}

/* ---- VISUAL HIERARCHY & SPACING ---- */
.section h2, .features h2, .services h2, .about h2, .testimonials h2, .contact h2 {
  color: #243247;
  letter-spacing: -0.01em;
}
.section:not(.hero) h2, .features h2, .services h2, .about h2, .testimonials h2, .contact h2 {
  margin-bottom: 18px;
  font-size: 1.34rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (min-width: 800px) {
  .section:not(.hero) h2, .features h2, .services h2, .about h2, .testimonials h2, .contact h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}

/* ---- MICRO-INTERACTIONS ---- */
a, .cta-btn, button, .footer-menu a, .main-nav a, .mobile-nav a, .cookie-settings-btn {
  transition: color 0.19s, background 0.19s, box-shadow 0.17s, border 0.18s;
}
.feature:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 15px 32px 0 rgba(36,50,71,0.16);
}
.cta-btn:active, button:active, .cookie-banner button:active {
  transform: scale(0.97);
}

/* ---- FOCUS STATES ---- */
a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
  outline: 2px solid #E6942A;
  outline-offset: 1px;
}

/* ---- MONOCHROME CONTRAST ENFORCEMENT ---- */
.section, .features, .about, .services, .testimonials, .contact {
  background: #fff;
  color: #1a1a1a;
}

/* ---- ACCESSIBLE CONTRAST IN TESTIMONIALS & REVIEWS ---- */
.testimonial-card, .testimonial-card p, .testimonial-author {
  background: #F8F8F8;
  color: #222;
}
/* Overwrite in dark areas */
.cta, .footer-container, .cookie-banner, .cookie-modal {
  color: #fff;
}

/* ---- REMOVE SPACING COLLISIONS ---- */
.section, .features, .services, .about, .testimonials, .contact, .cta {
  margin-bottom: 60px !important;
}
.section:not(:first-child), .features + .about, .services + .testimonials {
  margin-top: 20px;
}

/* ---- RESPONSIVE LAYOUTS (FLEXBOX ONLY) ---- */
@media (max-width: 650px) {
  .footer-menu, .social-icons, .content-grid, .card-container, .features .content-wrapper, .testimonials .content-wrapper, .services .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-container {
    padding: 30px 10px 16px 10px;
  }
}

/* ---- UTILITY ---- */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- PRINT & ACCESSIBILITY ---- */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal-overlay, .footer-container .social-icons {
    display: none !important;
  }
}
