/* Reset and 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FBFDF9;
  color: #246246;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #246246;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; position: relative; }
h2:after {
  content: '';
  display: block;
  margin: 12px 0 0 0;
  width: 45px;
  height: 5px;
  border-radius: 4px;
  background: #F1CB36;
}
h3 { font-size: 1.4rem; margin-bottom: 12px; }
.blockquote, blockquote {
  font-family: 'Montserrat', cursive, sans-serif;
  font-style: italic;
  color: #246246;
  background: #C3D2B6;
  border-left: 6px solid #F1CB36;
  margin: 20px 0; padding: 16px 20px 16px 30px;
  border-radius: 24px 8px 32px 8px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
a {
  color: #246246;
  text-decoration: underline dotted #F1CB36;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1CB36;
  text-decoration: underline solid #246246;
}
strong {
  font-weight: 700;
}
.highlight {
  color: #F1CB36;
  background: #24624611;
  border-radius: 10px;
  font-weight: 500;
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: 8px;
}

/* Layout: Container */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #246246;
  color: #fff;
  position: relative;
  z-index: 1001;
  box-shadow: 0 4px 24px -12px #24624644;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px;
  gap: 20px;
}
.logo img {
  height: 48px;
  vertical-align: middle;
  transition: transform 0.2s cubic-bezier(.4,1.7,.42,.87);
}
.logo:hover img {
  transform: scale(1.08) rotate(-2deg);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F1CB36;
  letter-spacing: .01em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  padding: 8px 14px;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #246246;
  background: #F1CB36;
  outline: none;
}
.btn-primary {
  background: #F1CB36;
  color: #246246;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  padding: 10px 30px;
  border-radius: 24px 8px 24px 8px;
  letter-spacing: .04em;
  margin-left: 12px;
  box-shadow: 0 3px 14px -6px #F1CB3666;
  transition: background .17s, color .17s, box-shadow .22s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #246246;
  color: #F1CB36;
  box-shadow: 0 6px 18px -4px #24624655;
  outline: none;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #F1CB36;
  color: #246246;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 2px 12px -8px #F1CB3666;
  transition: background .2s, color .2s;
  position: relative;
  z-index: 2010;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #246246;
  color: #F1CB36;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #246246;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 2000;
  transition: transform .35s cubic-bezier(.46,.03,.52,.96);
  transform: translateX(-100%);
  box-shadow: 12px 0 48px -10px #24624688;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: auto;
  margin-right: 16px;
  background: #F1CB36;
  color: #246246;
  border: none;
  font-size: 2rem;
  border-radius: 7px;
  padding: 6px 16px;
  cursor: pointer;
  align-self: flex-end;
  box-shadow: 0 2px 12px -8px #F1CB3666;
  transition: background .2s, color .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #246246;
  color: #F1CB36;
}
.mobile-nav {
  margin: 40px 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: #F1CB36;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 4px 8px 0;
  border-radius: 0 8px 8px 0;
  text-decoration: none;
  transition: background .17s, color .17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #246246;
  background: #F1CB36;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 660px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 0 8px;
  }
  .logo img { height: 36px; max-width: 90vw; }
}

/* --- FLEX CONTENT GRIDS --- */
.feature-grid,
.service-list,
.blog-list,
.faq-list,
.icon-list,
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
.value-block,
.use-case-block {
  background: #C3D2B6;
  border-radius: 24px 8px 24px 8px;
  padding: 22px 28px;
  box-shadow: 0 4px 18px -6px #C3D2B6aa;
  margin-bottom: 20px;
}
.value-block h3, .use-case-block h3 {
  color: #246246;
  font-size: 1.2rem;
}
/* Table (product comparison) */
table {
  width: 100%;
  margin-top: 14px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px -6px #24624633;
  border-collapse: separate;
}
thead {
  background: #C3D2B6;
  color: #246246;
}
thead th {
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #F1CB36;
}
tbody td {
  padding: 13px 10px;
  border-bottom: 1px solid #C3D2B6;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}
.feature-icons img {
  height: 38px;
  width: 38px;
}

/* CHOSEN FLEX SPACING & ALIGNMENT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 3px 14px -8px #24624633;
  padding: 30px 24px;
  transition: box-shadow .17s, transform .22s;
  min-width: 260px;
  max-width: 384px;
  flex: 1 1 280px;
}
.card:hover {
  box-shadow: 0 8px 24px -6px #F1CB3688;
  transform: translateY(-5px) scale(1.01) rotate(-1deg);
}
.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;
  background: #fff;
  border-radius: 32px 10px 32px 10px;
  box-shadow: 0 4px 16px -8px #C3D2B6dd, 0 1px 0 #F1CB36;
  padding: 20px 26px;
  margin-bottom: 20px;
  max-width: 600px;
  color: #1B3623;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0 0;
  font-size: 1.1rem;
  color: #246246;
  font-style: italic;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.testimonial-card p {
  margin: 0 0 0 12px;
  font-size: 1rem;
  color: #0e1912;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********
* HERO, CTA, SECTIONS
*********/
section {
  background: #fff;
  border-radius: 36px 22px 36px 22px;
  box-shadow: 0 4px 20px -13px #C3D2B688;
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
}
section .container {
  padding: 0 18px;
}
section .btn-primary {
  margin-top: 10px;
}

/* Final CTA & lively elements */
section:last-child {
  background: #F1CB36;
  color: #246246;
  box-shadow: 0 4px 28px -12px #F1CB3666;
  text-align: center;
}
section:last-child h2 {
  color: #246246;
}
section:last-child a.btn-primary {
  background: #246246;
  color: #F1CB36;
}
section:last-child a.btn-primary:hover {
  color: #246246;
  background: #fff;
  border: 1.8px solid #246246;
}

/*********
* LISTS & ICONS
*********/
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.feature-grid li,
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #FBFDF9;
  border-radius: 16px 8px 22px 8px;
  padding: 16px 14px;
  color: #246246;
  box-shadow: 0 2px 14px -8px #C3D2B644;
  font-size: 1rem;
  min-width: 210px;
}
.feature-grid li img, .icon-list li img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}
.service-list li {
  background: #C3D2B6;
  border-radius: 20px 8px 20px 8px;
  padding: 18px 18px;
  box-shadow: 0 2px 12px -8px #C3D2B6aa;
  margin-bottom: 20px;
}
.blog-list li {
  background: #fff;
  border-radius: 20px 8px 30px 8px;
  box-shadow: 0 2px 10px -8px #24624630;
  padding: 18px 18px 15px 22px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.blog-list .tags {
  color: #246246;
  font-size: .9rem;
  background: #C3D2B6;
  border-radius: 8px;
  padding: 3px 9px;
  display: inline-block;
}
.tag-filters {
  margin: 18px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex-direction: row;
}
.tag-filters strong {
  margin-right: 8px;
  color: #246246;
  font-size: .98rem;
}
.tag-filters span {
  background: #F1CB36;
  color: #246246;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.98rem;
  margin-right: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*********
* FAQ, STEPS
*********/
.faq-list li {
  background: #fff;
  border-radius: 14px 6px 18px 6px;
  box-shadow: 0 1px 10px -5px #24624620;
  padding: 16px 20px 16px 30px;
  margin-bottom: 10px;
}
.step-by-step-guide {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  counter-reset: stepct;
}
.step-by-step-guide li {
  background: #C3D2B6;
  border-radius: 16px 8px 22px 8px;
  box-shadow: 0 1px 10px -6px #24624635;
  padding: 15px 16px;
  font-size: 1.07rem;
  position: relative;
  align-items: center;
  display: flex;
  gap: 12px;
}
.step-by-step-guide li img {
  width: 32px; height: 32px;
  flex: 0 0 32px;
}

/*********
* FOOTER
*********/
footer {
  padding: 42px 0 31px 0;
  background: #246246;
  color: #fff;
  margin-top: 60px;
  border-radius: 38px 10px 0 0;
  font-size: 1.04rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.footer-brand img { max-height: 38px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #F1CB36;
  text-decoration: none;
  font-size: 1rem;
  transition: color .13s;
  border-radius: 6px;
  padding: 4px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #246246;
  background: #F1CB36;
}
.footer-contact {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}
.footer-contact p {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.footer-contact img {
  width: 18px; height: 18px;
  filter: brightness(1.2);
}

/*********
* COOKIE BANNER & COOKIE MODAL
*********/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #246246;
  color: #fff;
  z-index: 4000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 20px 17px 28px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 20px -6px #24624685;
  font-size: 1rem;
  animation: cookieSlideUp .8s cubic-bezier(.2,1.2,.6,1) 1;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
}
.cookie-banner .cookie-btn {
  background: #F1CB36;
  color: #246246;
  border: none;
  margin-right: 10px;
  border-radius: 24px 8px 24px 8px;
  padding: 8px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 3px;
  box-shadow: 0 2px 9px -7px #F1CB3666;
  transition: background .14s, color .14s;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #246246;
  border: 1px solid #246246;
  margin-right: 6px;
}
.cookie-banner .cookie-btn.settings {
  background: #246246;
  color: #F1CB36;
  border: 1px solid #F1CB36;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: #246246;
  color: #F1CB36;
  border: 1px solid #F1CB36;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #246246CC;
  backdrop-filter: blur(2px);
  z-index: 4500;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #246246;
  border-radius: 20px 8px 20px 8px;
  min-width: 320px;
  max-width: 98vw;
  padding: 24px 30px 28px 30px;
  position: relative;
  box-shadow: 0 4px 32px -12px #24624699;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalAppear .29s cubic-bezier(.23, 1.54, .88, 1) 1;
}
@keyframes cookieModalAppear {
  from { transform: scale(.88) translateY(80px); opacity: .4; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin: 0 0 10px 0;
  color: #246246;
  font-size: 1.18rem;
}
.cookie-modal .cookie-category {
  margin: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #C3D2B6;
  border-radius: 12px 6px 14px 6px;
  padding: 10px 14px;
}
.cookie-modal .cookie-category .toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: #F1CB36;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.2px solid #246246;
  transition: background .12s;
}
.cookie-modal .cookie-category .toggle:checked {
  background: #246246;
}
.cookie-modal .cookie-category .toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .13s;
}
.cookie-modal .cookie-category .toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-category.essential .toggle {
  background: #C3D2B6;
  border-color: #C3D2B6;
  cursor: not-allowed;
}
.cookie-modal .cookie-category.essential label {
  color: #246246;
}
.cookie-modal .cookie-action {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  padding: 8px 19px;
  border-radius: 24px 8px 24px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  color: #246246;
  background: #F1CB36;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover {
  background: #246246;
  color: #F1CB36;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  color: #246246;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0 4px;
}
.cookie-modal .cookie-close:focus, .cookie-modal .cookie-close:hover {
  color: #F1CB36;
}

/*********
* MISC
*********/
.notice {
  background: #F1CB36;
  color: #246246;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
  font-size: .97rem;
  margin-top: 10px;
}
::-webkit-input-placeholder { color: #8BA184; }
::-moz-placeholder { color: #8BA184; }
:-ms-input-placeholder { color: #8BA184; }
::placeholder { color: #8BA184; }

/*********
* RESPONSIVE DESIGN
*********/
@media (max-width: 950px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .card {
    min-width: 190px;
    font-size: .98rem;
  }
}
@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand { margin-bottom: 2px; }
}
@media (max-width: 760px) {
  section, .section {
    padding: 29px 0;
    margin-bottom: 38px;
  }
  .feature-grid,
  .service-list,
  .blog-list,
  .icon-list,
  .faq-list,
  .card-container,
  .content-grid,
  .next-steps {
    gap: 16px;
  }
}
@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
  .card {
    padding: 22px 10px;
    min-width: 140px;
  }
  .testimonial-card {
    padding: 14px 9px;
    font-size: 1rem;
  }
  .value-block, .use-case-block {
    padding: 12px 9px;
  }
  .section, section {
    padding: 20px 0;
    margin-bottom: 25px;
  }
  .feature-grid li, .icon-list li, .service-list li {
    padding: 12px 8px;
  }
  .blog-list li {
    padding: 10px 8px 9px 13px;
  }
  .faq-list li, .step-by-step-guide li {
    padding: 10px 7px 10px 17px;
  }
}
@media (max-width: 768px) {
  .content-grid, .section .container, .container, .footer-contact {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .main-nav { display: none; }
}
@media (max-width: 420px) {
  .testimonial-card { max-width: 96vw; font-size: .95rem; }
  .footer-brand img, .logo img { max-height: 28px; }
  .cookie-banner { flex-direction: column; gap: 8px; padding: 10px 8px; font-size: .97rem; }
  .cookie-modal { padding: 11px 7px 13px 9px; font-size: .97rem; }
}

/* Artistic, creative brush effect on H1, H2 headings */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1:after, h2:before {
  content: '';
  display: block;
  position: absolute;
}
h1:after {
  left: -10px;
  top: 60%;
  width: 90px;
  height: 24px;
  z-index: -1;
  background: #F1CB36;
  opacity: .25;
  border-radius: 12px;
  transform: skew(-18deg) rotate(-4deg);
}
h2:before {
  left: -14px;
  top: 70%;
  width: 82px;
  height: 18px;
  z-index: -1;
  background: #C3D2B6;
  opacity: .28;
  border-radius: 9px;
  transform: skew(-14deg) rotate(-2deg);
}

/* Decorative accent on .testimonial-card */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card:before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 90px;
  height: 90px;
  background: #F1CB3633;
  border-radius: 50%;
  z-index: 0;
}
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* Artistic underline dash on highlighted strong */
strong {
  position: relative;
}
strong::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 14px;
  height: 4px;
  background: #F1CB36;
  border-radius: 3px;
  opacity: 0.48;
}

/* Animations and transitions */
.btn-primary, .cookie-btn, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: background .18s, color .18s, box-shadow .20s, transform .18s;
}
.btn-primary:active { transform: scale(.97) rotate(-1deg); }
.feature-grid li:hover, .icon-list li:hover, .service-list li:hover, .value-block:hover, .use-case-block:hover {
  box-shadow: 0 8px 26px -9px #24624644;
  transform: translateY(-2px) scale(1.01) rotate(-2.5deg);
}

/*********
* CUSTOM CHECKMARK FOR FEATURE GRID
*********/
.feature-grid li::before {
  content: '';
  display: none;
}

/*********
* FORM ELEMENTS
*********/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #C3D2B6;
  padding: 7px 14px;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border-color: #F1CB36;
  outline: none;
}
button {
  cursor: pointer;
}

/*********
* UTILITY, Hide visually
*********/
.visually-hidden,
.sr-only {
  position: absolute;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  overflow: hidden;
}
