/* ====== RESET & FONT DECLARATION ====== */
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,main,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAF7F2;
  color: #24323B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #568B6C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #38654B;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #24323B;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #283840;
}
ul, ol {
  padding-left: 22px;
}
strong, b {
  font-weight: 700;
  color: #24323B;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ====== LAYOUT & CONTAINERS ====== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(38,60,39,0.08), 0 2px 4px rgba(87,138,110,0.05);
}
.cta-accent {
  background: #F3ECE0;
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  width: 100%;
  box-shadow: 0 2px 8px rgba(38,60,39,0.06);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #F3ECE0;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #24323B;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background .15s, color .15s;
}
header nav a:hover, header nav a:focus {
  background: #F3ECE0;
  color: #568B6C;
}
header a.btn-primary {
  margin-left: 8px;
}
header img {
  height: 48px;
  border-radius: 10px;
}

/* ====== HERO SECTION ====== */
.hero {
  padding: 56px 0 32px 0;
  background: #F7F7F2;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #24323B;
}
.hero .subtitle {
  font-size: 1.25rem;
  color: #568B6C;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}

/* ====== FLEXBOX UTILITY CONTAINERS ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(87,138,110,0.09), 0 2px 4px rgba(38,60,39,0.06);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.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;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.features-grid .feature {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(86,139,108,0.07);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .18s, transform .15s;
}
.features-grid .feature:hover {
  box-shadow: 0 8px 36px rgba(38,60,39,0.10);
  transform: translateY(-4px) scale(1.015);
}
.features-grid .feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
  border-radius: 14px;
  background: #F3ECE0;
  padding: 6px;
}

/* ====== ARTICLE & LISTS ====== */
.highlights-list, .values-list, .featured-list, .key-benefits {
  list-style-type: disc;
  margin-bottom: 24px;
  padding-left: 25px;
  color: #283840;
  font-size: 1rem;
}
.featured-list li a {
  color: #568B6C;
}
.highlights-list b, .featured-list b {
  color: #568B6C;
}
.latest-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.latest-articles-grid article {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(38,60,39,0.07);
  padding: 23px 18px 17px 18px;
  min-width: 220px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
}
.latest-articles-grid article:hover {
  box-shadow: 0 8px 33px rgba(86,139,108,0.12);
  transform: translateY(-3px) scale(1.013);
}
.latest-articles-grid article h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.latest-articles-grid article a {
  font-weight: 500;
  color: #568B6C;
  margin-top: 2px;
  font-size: 1rem;
  transition: color .17s;
}
.latest-articles-grid article a:hover {
  color: #38654B;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #568B6C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 34px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(86,139,108,0.14);
  outline: none;
  transition: background .19s, box-shadow .14s, transform .13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #38654B;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 22px rgba(38,60,39,0.11);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  color: #568B6C;
  background: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  text-decoration: underline;
  transition: color .15s;
}
.btn-link:hover, .btn-link:focus {
  color: #24323B;
}
.cta-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 16px;
  gap: 18px;
}

/* ====== SERVICE CARDS & LISTING ====== */
.service-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 18px rgba(87,138,110,0.09), 0 2px 4px rgba(38,60,39,0.05);
  padding: 27px 20px 14px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .16s, transform .13s;
  min-width: 210px;
  max-width: 340px;
}
.service-card:hover {
  box-shadow: 0 11px 34px rgba(86,139,108,0.13);
  transform: translateY(-3px) scale(1.015);
}
.service-card h3 {
  margin-bottom: 8px;
}
.service-card b {
  color: #568B6C;
  font-weight: 700;
}

/* ====== TESTIMONIALS & REVIEWS ====== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 20px 12px 20px;
  min-width: 230px;
  max-width: 360px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 20px rgba(38,60,39,0.08), 0 2px 9px rgba(86,139,108,0.07);
  font-size: 1.08rem;
  color: #24323B;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .13s;
}
.testimonial-card p {
  margin-bottom: 7px;
  color: #24323B;
}
.testimonial-card p b {
  color: #568B6C;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(86,139,108,0.13);
  transform: translateY(-3px) scale(1.013);
}
.average-rating {
  background: #F3ECE0;
  color: #24323B;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  padding: 13px 22px;
  font-size: 1.12rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(86,139,108,0.06);
  display: inline-flex;
  align-items: center;
}

/* ====== CONTACT, MAP, FOOTER ====== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F3ECE0;
  border-radius: 18px;
  padding: 18px 22px 12px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 9px rgba(86,139,108,0.08);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 8px;
  color: #24323B;
  font-size: 0.98rem;
}
footer {
  background: #24323B;
  color: #fff;
  padding: 34px 0 22px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -5px 18px rgba(86,139,108,0.09);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
footer nav a {
  color: #F7F7F2;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .16s;
  border-radius: 15px;
  padding: 6px 11px;
}
footer nav a:hover, footer nav a:focus {
  color: #ECB878;
  background: rgba(240,211,161,0.13);
}
footer img {
  height: 36px;
  border-radius: 6px;
  background: #F7F7F2;
  padding: 3px;
}
footer .footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
  margin-bottom: -4px;
}

.static-map {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 9px rgba(86,139,108,0.09);
  padding: 19px;
  margin-top: 10px;
}

/* ====== ARTICLE SEARCH & FILTER ====== */
.articles-search {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.articles-search label {
  font-size: 1rem;
  color: #24323B;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.articles-search input[type="text"], .articles-search select {
  padding: 9px 14px;
  border: 1px solid #568B6C;
  border-radius: 18px;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: border .15s;
}
.articles-search input[type="text"]:focus, .articles-search select:focus {
  border-color: #24323B;
}

/* ====== TEAM OVERVIEW ====== */
.team-overview {
  background: #F3ECE0;
  border-radius: 14px;
  padding: 16px 18px 12px 18px;
  margin-top: 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(86,139,108,0.07);
}
.team-overview ul {
  margin-bottom: 0;
}

/* ====== MOBILE MENU TOGGLE/BURGER ====== */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,50,59,0.98);
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.8,.11,.33,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  top: 25px;
  right: 24px;
  cursor: pointer;
  z-index: 3200;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ECB878;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 80px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  font-weight: 500;
  padding: 18px 36px;
  border-radius: 18px;
  transition: background .15s, color .12s;
  width: 100vw;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #568B6C;
  color: #FFF9F0;
  outline: none;
}

/* ====== COOKIE BANNER & CONSENT ====== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 20000;
  padding: 26px 18px 22px 18px;
  background: #fff8f2;
  box-shadow: 0 -5px 22px rgba(87,138,110,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  border-radius: 22px 22px 0 0;
  transition: transform .26s cubic-bezier(.68,-0.27,.78,1.2);
  font-size: 1.02rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__message {
  color: #24323B;
  flex: 1 1 0%;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner__btn, .cookie-banner__settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .12s;
  min-width: 120px;
  margin: 0;
}
.cookie-banner__btn.accept {
  background: #568B6C;
  color: #fff;
  box-shadow: 0 2px 9px rgba(86,139,108,0.13);
}
.cookie-banner__btn.accept:hover {
  background: #38654B;
}
.cookie-banner__btn.reject {
  background: #fff;
  color: #568B6C;
  border: 1px solid #568B6C;
}
.cookie-banner__btn.reject:hover {
  background: #F7F7F2;
  border-color: #24323B;
}
.cookie-banner__settings {
  background: #F3ECE0;
  color: #24323B;
  border: 1px solid #F3ECE0;
}
.cookie-banner__settings:hover {
  background: #f9e3bc;
}

/* ====== COOKIE PREFERENCES MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: rgba(36,50,59,0.61);
  z-index: 25000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 420px;
  width: 92vw;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 8px 40px rgba(38,60,39,0.17);
  display: flex;
  flex-direction: column;
  gap: 27px;
  position: relative;
  animation: modal-in .39s cubic-bezier(.58,.07,.53,1) 1;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #24323B;
  cursor: pointer;
}
.cookie-modal__close:hover, .cookie-modal__close:focus{
  color: #568B6C;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category .category-desc {
  flex: 1 1 0;
  font-size: 1rem;
  color: #24323B;
}
.cookie-modal .cookie-category .category-toggle {
  min-width: 45px;
}
.toggle-switch {
  display: inline-block;
  width: 42px;
  height: 22px;
  position: relative;
}
.toggle-switch input[type="checkbox"] {
  display: none;
}
.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F3ECE0;
  border-radius: 22px;
  transition: .2s;
}
.toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(86,139,108,0.13);
  transition: .2s;
}
.toggle-switch input:checked + .slider {
  background-color: #568B6C;
}
.toggle-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.toggle-switch input[disabled] + .slider {
  background: #daeadb;
  cursor: not-allowed;
}
.toggle-switch input[disabled] + .slider:before {
  background: #eee;
}

.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
}

.cookie-modal .cookie-actions button {
  min-width: 108px;
}

/* ====== GENERAL UTILITY CLASSES ====== */
.mb32 { margin-bottom: 32px !important; }
.mt24 { margin-top: 24px !important; }
.gap16 { gap: 16px !important; }
.gap24 { gap: 24px !important; }

/* ====== MEDIA QUERIES: MOBILE FRIENDLY ====== */
@media (max-width: 1120px) {
  .features-grid, .service-listing, .latest-articles-grid, .testimonial-slider {
    gap: 14px;
  }
}

@media (max-width: 940px) {
  .features-grid .feature, .service-card, .latest-articles-grid article, .testimonial-card {
    max-width: 99%;
    min-width: 170px;
  }
  .service-listing, .features-grid, .latest-articles-grid, .testimonial-slider {
    flex-wrap: wrap;
    gap: 13px;
    justify-content: flex-start;
  }
  .container {
    padding: 0 9px;
    max-width: 100vw;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .features-grid, .service-listing, .latest-articles-grid, .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .features-grid .feature, .service-card, .latest-articles-grid article, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .static-map {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    text-align: left;
    font-size: 1rem;
    padding: 23px 8px 15px 8px;
  }
}

@media (max-width: 768px) {
  .section, .cta-accent {
    padding: 36px 8px;
    border-radius: 17px;
  }
  .content-wrapper {
    gap: 24px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 51px;
    padding: 7px 9px 7px 9px;
  }
  nav {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 17px;
    right: 19px;
    background: #568B6C;
    border: none;
    color: #fff;
    font-size: 2.15rem;
    border-radius: 12px;
    padding: 6px 18px 4px 18px;
    z-index: 1200;
    box-shadow: 0 2px 7px rgba(86,139,108,0.11);
    transition: background .17s;
    cursor: pointer;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #38654B;
  }
  header a.btn-primary {
    display: none;
  }
  .static-map {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 8px;
  }
  .team-overview {
    padding: 11px 10px 7px 10px;
  }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 1.5rem; }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  .container, .section, .cta-accent {
    padding-left: 4px; padding-right: 4px;
  }
  .btn-primary, .cookie-banner__btn, .cookie-banner__settings {
    padding: 8px 12px;
    font-size: 1rem;
    min-width: 80px;
    border-radius: 20px;
  }
  .testimonial-card, .features-grid .feature, .service-card {
    padding: 13px 10px 9px 10px;
    border-radius: 15px;
  }
  .footer-contact {
    font-size: 0.89rem;
    gap: 5px;
  }
  footer img {
    height: 28px;
    border-radius: 3px;
  }
}

/* ====== TRANSITIONS, SHADOWS, MICRO-INTERACTIONS ====== */
.card, .service-card, .testimonial-card, .features-grid .feature, .latest-articles-grid article {
  transition: box-shadow 0.14s, transform 0.12s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .features-grid .feature:hover, .latest-articles-grid article:hover {
  box-shadow: 0 12px 38px rgba(86,139,108,0.14);
  transform: translateY(-2px) scale(1.01);
}
.btn-primary, .btn-link, .cookie-banner__btn, .cookie-banner__settings, .mobile-menu-toggle {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.13s;
}

/* ====== FOCUS STATES ====== */
input:focus, select:focus, button:focus, a:focus {
  outline: 2px solid #568B6C;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #daeadb44;
}

/* ====== MODAL SCROLL PREVENTION UTILITY ====== */
.body-modal-open {
  overflow: hidden;
}

/* ====== END ====== */
