/* RESET & BASE STYLES */
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,
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #143656;
  background: #F2F5F7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; outline: none; }
a:focus { outline: 2px solid #699C7C; outline-offset: 2px; }
strong { font-weight: 700; }
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
  color: #143656;
}
h1 {
  font-size: 2.5rem;
  margin-top: 0;
}
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p, li, blockquote {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #143656;
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #143656 0%, #699C7C 100%);
  color: #fff;
  position: relative;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 48px;
  transition: opacity 0.2s;
}
.logo-link:hover { opacity: 0.8; }
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover {
  background: rgba(242,245,247,0.1);
  color: #F2F5F7;
}
.button.primary {
  background: linear-gradient(90deg, #699C7C 0%, #143656 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  margin-left: 10px;
  box-shadow: 0 4px 16px rgba(20,54,86,0.09);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg, #143656 0%, #699C7C 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(20,54,86,0.16);
}
.button {
  background: #699C7C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(20,54,86,0.07);
  margin-top: 10px;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.button:hover, .button:focus {
  background: #143656;
  box-shadow: 0 6px 18px rgba(20,54,86,0.13);
}

/* Hamburger / Mobile nav */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.15s;
  z-index: 1100;
}
.mobile-menu-toggle:focus {
  color: #F2F5F7;
  outline: 2px solid #F2F5F7;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #143656 70%, #699C7C 100%);
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), opacity 0.35s;
  opacity: 0;
  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;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 16px 0 8px 0;
  width: 88%;
  text-align: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(242,245,247,0.11);
  color: #F2F5F7;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #143656 60%, #699C7C 100%);
  color: #fff;
  padding: 64px 0 64px 0;
  text-align: left;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 16px;
}
.hero .subheadline {
  color: #F2F5F7;
  font-size: 1.35rem;
  max-width: 560px;
  margin-bottom: 16px;
}
.hero .button.primary {
  margin-top: 10px;
}

/* FEATURE GRID & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  background: #fff;
  color: #143656;
  padding: 26px 20px 24px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(20,54,86,0.07);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.16s, box-shadow 0.16s;
  margin-bottom: 20px;
}
.feature-grid li:hover {
  transform: translateY(-3px) scale(1.022);
  box-shadow: 0 16px 48px rgba(105,156,124,0.12);
}
.feature-grid img {
  width: 40px; height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 8px rgba(105,156,124,0.13));
}
.feature-grid h3 { font-size: 1.08rem; margin-bottom: 6px; color: #143656; }

/* SERVICE CARDS OVERVIEW */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(20,54,86,0.09);
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.16s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px) scale(1.021);
  box-shadow: 0 16px 48px rgba(20,54,86,0.13);
}
.service-card h3 {
  margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials {
  background: #F2F5F7;
  padding-bottom: 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 20px 28px;
  background: #fff;
  box-shadow: 0 6px 30px rgba(20,54,86,0.14);
  border-radius: 18px;
  margin-bottom: 24px;
  max-width: 380px;
  min-width: 230px;
  flex: 1 1 230px;
  color: #143656;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 14px 48px rgba(20,54,86,0.14);
  transform: translateY(-3px) scale(1.021);
}
.testimonial-card p {
  font-style: italic;
  color: #143656;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #699C7C;
  font-family: 'Montserrat', monospace, sans-serif;
}

/* ABOUT, TEXT SECTION, GENERICS */
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accent-bg, .faq-preview.accent-bg, .contact-cta.accent-bg, .cta.accent-bg, section.features.accent-bg {
  background: linear-gradient(90deg, #F2F5F7 80%, #d2d8da 100%);
}

/* ABOUT - FEATURES */
.features {
  margin-top: 32px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features ul li {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(20,54,86,0.09);
  margin-bottom: 20px;
  font-size: 1rem;
  color: #143656;
  min-width: 200px;
  flex: 1 1 200px;
}

/* SERVICE LIST DETAILED */
.service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 16px rgba(20,54,86,0.11);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* SERVICE PRICING TABLE */
.service-pricing-table {
  width: 100%;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(20,54,86,.09);
  margin-bottom: 24px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.service-pricing-table th, .service-pricing-table td {
  padding: 14px 12px;
  text-align: left;
  color: #143656;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.service-pricing-table thead tr {
  background: #699C7C;
}
.service-pricing-table th {
  color: #fff;
  font-weight: 700;
}
.service-pricing-table tbody tr:nth-child(even) {
  background: #F2F5F7;
}
.service-pricing-table tbody tr:hover {
  background: #d2d8da;
}

/* ICON WITH TEXT */
.icon-with-text-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(105,156,124, 0.13);
  padding: 22px 18px 16px 18px;
  min-width: 170px;
  max-width: 230px;
  flex: 1 1 170px;
}
.benefit-item img {
  width: 32px; height: 32px;
  margin-bottom: 6px;
}

/* PROCESS TIMELINE IN HOW-IT-WORKS */
.process-timeline {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(20,54,86,0.12);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.process-timeline ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: step;
}
.process-timeline li {
  padding-left: 0px;
  position: relative;
  font-size: 1.13rem;
  color: #143656;
}
.process-timeline li strong {
  color: #699C7C;
}
.icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 28px 0 0 0;
  align-items: center;
}
.icons-row img {
  width: 52px; height: 52px;
}

.client-journey-map {
  background: #fff;
  box-shadow: 0 2px 8px rgba(20,54,86,.09);
  border-radius: 14px;
  padding: 22px 18px 16px 18px;
}

/* FAQ PREVIEW / FAQ ACCORDION */
.faq-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
}
.faq-snippets > div, .faq-item {
  background: #fff;
  padding: 22px 18px 16px 18px;
  border-radius: 13px;
  margin-bottom: 20px;
  flex: 1 1 200px;
  box-shadow: 0 2px 12px rgba(20,54,86,0.08);
}
.faq-item h2 {
  font-size: 1.09rem;
  margin-bottom: 8px;
}
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* CARDS/SECTIONS GENERIC LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(20,54,86,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}

.next-steps-info {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 16px rgba(20,54,86,0.08);
  padding: 18px 16px;
  margin-bottom: 18px;
}

.articles-list, .guides-list, .downloads, .links-to-trusted-resources {
  margin-bottom: 24px;
}
.articles-list ul,
.guides-list ul,
.downloads ul,
.links-to-trusted-resources ul {
  padding-left: 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.articles-list li,
.guides-list li,
.downloads li,
.links-to-trusted-resources li {
  margin-bottom: 0;
  font-size: 1rem;
  color: #143656;
}
.downloads li a, .links-to-trusted-resources li a {
  text-decoration: underline;
  color: #699C7C;
  transition: color 0.18s;
}
.downloads li a:hover, .links-to-trusted-resources li a:hover {
  color: #143656;
}
.checklist-download {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(20,54,86,.07);
  margin-bottom: 18px;
  margin-top: 12px;
}
.calculator-widget-teaser {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(105,156,124,.07);
  margin-bottom: 8px;
}

.map-embed {
  background: #d5e5de;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 12px;
  padding: 16px 14px;
  margin-bottom: 18px;
}
.map-embed img {
  width: 62px; height: 62px;
}

/* FOOTER */
footer {
  background: #143656;
  color: #fff;
  padding-top: 28px;
  padding-bottom: 12px;
  margin-top: 48px;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  min-height: 56px;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: rgba(242,245,247,0.13);
  color: #F2F5F7;
}
.footer-contact p {
  margin-bottom: 0;
  font-size: 0.97rem;
  opacity: 0.7;
}

/* COOKIES CONSENT BANNER */
.cookies-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #143656;
  color: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 34px;
  font-size: 1rem;
  box-shadow: 0 -6px 20px rgba(20,54,86,0.16);
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookies-banner__message {
  flex: 1 1 220px;
}
.cookies-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookies-banner__button {
  background: #699C7C;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.21s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(20,54,86,0.07);
}
.cookies-banner__button.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #699C7C;
  padding: 8px 18px;
}
.cookies-banner__button:hover, .cookies-banner__button:focus {
  background: #143656;
  color: #F2F5F7;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,54,86,0.73);
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #143656;
  max-width: 416px;
  width: 92vw;
  border-radius: 20px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 10px 38px rgba(20,54,86,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2450;
  position: relative;
  animation: fadeInModal 0.18s 1;
}
@keyframes fadeInModal {
  from { transform: scale(0.94) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: #143656;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F2F5F7;
}
.cookie-category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-weight: 600;
  color: #143656;
  font-size: 1rem;
}
.cookie-toggle {
  accent-color: #699C7C;
  margin-left: 8px;
  width: 22px; height: 22px;
  cursor: pointer;
}
.cookie-category.essential label { color: #143656; }
.cookie-category.essential .cookie-toggle { opacity: 0.6; pointer-events: none; }
.cookie-modal .cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-modal__actions .button {
  padding: 10px 20px;
  font-size: 1rem;
}

/* GENERIC RESPONSIVE/MOBILE STYLES */
@media (max-width: 1080px) {
  .header-bar, .footer-bar, .service-cards, .feature-grid, .testimonial-list, .icon-with-text-benefits,
  .faq-snippets, .service-list-detailed, .content-grid {
    gap: 16px;
  }
  .container { padding-left: 10px; padding-right: 10px; }
}

@media (max-width: 880px) {
  .feature-grid li, .service-card, .testimonial-card, .benefit-item, .service-item {
    min-width: 170px; max-width: 100%;
    flex: 1 1 170px;
  }
  .service-pricing-table th, .service-pricing-table td {
    font-size: 0.95rem;
    padding: 10px 7px;
  }
}

@media (max-width: 768px) {
  .header-bar, .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: unset;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-bar {
    align-items: flex-start;
    gap: 12px;
  }
  .hero {
    text-align: left;
    padding: 42px 0 40px 0;
  }
  .feature-grid, .testimonial-list, .service-cards, .faq-snippets, .icon-with-text-benefits, .service-list-detailed {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 36px;
  }
  .map-embed {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 14px 6px;
  }
  .icons-row {
    gap: 14px;
    justify-content: flex-start;
  }
  .icons-row img { width: 38px; height: 38px; }
  .faq-snippets > div {
    min-width: unset;
  }
  .service-pricing-table th, .service-pricing-table td {
    font-size: 0.91rem;
    padding: 7px 5px;
  }
  .cookie-modal {
    padding: 18px 6px 14px 6px;
    width: 98vw;
  }
}

@media (max-width: 520px) {
  .main-nav {
    display: none;
  }
  .hero h1 {
    font-size: 1.38rem;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1rem; }
  .container { padding-left: 2px; padding-right: 2px; }
  .footer-nav { flex-direction: column; gap: 8px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 5px; }
  .section { padding: 18px 2px; }
  .service-cards, .feature-grid, .testimonial-list, .faq-snippets, .icon-with-text-benefits, .service-list-detailed { gap: 10px; }
  .cookies-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 5px;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 12px 0 7px 0;
    width: 100%;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.button, .button.primary, .main-nav a, .footer-nav a, .mobile-nav a, .cookies-banner__button, .cookie-modal__close {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.16s;
}
.button:hover, .button:focus, 
.button.primary:hover, .button.primary:focus, 
.cookies-banner__button:hover, .cookies-banner__button:focus, 
.cookie-modal__close:hover, .cookie-modal__close:focus {
  transform: scale(1.028);
}

/* Hide scroll on overlay/modal open */
body.cookies-modal-open {
  overflow: hidden;
}

/* Miscellaneous, focus and accessibility */
:focus {
  outline: 2px solid #699C7C !important;
  outline-offset: 1.5px;
}

/* --------- END --------- */
