/* --- 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%;
}
body {
  background: #F4F6F7;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #24506a;
  font-size: 16px;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; }

/* --- Base Typography & Brand Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap');

body, .body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #24506a;
  font-size: 16px;
  background: #F4F6F7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #21618C;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.4rem; line-height: 1.3; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
p, li, dt, dd { font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
strong { font-weight: 600; }

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- General Section Styles --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 768px) {
  .section, section {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
}

/* --- Header & Navigation --- */
header {
  width: 100%;
  background: #21618C;
  box-shadow: 0 3px 18px 0 rgba(33,97,140,0.08);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.20s;
  position: relative;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a:focus {
  color: #27AE60;
}
.cta-btn {
  background: linear-gradient(90deg,#27AE60 0%, #137143 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px -6px #13714340;
  transition: background 0.17s, box-shadow 0.25s, transform 0.18s;
  border: none;
  outline: none;
  margin-left: 18px;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#137143 0%, #27AE60 100%);
  box-shadow: 0 4px 32px -6px #13714366; 
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  margin-left: 18px;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #27AE60;
  color: #fff;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #21618C;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); /* smooth slide */
  box-shadow: 3px 0 24px 0 rgba(33, 97, 140, 0.10);
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  padding: 6px 16px;
  margin: 0 0 20px 18px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #27AE60;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 18px 0 0 0;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #27AE60;
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- Hero Section --- */
.hero-section {
  background: linear-gradient(120deg, #21618C 0%, #27AE60 100%);
  color: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
}
.hero-section h1,
.hero-section h2, .hero-section h3 {
  color: #fff;
}
.hero-section p {
  color: #F4F6F7;
  font-size: 1.18rem;
  margin-bottom: 24px;
}
.hero-section .cta-btn {
  background: #fff;
  color: #137143;
  box-shadow: 0 2px 16px 0 #27ae6020;
}
.hero-section .cta-btn:hover {
  background: #27AE60;
  color: #fff;
}

/* --- Features & Services Grids --- */
.feature-grid, .service-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li, .service-grid li, .services-list li {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 22px -8px #21618C15;
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 310px;
  text-align: left;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #F4F6F7;
  transition: transform 0.17s, box-shadow 0.18s, border 0.18s;
}
.feature-grid li:hover, .service-grid li:hover, .services-list li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 28px -4px #21618C22;
  border: 1.5px solid #21618C22;
}
.feature-grid li img, .service-grid li img, .services-list li img {
  height: 42px;
  width: 42px;
  margin-bottom: 10px;
  filter: none;
}
.feature-grid h3, .service-grid h3 {
  color: #21618C; font-size: 1.18rem; margin-bottom: 6px;
}

.services-list li {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 #13714316;
  padding: 14px 18px;
  max-width: 325px;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid #F4F6F7;
  transition: box-shadow 0.16s;
}
.services-list li span {
  color: #137143;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- About & Values --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.quality-guarantee {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  background: #F4F6F7;
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 2px 12px -4px #27AE6010;
  font-size: 1.02rem;
  margin-top: 12px;
}
.quality-guarantee img {
  width: 34px; height: 34px;
}

/* --- Pricing Tables --- */
.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 14px;
  margin-bottom: 30px;
}
.price-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px -4px #13714317;
  padding: 32px 24px 24px 24px;
  min-width: 220px;
  max-width: 305px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border: 1.5px solid #F4F6F7;
  transition: box-shadow 0.13s, transform 0.14s;
}
.price-item h3 {
  color: #27AE60;
  font-size: 1.20rem;
  margin-bottom: 5px;
}
.price-item p { font-weight: bold; font-size: 1.07rem; }
.price-item ul { margin: 10px 0 0 0; padding: 0 0 0 12px; }

@media (max-width: 991px) {
  .price-grid { flex-direction: column; align-items: stretch; gap: 20px; }
  .feature-grid, .service-grid, .services-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- Testimonial Card --- */
.testimonials-section {
  background: linear-gradient(95deg, #27AE60 0%, #21618C 100%);
  border-radius: 26px;
  color: #fff;
  padding: 40px 0 56px 0;
  margin-bottom: 60px;
}
.testimonials-section h2 { color: #fff; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 2px 24px -4px #21618C22;
  padding: 20px 28px;
  gap: 12px;
  margin-bottom: 20px;
  max-width: 620px;
  border: 1px solid #21618C13;
  font-size: 1.11rem;
}
.testimonial-card p {
  margin-bottom: 6px;
  font-style: italic;
  color: #2e4458;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #137143;
  font-size: 1rem;
  font-weight: 600;
}
.star-rating-summary {
  margin-top: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  background: #137143;
  border-radius: 14px;
  display: inline-block;
  padding: 10px 24px;
  box-shadow: 0 1px 6px #27AE6015;
}

/* --- Content Grid, Card Containers --- */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px -6px #1371430d;
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 370px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(90deg, #27AE60 0%, #21618C 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px 0 56px 0;
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-section .cta-btn {
  margin-top: 18px;
}

/* --- Footer --- */
footer {
  background: #21618C;
  color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-top: 40px;
  border-radius: 24px 24px 0 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 15px;
}
.footer-top img {
  height: 32px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #27AE60;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F4F6F733;
  font-size: 0.95rem;
}
.company-info, .footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.company-info a {
  color: #F4F6F7;
  transition: color 0.16s;
  font-weight: 600;
  font-size: 0.98em;
}
.company-info a:hover, .company-info a:focus {
  color: #27AE60;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background 0.15s, box-shadow 0.14s;
  margin-left: 3px;
}
.footer-social a:hover {
  background: #27AE60;
  box-shadow: 0 2px 10px #27AE6022;
}
.footer-social img {
  width: 20px; height: 20px;
}

@media (max-width: 700px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-nav {
    gap: 13px;
    flex-direction: column;
    padding-top: 8px;
  }
}

/* --- Case Study Project Briefs --- */
.project-briefs {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* --- Client Logos --- */
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  margin-top: 24px;
}
.client-logos img {
  height: 46px;
  width: auto;
  filter: grayscale(40%) contrast(1.1);
}

/* --- Legal Sections --- */
.legal-section {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px -6px #21618C14;
}
.legal-section h1, .legal-section h2 {
  color: #137143;
}
.legal-section ul {
  padding-left: 22px;
  margin-top: 8px;
}
.legal-section li {
  margin-bottom: 8px;
}

/* --- FAQ --- */
.faq-section dl {
  margin-bottom: 28px;
}
.faq-section dt {
  font-weight: 600;
  color: #21618C;
  margin-bottom: 4px;
  margin-top: 12px;
  font-size: 1.06rem;
}
.faq-section dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: #24506A;
  font-size: 1rem;
}

/* --- Contact Details --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.contact-details img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.notice {
  color: #21618C;
  background: #F4F6F7;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 18px;
  font-size: 0.99rem;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #21618C;
  color: #fff;
  padding: 18px 12px 18px 18px;
  box-shadow: 0 -4px 16px -6px #21618C40;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.23s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-desc {
  flex: 2 1 200px;
  font-size: 0.97rem;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex: 1 1 auto;
}
.cookie-btn {
  background: #27AE60;
  border: none;
  color: #fff;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.15s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #fff;
  color: #137143;
  border: 1.5px solid #27AE60;
}
.cookie-btn.settings {
  background: #137143; color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #21618C;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #27AE60;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffffff;
  color: #137143;
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,97,140,0.70);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.cookie-modal {
  background: #fff;
  padding: 32px 30px 26px 30px;
  border-radius: 18px;
  min-width: 92vw;
  max-width: 400px;
  box-shadow: 0 4px 28px -8px #21618C55;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  animation: cookiein 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes cookiein {
  from { transform: translateY(48px) scale(0.95); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.8rem;
  color: #21618C;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 8px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F4F6F7;
}
.cookie-category {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.cookie-category-toggle {
  appearance: none;
  width: 36px; height: 18px;
  background: #F4F6F7;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
  vertical-align: middle;
}
.cookie-category-toggle:checked {
  background: #27AE60;
}
.cookie-category-toggle::before {
  content: "";
  display: block;
  position: absolute;
  left: 4px; top: 3px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.cookie-category-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-category-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem; color: #21618c;
  font-weight: 600;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
}

/* --- Responsive & General --- */
@media (max-width: 1180px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.24rem; }
  .cta-section, .testimonials-section, .hero-section {
    padding: 26px 0 32px 0;
    border-radius: 14px;
  }
  .card, .card-content, .feature-grid li, .service-grid li, .service-types-list {
    padding: 18px 10px;
  }
  .content-wrapper {
    padding: 0;
  }
  .card-container, .content-grid, .feature-grid, .service-grid, .services-list, .price-grid {
    gap: 15px;
  }
  .testimonials-section {
    border-radius: 10px;
  }
  .client-logos {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .card, .feature-grid li, .service-grid li {
    min-width: 95vw;
    max-width: 97vw;
    padding: 13px 6px;
  }
  .testimonials-section {
    padding: 18px 0 24px 0;
  }
  .container {
    padding: 0 6px;
  }
}
@media (max-width: 540px) {
  .cookie-modal { min-width: 86vw; padding: 18px 6px 18px 11px; }
}

/* --- Utility Flex Classes & Spacing --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

/* --- Buttons, Inputs, Links --- */
a, .cta-btn, .cookie-btn {
  outline: none;
  transition: box-shadow 0.15s, background 0.14s, color 0.17s;
}
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid #27AE60;
  outline-offset: 2px;
}

/* --- Micro-Interactions & Animations --- */
.card, .feature-grid li, .service-grid li, .services-list li, .testimonial-card, .price-item {
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
}

.card:hover, .feature-grid li:hover, .service-grid li:hover, .price-item:hover {
  box-shadow: 0 6px 28px -5px #21618C22;
  transform: translateY(-6px) scale(1.012);
}

.cta-btn {
  transition: background 0.18s, box-shadow 0.18s, color 0.14s, transform 0.13s;
}

input, textarea, select {
  border-radius: 8px;
  border: 1.3px solid #21618C22;
  padding: 11px 15px;
  font-size: 1rem;
  margin-bottom: 14px;
  box-shadow: 0 1px 8px #aaa2;
}
input:focus, textarea:focus, select:focus {
  border-color: #27AE60;
  outline: none;
}

/* --- Thank You Page --- */
.thank-you-section {
  background: linear-gradient(90deg, #27AE60 0%, #21618C 100%);
  padding: 48px 0 54px 0;
  color: #fff;
  border-radius: 24px;
}
.thank-you-section h1, .thank-you-section p {
  color: #fff;
}

/* --- Misc --- */
::-webkit-input-placeholder { color: #657382; opacity: 1; }
::-moz-placeholder { color: #657382; opacity: 1; }
:-ms-input-placeholder { color: #657382; opacity: 1; }
::placeholder { color: #657382; opacity: 1; }
[tabindex]:focus { outline: 2px solid #27AE60; }

/* --- Hide elements until mobile menu or cookie modal is open --- */
.mobile-menu,
.cookie-modal-overlay, .cookie-modal {
  display: none;
}
.mobile-menu.open,
.cookie-modal-overlay.open, .cookie-modal.open {
  display: flex;
}

/* --- Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Dark Text for Testimonials & Reviews on Cards --- */
.testimonial-card, .review-card {
  color: #222;
  background: #fff;
}

/* --- END OF CSS --- */
