/* ===================== 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,
main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8FAF9;
  color: #2A3547;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A3547;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #77C048;
  outline: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* ===================== BRAND FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232C3D;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 8px; font-weight: 600; }

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2A3547;
}

strong, b {
  font-weight: 600;
}

/* ===================== LAYOUT CONTAINERS ===================== */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(42,53,71,0.03), 0 1.5px 3px rgba(119,192,72,0.03);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(42,53,71,0.06);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(42,53,71,0.09);
  transform: translateY(-4px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===================== HEADER ===================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(42,53,71,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2A3547;
  transition: background .15s, color .12s;
}
.main-nav .btn-primary {
  margin-left: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBF7F3;
  color: #77C048;
}

.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    font-size: 2rem;
    color: #2A3547;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 101;
  }
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,53,71,0.86);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.72,0.16,0.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 28px 32px 0 0;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  transition: color .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #77C048;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 48px;
  padding: 0 36px;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.25rem;
  border-radius: 8px;
  padding: 14px 10px 14px 0;
  width: 100%;
  text-align: right;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .15s, color .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EBF7F3;
  color: #2A3547;
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================== BUTTONS & LINKS ===================== */
.btn-primary {
  display: inline-block;
  background: #77C048;
  color: #fff !important;
  border-radius: 8px;
  padding: 0.75em 2.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(119,192,72,0.09);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.12s, box-shadow 0.17s, transform .14s, color 0.14s;
  margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #609e36;
  box-shadow: 0 6px 18px rgba(119,192,72,0.13);
  color: #fff;
  transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
  display: inline-block;
  background: #EBF7F3;
  color: #2A3547;
  border-radius: 8px;
  padding: 0.75em 2.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(42,53,71,0.07);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow .13s, transform 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #d7eee5;
  color: #2A3547;
  box-shadow: 0 6px 18px rgba(42,53,71,0.13);
  transform: translateY(-1px) scale(1.01);
}

/* ===================== FEATURES & SERVICES ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 0 0;
  width: 100%;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FBFEFD;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(42,53,71,0.06);
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 225px;
  gap: 14px;
  transition: box-shadow .19s, transform .12s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px rgba(42,53,71,0.09);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 24px 0;
}
.service-cards > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(42,53,71,0.06);
  padding: 24px 20px;
  min-width: 205px;
  max-width: 320px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow .16s, transform .11s;
}
.service-cards > div:hover {
  box-shadow: 0 6px 20px rgba(42,53,71,0.10);
  transform: translateY(-1px) scale(1.01);
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #EBF7F3;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(42,53,71,0.08);
  min-width: 250px;
  flex: 1 1 270px;
  color: #2A3547;
  font-style: italic;
  font-size: 1.06rem;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 16px rgba(42,53,71,0.13);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  color: #2A3547;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: .95rem;
  font-style: normal;
  font-weight: 500;
  color: #609e36;
}

/* ===================== BLOG CARDS ===================== */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 14px 0 0 0;
}
.blog-cards > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(42,53,71,0.07);
  padding: 26px 20px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow .13s, transform .09s;
}
.blog-cards > div:hover {
  box-shadow: 0 5px 16px rgba(119,192,72,0.11);
  transform: translateY(-2px) scale(1.012);
}
.blog-cards h3 {
  margin-bottom: 10px;
  font-size: 1.10rem;
}
.blog-cards a {
  color: #77C048;
  font-weight: 600;
  border-bottom: 1px solid #77C048;
  transition: color 0.14s, border-bottom 0.13s;
}
.blog-cards a:hover, .blog-cards a:focus {
  color: #2A3547;
  border-bottom: 1.5px solid #2A3547;
}

.blog-categories h3 {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
}

.blog-categories ul {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin: 8px 0 0 0;
  flex-wrap: wrap;
}
.blog-categories li {
  background: #EBF7F3;
  color: #2A3547;
  padding: 7px 18px;
  border-radius: 7px;
  font-size: .98rem;
  font-weight: 500;
}

/* ===================== PRICING TABLE ===================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1.5px 9px rgba(42,53,71,0.07);
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 18px;
}
.pricing-table th, .pricing-table td {
  padding: 20px 16px;
  text-align: center;
  border-bottom: 1px solid #EBF7F3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  vertical-align: top;
}
.pricing-table th {
  background: #EBF7F3;
  color: #2A3547;
  font-size: 1.17rem;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .pricing-table th, .pricing-table td {
    padding: 10px 5px;
    font-size: .98rem;
  }
}

.package-descriptions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.package-descriptions h3 {
  margin-bottom: 7px;
  color: #77C048;
  font-size: 1rem;
}
.package-descriptions p {
  color: #2A3547;
  font-size: .98rem;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: #EBF7F3;
  border-radius: 16px;
  padding: 38px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  box-shadow: 0 3px 12px rgba(119,192,72,0.05);
}
.cta-banner h2 {
  color: #2A3547;
  margin-bottom: 5px;
}

/* ===================== INFO BOXES ===================== */
.info-box {
  margin: 16px 0 0 0;
  background: #FBFEFD;
  color: #2A3547;
  border-left: 4px solid #77C048;
  padding: 18px 20px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 1.5px 7px rgba(42,53,71,0.06);
}

.map-placeholder {
  background: #EBF7F3;
  border-radius: 10px;
  padding: 26px 16px;
  text-align: center;
  color: #2A3547;
  font-size: 1rem;
  margin-top: 8px;
  box-shadow: 0 1.5px 5px rgba(42,53,71,0.06);
}

.newsletter-signup {
  background: #FBFEFD;
  border-radius: 12px;
  padding: 24px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A3547;
  margin-bottom: 16px;
  font-size: 1.04rem;
  box-shadow: 0 1px 6px rgba(119,192,72,0.04);
}

/* ===================== TEAM BIOS ===================== */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
}
.team-bios > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(42,53,71,0.07);
  padding: 24px 18px;
  flex: 1 1 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===================== ACCORDION (FAQ) ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #FBFEFD;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(42,53,71,0.06);
  padding: 20px 16px;
  transition: box-shadow .12s, transform .09s;
}
.faq-accordion > div h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: #2A3547;
}
.faq-accordion > div p {
  font-size: 1rem;
  color: #2A3547;
}
.faq-accordion > div:hover {
  box-shadow: 0 5px 14px rgba(119,192,72,0.08);
  transform: translateY(-2px) scale(1.01);
}

/* ===================== FOOTER ===================== */
footer {
  background: #2A3547;
  color: #fff;
  font-size: .99rem;
  padding: 0;
  margin: 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 38px 20px 18px 20px;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-main img {
  height: 36px;
  filter: brightness(85%);
  margin-bottom: 7px;
}
.footer-main nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer-main nav a {
  color: #fff;
  opacity: 0.92;
  font-size: .97rem;
  border-radius: 5px;
  padding: 6px 10px;
  transition: background 0.14s, color 0.12s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  background: #77C048;
  color: #2A3547;
}
.footer-contact {
  color: #ececec;
  line-height: 1.6;
  font-size: .99rem;
}
.footer-contact span {
  font-size: .92rem;
  opacity: .8;
  display: block;
  margin-top: 4px;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 32px 16px 12px 16px;
  }
}

/* ===================== TEXT SECTIONS ===================== */
.text-section {
  margin: 17px 0 0 0;
  color: #2A3547;
  font-size: 1.03rem;
}
.text-section ul, .text-section ol {
  margin-left: 14px;
  margin-bottom: 13px;
}
.text-section li {
  margin-bottom: 8px;
  padding-left: 5px;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1100px) {
  .feature-grid,
  .service-cards,
  .blog-cards,
  .testimonial-slider,
  .team-bios {
    gap: 18px;
  }
  .feature-grid > div, .service-cards > div, .blog-cards > div, .testimonial-card, .team-bios > div {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.06rem; }

  .feature-grid, .service-cards, .blog-cards, .testimonial-slider, .team-bios, .package-descriptions {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2A3547;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(42,53,71,0.08);
  z-index: 3000;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: transform .34s, opacity 0.17s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: #EBF7F3;
  color: #2A3547;
  border-radius: 5px;
  padding: 7px 19px;
  font-weight: 500;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s, transform .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #77C048;
  color: #fff;
  transform: scale(1.05);
}

/* ===================== COOKIE PREFERENCES MODAL ===================== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,53,71,0.55);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #2A3547;
  border-radius: 16px;
  min-width: 320px;
  max-width: 95vw;
  padding: 34px 30px 28px 30px;
  box-shadow: 0 6px 26px rgba(42,53,71,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transform: scale(1);
  transition: transform .23s;
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: #2A3547;
  margin-bottom: 6px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #77C048;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #b6bfcf;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  color: #b6bfcf;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: color .13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #77C048;
}
.cookie-modal .modal-buttons {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal button {
  background: #77C048;
  color: #fff;
  border-radius: 6px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .15s, color .11s, transform .11s;
}
.cookie-modal button.secondary {
  background: #EBF7F3;
  color: #2A3547;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #609e36;
  color: #fff;
  transform: scale(1.03);
}
@media (max-width: 540px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 8px 14px 8px;
  }
  .cookie-modal .modal-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===================== UTILITIES ===================== */
.mb-24 { margin-bottom: 24px !important; }
.mt-24 { margin-top: 24px !important; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 2px 8px rgba(42,53,71,0.08); }

/* ===================== GENERAL INTERACTIONS ===================== */
body, .section, .card, .feature-grid > div, .service-cards > div, .testimonial-card, .faq-accordion > div {
  transition: background 0.20s, color 0.15s;
}

@media (hover: hover) and (pointer: fine) {
  .main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
    background: #EBF7F3;
    color: #77C048;
  }
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #EBF7F3;
}
::-webkit-scrollbar-thumb {
  background: #bcdcb8;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #77C048;
}

/* ===================== INPUTS (MODALS/FORMS) ===================== */
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid #EBF7F3;
  border-radius: 6px;
  padding: 13px 14px;
  background: #FBFEFD;
  color: #2A3547;
  font-size: 1rem;
  transition: border 0.14s, box-shadow 0.12s;
  margin-bottom: 14px;
  width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #77C048;
  box-shadow: 0 0 0 3px #ebf7f3;
}

/* ===================== SPACING & FLEXBOX ADJUSTMENTS ===================== */
/* All gap and margin patterns from the mission instructions already covered above. */

/* ===================== MISC ===================== */
hr {
  border: 0;
  border-top: 1.5px solid #EBF7F3;
  margin: 40px 0 18px 0;
}

/* ===================== ACCESSIBILITY FOCUS ===================== */
:focus-visible {
  outline: 2.5px solid #77C048 !important;
  outline-offset: 2px;
}

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