/* ================= 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F7FA;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
a {
  background: transparent;
  color: #0097A7;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #245D47;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
}
h1 {
  font-size: 2.5rem;
  color: #245D47;
  margin-bottom: 24px;
  line-height: 1.09;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #005662;
  position: relative;
}
h3 {
  font-size: 1.25rem;
  color: #0097A7;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #303030;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 600;
  color: #245D47;
}
blockquote {
  font-style: italic;
  color: #245D47;
  background: #e2f7f5;
  border-left: 4px solid #0097A7;
  padding: 12px 24px 12px 16px;
  border-radius: 10px;
}
cite {
  font-size: 0.98rem;
  color: #245D47;
  font-style: normal;
  margin-top: 8px;
  display: block;
}

/* ================= BRAND COLOR VARIABLES ================= */
:root {
  --primary: #245D47;
  --secondary: #F5F7FA;
  --accent: #0097A7;
  --bg: #F5F7FA;
  --text: #1a2d26;
  --card-bg: #fff;
  --shadow1: 0 3px 16px rgba(36,93,71,0.07);
  --shadow2: 0 1.5px 4px rgba(0,151,167,0.14);
  --radius: 18px;
}

/* ================================
   FLEXBOX LAYOUT UTILITIES
================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow1);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
  min-width: 260px;
  max-width: 390px;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(0,151,167,0.35);
  transform: translateY(-4px) scale(1.018);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(36,93,71,0.09);
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 24px;
  transition: transform .18s, box-shadow .15s;
}
.testimonial-card:hover {
  box-shadow: 0 3px 24px rgba(0,151,167,0.20);
  transform: translateY(-2px) scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================= HEADER & NAVIGATION =================== */
header {
  background: var(--bg);
  box-shadow: 0 3px 9px rgba(36,93,71,0.06);
  z-index: 100;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 32px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  letter-spacing: .2px;
  font-weight: 500;
  position: relative;
  padding: 7px 6px;
  border-radius: 6px;
  transition: background .20s, color .20s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #e2f7f5;
  color: var(--accent);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(87deg, var(--accent) 70%, var(--primary) 100%);
  color: #fff;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 11px 28px;
  border-radius: 32px 14px 32px 14px;
  box-shadow: 0 2px 12px rgba(36,93,71,0.13);
  letter-spacing: .6px;
  outline: none;
  border: 2px solid transparent;
  transition: box-shadow .22s, background .18s, transform .15s, border .18s;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:active {
  background: var(--primary);
  color: #e2f7f5;
  box-shadow: 0 6px 24px rgba(0,151,167,0.23);
  transform: translateY(-1.5px) scale(1.024);
  border: 2px solid #0097A7;
}

/* Hamburger Menu (mobile) */
.mobile-menu-toggle {
  font-size: 2.2rem;
  background: none;
  color: var(--primary);
  border-radius: 10px;
  padding: 5px 10px;
  margin-left: 16px;
  display: none;
  z-index: 500;
  transition: background .15s, color .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e2f7f5;
  color: var(--accent);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0,41,48,0.90);
  z-index: 9999;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .36s cubic-bezier(.7,0,.3,1), opacity .23s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 10001;
  border-radius: 10px;
  padding: 8px 14px;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #0097A7;
  background: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 90px 32px 8px 32px;
  gap: 22px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: color .22s, background .15s;
  padding: 10px 8px 10px 3px;
  border-radius: 10px;
  display: inline-block;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #e2f7f5;
  color: #245D47;
}

/* ===================== HERO ========================== */
.hero-subhead {
  font-size: 1.35rem;
  color: #245D47;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: .3px;
  font-weight: 500;
}

/* =================== CARDS & FEATURES ================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
}
.feature-grid div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(36,93,71,0.11);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 310px;
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow .18s, transform .16s;
}
.feature-grid div:hover {
  box-shadow: 0 6px 24px rgba(0,151,167,0.22);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.service-cards > div, .service-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(36,93,71,0.10);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  padding: 22px 16px 13px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  position: relative;
  transition: box-shadow .17s, transform .15s;
}
.service-cards > div:hover, .service-list > div:hover {
  box-shadow: 0 7px 27px rgba(0,151,167,0.29);
  transform: translateY(-3px) scale(1.029);
}

.articles, .project-teasers, .insights-cards, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.articles .text-section, .project-teasers .text-section, .insights-cards .text-section, .faq-list .text-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(36,93,71,0.075);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  padding: 19px 15px 11px 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  transition: box-shadow .17s, transform .15s;
}
.articles .text-section:hover,.project-teasers .text-section:hover, .insights-cards .text-section:hover {
  box-shadow: 0 7px 21px rgba(0,151,167,0.19);
  transform: translateY(-1px) scale(1.012);
}
.key-metrics {
  margin: 24px 0 0 0;
  padding: 18px 20px 8px 20px;
  background: #e2f7f5;
  border-radius: 11px;
  color: #245D47;
}
.key-metrics ul {
  list-style: disc inside;
  margin-left: 8px;
}

/* ============ TEXT SECTIONS & LISTS =============== */
.text-section {
  margin-bottom: 12px;
}
.text-section ul, .contact-details {
  padding-left: 20px;
  margin-bottom: 16px;
}
.text-section ul li, .contact-details li {
  margin-bottom: 8px;
  list-style: disc inside;
}
.text-section h3 {
  margin-top: 16px;
}
.contact-details {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgba(36,93,71,0.07);
  padding: 14px 14px 7px 14px;
  margin-bottom: 12px;
}

/* ========== MINI CTA BUTTONS ============ */
.mini-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 32px 14px 32px 14px;
  margin-top: 10px;
  margin-bottom: 2px;
  text-align: center;
  transition: background .18s, color .15s, transform .15s;
  letter-spacing: .22px;
}
.mini-cta:hover, .mini-cta:focus {
  background: var(--primary);
  color: #e2f7f5;
  transform: translateY(-1px) scale(1.04);
}

/* ========== FOOTER ================ */
footer {
  background: #245D47;
  color: #e2f7f5;
  padding: 24px 0 20px 0;
  margin-top: 30px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.footer-nav a {
  color: #e2f7f5;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #0097A7;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.16rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-brand img {
  height: 32px;
  width: 32px;
}
.footer-contact {
  font-size: 0.98rem;
  color: #d5ffef;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== COOKIE CONSENT BANNER & MODAL ================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #1a2d26;
  z-index: 13000;
  box-shadow: 0 -2px 18px rgba(36,93,71,0.13);
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  transition: transform .38s, opacity .2s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  display: inline-block;
  min-width: 120px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  margin: 0 7px;
  border-radius: 23px;
  padding: 8px 19px;
  box-shadow: 0 1px 8px rgba(0,151,167,0.10);
  border: none;
  transition: background .21s, color .15s, transform .13s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: #e2f7f5;
  transform: scale(1.05);
}
.cookie-banner .cookie-settings {
  background: #e2f7f5;
  color: #245D47;
  border-radius: 23px;
  font-weight: 700;
  border: 1.3px solid var(--primary);
  margin-left: 13px;
  transition: background .17s, color .14s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #245D47;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,93,71,.78);
  z-index: 14000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #263a35;
  border-radius: 24px;
  box-shadow: 0 4px 52px rgba(0,151,167,.19);
  padding: 28px 34px 22px 34px;
  min-width: 310px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #245D47;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #e2f7f5;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .17s;
  border: 1.5px solid #b8e3da;
}
.cookie-toggle:checked {
  background: #245D47;
  border-color: #0097A7;
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0,151,167,0.12);
  transition: left .2s;
}
.cookie-toggle:checked:before {
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 4px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: #0097A7;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: 0;
  align-self: flex-end;
  margin-bottom: -6px;
  margin-top: -6px;
  transition: color .15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #245D47;
}

/* ========== FORM & CONTACT ================ */
.contact-form {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 0;
  margin-bottom: 22px;
}

/* ==================== RESPONSIVE DESIGN =========================== */
@media (max-width: 1080px) {
  .container {
    padding: 0 10px;
  }
  .feature-grid, .service-cards, .service-list, .articles, .project-teasers, .insights-cards, .faq-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }
  .feature-grid, .service-cards, .service-list {
    gap: 14px;
  }
  .content-wrapper {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header .content-wrapper,
  header .content-wrapper{
    gap: 12px;
  }
  .content-wrapper {
    padding: 0 5px;
    gap: 8px;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 40px;
  }
  .feature-grid, .service-cards, .service-list, .articles, .project-teasers, .insights-cards, .faq-list {
    flex-direction: column;
    gap: 11px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    margin-bottom: 12px;
    min-width: unset;
    max-width: 98vw;
    padding: 13px 8px;
  }
  .footer-contact {
    gap: 7px;
    font-size: 0.92rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form {
    flex-direction: column;
    gap: 10px;
  }
  .hero-subhead { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  h1 {font-size: 1.35rem;}
  h2 {font-size: 1.08rem;}
  .cta-btn, .mini-cta {font-size: .98rem; padding:7px 13px;}
  .cookie-banner {padding:16px 7px; gap:9px; font-size:.95rem;}
}

/* ===================== CREATIVE ARTISTIC EXTRAS =================== */
.section {
  position: relative;
  overflow: visible;
}

/* Abstract shapes as visual language (decor, not absolute layering content) */
.section:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  left: -56px;
  top: 12%;
  width: 90px;
  height: 90px;
  border-radius: 60% 40% 52% 35%/55% 45% 50% 40%;
  background: #e2f7f5;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section:nth-child(odd):after {
  content: "";
  display: block;
  position: absolute;
  right: -62px;
  bottom: 9%;
  width: 108px;
  height: 88px;
  border-radius: 44%;
  background: #0097A7;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}
.section > * {
  position: relative;
  z-index: 2;
}

.card, .feature-grid div, .service-cards > div, .service-list > div, .articles .text-section {
  border-width: 2px 2.7px 1.3px 1.9px;
  border-style: solid;
  border-color: #e2f7f5 #fff #e2f7f5 #e2f7f5;
  /* playful border style for artistic feel */
}

h1,h2,h3,h4 {
  /* Add a unique artistic font shadow */
  text-shadow: 0 1.5px 0 #e2f7f5, 0 2.7px 4px #0097a719;
}

.feature-grid div h3, .service-cards > div h3 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  letter-spacing: .9px;
  color: #0097A7;
  margin-bottom: 4px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 .8px 0 #e2f7f5;
}

.feature-grid div p, .service-cards > div p, .service-list > div p {
  color: #245D47;
}

/* ========== SPACING CARE AND WHITE SPACE ========== */
.section, .card, .feature-grid div, .service-cards > div, .service-list > div, .testimonial-card, .articles .text-section {
  margin-bottom: 24px;
}

@media (max-width: 410px) {
  .card, .feature-grid div, .service-cards > div, .service-list > div, .articles .text-section {
    min-width: unset;
    max-width: 99vw;
    padding: 10px 5px;
  }
}


/* ==================== VISUAL MICRO-INTERACTIONS ============= */
a, .cta-btn, .mini-cta, .cookie-btn, .mobile-menu-close, .main-nav a, .footer-nav a {
  transition: color .18s, background .18s, box-shadow .2s, border .18s, transform .13s;
}

.main-nav a:active,
.cta-btn:active, .mini-cta:active, .cookie-btn:active, .footer-nav a:active {
  transform: scale(.97);
}

/* ============ ACCESSIBILITY HIGHLIGHT ============= */
a:focus-visible, .cta-btn:focus-visible, .mini-cta:focus-visible, .cookie-btn:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2.5px solid #0097A7;
  outline-offset: 2px;
}

/* ============ TESTIMONIALS CONTRAST FOR READABILITY ========== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #245D47;
  box-shadow: 0 2px 15px rgba(36,93,71,0.12);
}
.testimonial-card blockquote { color: #005662; }
.testimonial-card cite { color: #0097A7; }

/* ========== DISABLE ABSOLUTE FOR CONTENT ========== */
.card, .feature-grid div, .service-cards > div {
  position: relative;
  z-index: 1;
}

/* ========== Z-INDEX FOR MENUS AND COOKIE MODULES */
/* already set high above, so overlays are always on top */

/* ========== TYPOGRAPHY SCALE ========== */
html {
  font-size: 16px;
}
@media (max-width: 590px) { html {font-size: 15px;} }

/* Special: Artistic headline font treatment on hero */
.hero-subhead {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .6px;
}

/* ========= PRINT =============== */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal, .cta-btn, .mini-cta, .header, .footer {
    display: none !important;
  }
  body, html, main, .section, .container, .content-wrapper, .card, .feature-grid, .service-cards, .service-list {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    border: none !important;
  }
}
