/* RESET & BASICS */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #edf3f2;
  color: #214f4b;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #214f4b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #c9e265;
}
ul, ol {
  padding-left: 1.25em;
}
strong, b {
  font-weight: 700;
}
::-webkit-input-placeholder { color: #555; opacity: 1; }
::-moz-placeholder { color: #555; opacity: 1; }
:-ms-input-placeholder { color: #555; opacity: 1; }
::placeholder { color: #555; opacity: 1; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #214f4b;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: 0.015em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
p {
  margin-bottom: 16px;
}

/* GEOMETRIC STRUCTURED CHARACTER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX LAYOUTS: CRITICAL CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(33,79,75,0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 9px 32px rgba(33,79,75,0.11);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(33,79,75,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAV */
header {
  background: #fff;
  border-bottom: 2.5px solid #c9e265;
  box-shadow: 0 1.5px 0 rgba(33,79,75,0.07);
  position: sticky;
  top: 0; z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #214f4b;
  padding: 8px 0 8px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.19s, border-bottom 0.18s;
  position: relative;
  text-transform: uppercase;
}
.main-nav a:hover,
.main-nav a.active {
  color: #c9e265;
  border-bottom: 2.5px solid #c9e265;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #c9e265;
  color: #214f4b;
  border: none;
  border-radius: 18px 4px 18px 4px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  padding: 11px 32px;
  margin-left: 20px;
  box-shadow: 0 1px 7px rgba(33,79,75,0.07);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform 0.12s;
  outline: none;
  text-transform: uppercase;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #214f4b;
  color: #c9e265;
  box-shadow: 0 2px 16px rgba(33,79,75,0.18);
  transform: translateY(-2px) scale(1.045) skew(-2deg);
}

/* MOBILE NAVIGATION • Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #214f4b;
  cursor: pointer;
  margin-left: auto;
  z-index: 1201;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #edf3f2;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 26px 24px 26px;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.74,0,.26,1);
  box-shadow: -4px 0 24px rgba(33,79,75,0.08);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #214f4b;
  margin-bottom: 16px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 6px;
  color: #214f4b;
  border-radius: 11px 3px 11px 2px;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #c9e265;
  color: #214f4b;
}
/* Hide desktop nav on mobile, show mobile menu toggle */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn { /* Move call-to-action to end on mobile */
    margin-left: 0;
    margin-right: 8px;
  }
}

/* HERO SECTION */
.hero {
  background: #214f4b;
  color: #fff;
  border-radius: 0 0 52px 0;
  margin-bottom: 48px;
  padding: 60px 0 54px 0;
  position: relative;
}
.hero .container { flex-direction: column; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1,
.hero h2, .hero p {
  color: #fff;
}
.hero .cta-btn {
  background: #c9e265;
  color: #214f4b;
  margin-top: 18px;
}
.hero .cta-btn:hover {
  background: #fff;
  color: #214f4b;
}

/* SPECIAL FLEX CLASSES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 0;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 4px 18px rgba(33,79,75,0.06);
  padding: 34px 24px 30px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.19s;
  margin-bottom: 0;
}
.feature-grid > div:hover {
  box-shadow: 0 16px 36px rgba(33,79,75,0.18);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: brightness(0.97) saturate(0.9);
}
.feature-grid h3 {
  color: #214f4b;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.feature-grid p {
  color: #446460;
  font-size: 1rem;
}

/* SERVICES, GUIDES, FAQ, POSTS, ETC. */
.services ul,
.guides ul,
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.services li,
.guides li,
.faq li {
  background: #fff;
  border-radius: 14px 4px 14px 4px;
  padding: 22px 24px 18px 24px;
  box-shadow: 0 2px 8px rgba(33,79,75,0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.services a,
.guides a {
  color: #214f4b;
  background: #c9e265;
  border-radius: 8px 2px 8px 2px;
  padding: 6px 18px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  align-self: flex-start;
  margin-top: 10px;
  transition: background 0.18s, color 0.16s;
}
.services a:hover, .services a:focus,
.guides a:hover, .guides a:focus {
  background: #214f4b;
  color: #c9e265;
}
.faq li strong {
  color: #214f4b;
  font-weight: 700;
}
.faq ul {
  gap: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  border-radius: 30px 8px 30px 8px;
  box-shadow: 0 2px 10px rgba(33,79,75,0.06);
  margin-bottom: 48px;
  padding: 40px 20px;
}
.testimonials h2 { color: #214f4b; }
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #16302d;
  border-left: 5px solid #c9e265;
  border-radius: 14px 0 14px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 22px 26px 18px 24px;
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(33,79,75,0.10);
  transition: box-shadow 0.13s;
}
.testimonial-card p {
  color: #16302d;
  font-size: 1.07rem;
  margin-bottom: 8px;
}
.testimonial-user {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  color: #214f4b;
  margin-bottom: 0;
}
.rating-stars {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #c9e265;
  font-size: 1.2em;
}

/* CTA SECTION */
.cta {
  background: #c9e265;
  color: #214f4b;
  border-radius: 33px 9px 33px 9px;
  text-align: left;
  margin-bottom: 48px;
  padding: 38px 20px;
}
.cta h2 { color: #214f4b; }
.cta .cta-btn {
  background: #214f4b;
  color: #c9e265;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #214f4b;
}

/* BLOG POSTS & CATEGORY FILTER */
.posts .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 16px;
}
.posts .blog-list > div {
  background: #fff;
  border-radius: 17px 4px 17px 4px;
  box-shadow: 0 2px 9px rgba(33,79,75,0.07);
  padding: 20px 18px 16px 18px;
  flex: 1 1 250px;
  min-width: 238px;
  transition: transform 0.19s, box-shadow 0.13s;
}
.posts .blog-list > div:hover {
  transform: scale(1.035) translateY(-2px);
  box-shadow: 0 11px 30px rgba(33,79,75,0.14);
}
.category-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-bottom: 0;
}
.category-filter span {
  font-weight: 700;
}
.category-filter a {
  background: #c9e265;
  color: #214f4b;
  border-radius: 8px 2px 8px 2px;
  padding: 4px 13px;
  margin-right: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  transition: background 0.18s, color 0.13s;
}
.category-filter a:hover {
  background: #214f4b;
  color: #c9e265;
}

/* CONTACT SECTION */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.contact-info > div {
  background: #fff;
  border-radius: 11px 4px 11px 4px;
  box-shadow: 0 1.5px 8px rgba(33,79,75,0.05);
  padding: 14px 18px 8px 18px;
  min-width: 160px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.contact-info img {
  width: 28px; height: 28px;
  margin-bottom: 6px;
  filter: grayscale(0.1) brightness(0.98) opacity(0.77);
}
.contact-map {
  margin-top: 20px;
  background: #fff;
  border-radius: 12px 2px 12px 2px;
  padding: 20px 18px;
  box-shadow: 0 1px 7px rgba(33,79,75,0.06);
  font-size: 1rem;
}

/* LEGAL SECTIONS */
.legal {
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 2px 10px rgba(33,79,75,0.06);
  margin-bottom: 64px;
  padding: 40px 20px;
}
.legal h1, .legal h2 { color: #214f4b; }
.legal ul {
  margin: 18px 0 22px 0;
  padding-left: 1.5em;
}
.legal li {
  margin-bottom: 10px;
  color: #214f4b;
}

/* THANK YOU */
.thank-you {
  background: #c9e265;
  color: #214f4b;
  border-radius: 28px 10px 28px 10px;
  text-align: left;
  padding: 54px 20px;
  margin-bottom: 60px;
}
.thank-you .cta-btn {
  background: #214f4b;
  color: #c9e265;
  margin-top: 30px;
}
.thank-you .cta-btn:hover {
  background: #fff;
  color: #214f4b;
}

/* FOOTER */
footer {
  background: #214f4b;
  color: #fff;
  padding: 44px 0 24px 0;
  border-radius: 64px 0 0 0;
  margin-top: 22px;
}
.footer-logo-social {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-social img {
  height: 34px;
  filter: brightness(1.13);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 19px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #c9e265;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: text-decoration 0.13s, color 0.13s;
}
.footer-nav a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
}
.footer-contact a {
  color: #c9e265;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE ADAPTATION */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 992px) {
  .feature-grid, .testimonial-slider, .contact-info, .posts .blog-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px; }
  .section, .testimonials, .cta, .legal, .thank-you {
    padding: 24px 7px;
  }
  .hero {
    padding: 38px 0 34px 0;
    border-radius: 0 0 25px 0;
    margin-bottom: 24px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .posts .blog-list {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    gap: 10px;
  }
  footer {
    padding: 30px 0 16px 0;
    border-radius: 22px 0 0 0;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 6px; }
  .footer-logo-social img { height: 27px; }
}

/* BUTTONS & INTERACTIVES */
button, .cta-btn, .services a, .guides a, .category-filter a, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  cursor: pointer;
}
button:focus, .cta-btn:focus, .services a:focus, .guides a:focus, .category-filter a:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #c9e265;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS */
.card, .feature-grid > div, .testimonial-card, .posts .blog-list > div {
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active, .posts .blog-list > div:active {
  transform: scale(0.985);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #214f4b;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 22px 15px 21px 15px;
  box-shadow: 0 -2px 24px rgba(33,79,75,0.12);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.27s, transform 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner-content {
  text-align: center;
  max-width: 600px;
  font-size: 1.05rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.cookie-btn {
  background: #c9e265;
  color: #214f4b;
  border: none;
  border-radius: 10px 4px 10px 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 10px 26px;
  margin-top: 9px;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.16s;
  box-shadow: 0 0.5px 6px rgba(33,79,75,0.08);
}
.cookie-btn.reject {
  background: #fff;
  color: #214f4b;
  border: 2px solid #214f4b;
}
.cookie-btn.settings {
  background: #214f4b;
  color: #c9e265;
  border: 1.5px solid #c9e265;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #214f4b;
  color: #c9e265;
  box-shadow: 0 0.5px 14px rgba(33,79,75,0.20);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c9e265;
  color: #214f4b;
  border-color: #214f4b;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #214f4b;
  border-color: #214f4b;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,79,75,.60);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 8px 24px 8px;
  max-width: 468px;
  width: 96vw;
  padding: 40px 26px 24px 26px;
  box-shadow: 0 8px 48px rgba(33,79,75,0.23);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
  animation: modalFadeIn 0.29s cubic-bezier(.49,.09,.36,1.09);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.97) translateY(28px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #214f4b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #edf3f2;
  border-radius: 9px 3px 9px 3px;
  padding: 14px 14px 13px 17px;
  margin-bottom: 9px;
}
.cookie-modal-category.essential {
  opacity: 0.7;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 21px;
  border-radius: 12px;
  background: #c9e265;
  position: relative;
  outline: none; transition: background 0.19s;
  cursor: pointer;
}
.cookie-toggle:after {
  content: '';
  position: absolute; top: 2.3px; left: 2.1px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 8px rgba(33,79,75,0.18);
  transition: left 0.19s, background 0.19s;
}
.cookie-toggle:checked {
  background: #214f4b;
}
.cookie-toggle:checked:after {
  left: 19px; background: #c9e265;
}

.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 6px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-modal-close {
  position: absolute; top: 10px; right: 18px;
  background: none;
  border: none;
  font-size: 1.48rem;
  color: #214f4b;
  cursor: pointer;
  z-index: 4200;
}
.cookie-modal-close:focus {
  outline: 2px solid #c9e265;
}

/* Hide banner & modal on print */
@media print {
  .cookie-banner,
  .cookie-modal-overlay { display: none !important; }
}

/* Z-INDEX LAYERING (MOBILE, MODALS) */
.mobile-menu { z-index: 1200; }
.mobile-menu-toggle { z-index: 1201; }
.cookie-banner { z-index: 4000; }
.cookie-modal-overlay { z-index: 4100; }

/* FORCE SCROLL ON MOBILE MENU, PREVENT OVERLAP */
.mobile-menu {
  overflow-y: auto;
}

/* SPACING ADJUSTMENTS (MANDATORY PATTERNS) */
.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;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
