/* RESET & BASE TYPOGRAPHY --------------------------------------------------- */

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: #F7F6F3;
  color: #153448;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #00725f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #009981;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #153448;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.375rem;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #153448;
}
strong, b { font-weight: bold; }
em, i { font-style: italic; }

ul, ol {
  padding-left: 24px;
}

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

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
}

/* FLEXBOX LAYOUTS ----------------------------------------------------------- */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

/* MOBILE RESPONSIVE FLEX DIRECTION SWITCHES */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* STRUCTURAL SECTIONS --------------------------------------------------------*/

header {
  background: #ffffff;
  border-bottom: 4px solid #153448;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
header img {
  height: 38px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav .btn-primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #153448;
  display: none;
  cursor: pointer;
  z-index: 110;
  padding: 8px 12px;
}
@media (max-width: 960px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU --------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #153448;
  color: #fff;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.40s cubic-bezier(.77,0,.18,1);
  box-shadow: -6px 0 32px rgba(0,0,0,0.20);
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  margin: 20px 24px 0 0;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #009981;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 48px;
  gap: 24px;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  padding: 12px 0;
  border: none;
  width: 100%;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #009981;
  background: rgba(0,153,129,0.08);
}

@media (min-width: 961px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

main {
  min-height: 50vh;
}

footer {
  background: #153448;
  color: #fff;
  padding: 44px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
footer .brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  max-width: 320px;
}
footer img {
  height: 36px;
  margin-bottom: 4px;
}
footer .footer-links a {
  color: #fff;
  font-size: 0.98rem;
  margin-right: 16px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  font-weight: 500;
}
footer .footer-links a:hover { color: #009981; }
footer .tagline, .footer .address, .footer .contact-email {
  font-size: 0.96rem;
  color: #dbedec;
  margin-bottom: 0;
}
footer .address { margin-top: 6px; }
footer .contact-email {
  color: #90eee2;
  font-size: 0.97rem;
}
@media (max-width: 820px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
  }
}

/* HERO SECTIONS ------------------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #F7F6F3 60%, #ddebed 100%);
  border-bottom: 6px solid #153448;
  min-height: 340px;
  padding: 56px 0 28px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero h1 {
  color: #153448;
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.11;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.13rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .hero {
    min-height: 180px;
    padding: 42px 0 24px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* FEATURES & CARDS --------------------------------------------------------- */
.features, .service-list, .testimonial-list {
  margin-bottom: 18px;
}
.features h2 { font-size: 1.6rem; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 12px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border: 2.5px solid #153448;
  border-radius: 22px;
  padding: 30px 26px 26px 26px;
  min-width: 220px;
  min-height: 195px;
  box-shadow: 0 2px 28px rgba(21,52,72,0.06), 0 1px 0 #eaecee;
  flex: 1 1 256px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 3px;
}
.feature-grid h3 {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #153448;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 1rem;
  color: #153448;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 160px;
    padding: 18px 14px 16px 14px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    gap: 12px;
  }
}

.card {
  background: #fff;
  border: 2px solid #e1e4e6;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,52,72,0.05);
  padding: 20px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
}

.service-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list > div, .services-list .course-box {
  background: #fff;
  border: 2px solid #153448;
  border-radius: 18px;
  padding: 28px 26px 18px 28px;
  box-shadow: 0 2px 18px rgba(0,114,95,0.06);
  flex: 1 1 288px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list h3, .services-list h2 {
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #153448;
}
.service-list .price, .services-list .price {
  font-size: 1.22rem;
  color: #009981;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 880px) {
  .service-list, .services-list {
    gap: 14px;
  }
  .service-list > div, .services-list .course-box {
    min-width: 180px;
    padding: 18px 10px 14px 12px;
  }
}
@media (max-width: 650px) {
  .service-list, .services-list {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .service-list > div, .services-list .course-box {
    width: 100%;
  }
}

.value-list, .learning-objectives, .video-lessons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 1.04rem;
}
.value-list li::before, .learning-objectives li::before, .video-lessons li::before {
  content: "■";
  color: #009981;
  display: inline-block;
  margin-right: 10px;
  font-size: 0.9em;
  font-weight: bolder;
}

/* TESTIMONIALS -------------------------------------------------------------- */
.testimonials {
  background: #e3efe7;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(21,52,72,0.05);
  margin-bottom: 50px;
}
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border: 2px solid #009981;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(0,153,129,0.08);
  padding: 24px 22px 18px 22px;
  min-width: 240px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 6px 24px rgba(0,153,129,0.19);
  border-color: #00725f;
}
.testimonial-card p {
  font-size: 1.03rem;
  color: #152130;
  margin-bottom: 0;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #153448;
  font-weight: 600;
  font-size: 1.06em;
  margin-top: 8px;
}
.rating {
  color: #009981;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .testimonials .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/* BLOG POSTS -------------------------------------------------------------- */
.blog-posts .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.blog-posts article {
  background: #fff;
  border: 2px solid #153448;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(21,52,72,0.05);
  padding: 18px 20px 14px;
  min-width: 200px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-posts article h2 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.blog-posts .category {
  color: #009981;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  margin-top: 3px;
}
.featured-article {
  background: #009981;
  color: #fff;
  border-radius: 13px;
  padding: 22px 20px 14px 20px;
  box-shadow: 0 2px 14px rgba(0,153,129,0.06);
  margin-top: 16px;
  letter-spacing: 0.02em;
  font-size: 1.04em;
}
.featured-article h3 {
  color: #ffffff;
  font-size: 1.07em;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .blog-posts .post-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* CTA BANNER --------------------------------------------------------------- */
.cta {
  background: #153448;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 22px rgba(21,52,72,0.11);
  padding: 54px 0 52px 0;
  margin-top: 54px;
  margin-bottom: 56px;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.cta h2 { color: #fff; font-size: 1.6em; }
.cta p { color: #e2faf3; }
@media (max-width: 700px) {
  .cta {
    margin-top: 32px;
    padding: 34px 0 32px 0;
  }
}

/* BUTTONS & LINKS ----------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #009981;
  color: #fff !important;
  border: none;
  border-radius: 12px 24px 12px 24px;
  padding: 14px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0,153,129,0.13);
  transition: background 0.18s, color 0.14s, box-shadow .18s, transform 0.13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #00725f;
  color: #fff;
  box-shadow: 0 6px 27px rgba(0,153,129,0.23);
  transform: translateY(-1px) scale(1.04);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f7f6f3;
  color: #009981 !important;
  border: 2px solid #009981;
  border-radius: 14px 22px 14px 22px;
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06em;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, border-color .17s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #009981;
  color: #fff !important;
  border-color: #00725f;
}

/* PRICING & ACCENT TEXT ----------------------------------------------------- */
.price {
  color: #009981;
  font-size: 1.11em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 8px;
}

/* FORMS & ADDRESS/PAGE INFO ------------------------------------------------- */
.address-section, .email-section, .phone-section, .opening-hours {
  margin-bottom: 10px;
  font-size: 1em;
}
.text-section {
  margin-bottom: 16px;
  font-size: 1.02em;
}
.next-steps {
  margin-top: 14px;
  margin-bottom: 20px;
  color: #009981;
  font-style: italic;
  font-weight: 600;
  font-size: 1em;
}

/* OL/UL STYLES -------------------------------------------------------------- */
.text-section ol, .text-section ul {
  margin-bottom: 18px;
}
.text-section ol {
  counter-reset: item;
}
.text-section ol li {
  counter-increment: item;
  position: relative;
}
.text-section ol li::before {
  content: counter(item) ". ";
  color: #009981;
  font-weight: bold;
  left: 0px;
  position: absolute;
  margin-left: -28px;
  width: 24px;
  text-align: right;
}

/* MODAL / COOKIE CONSENT BANNER --------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2200;
  background: #153448;
  color: #fff;
  padding: 28px 22px 24px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  box-shadow: 0 0 16px rgba(21,52,72,0.14);
  font-size: 1.03em;
  flex-wrap: wrap;
}
.cookie-banner .banner-content {
  max-width: 580px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  margin: 0 6px;
  padding: 10px 22px;
  border-radius: 16px 16px 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.14s, color 0.10s;
}
.cookie-banner .accept-btn {
  background: #009981;
  color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #00725f;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #153448;
  border: 2px solid #009981;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #009981;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #F7F6F3;
  color: #153448;
  border: 2px solid #153448;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #009981;
  color: #fff;
  border-color: #009981;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 10px 16px 10px;
  }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  z-index: 2300;
  background: #fff;
  color: #153448;
  min-width: 320px;
  width: 96vw;
  max-width: 400px;
  padding: 32px 26px 26px 26px;
  border: 3px solid #153448;
  border-radius: 24px 32px 18px 18px;
  box-shadow: 0 12px 60px rgba(0,114,95,0.14);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.33s cubic-bezier(.77,0,.18,1), opacity 0.19s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.cookie-modal h3 {
  font-size: 1.25em;
  margin-bottom: 22px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04em;
  padding: 6px 0;
}
.cookie-category input[type='checkbox'] {
  accent-color: #009981;
  width: 1.2em;
  height: 1.2em;
}
.cookie-category .essential {
  color: #009981;
  font-weight: 600;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: #153448;
  font-size: 1.4em;
  position: absolute;
  right: 22px;
  top: 16px;
  cursor: pointer;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 9px 18px;
  font-size: 1em;
  border-radius: 11px 23px 11px 18px;
  border: none;
  background: #009981;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #00725f;
}

@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    max-width: 96vw;
    padding: 17px 7vw 13px 7vw;
    border-width: 2px;
  }
}

/* ANIMATIONS --------------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInTop {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%, 60%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-modal.open {
  animation: fadeInModal 0.38s cubic-bezier(.6,.2,.2,1);
}

.btn-primary, .btn-secondary {
  animation: fadeInUp 0.66s cubic-bezier(.23,.7,.36,1);
}

/* MISC ELEMENTS ------------------------------------------------------------ */
::-webkit-input-placeholder { color: #b2b8bd; }
::-moz-placeholder { color: #b2b8bd; }
:-ms-input-placeholder { color: #b2b8bd; }
::placeholder { color: #b2b8bd; }

hr {
  border: none;
  border-top: 2px solid #ddebed;
  margin: 32px 0;
}

/* SPACING/ALIGNMENT: Ensure required margins and gaps */
.section,
.features,
.services,
.testimonials,
.cta,
footer {
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.card,
.card-container > * {
  margin-bottom: 20px !important;
}
.feature-grid > div,
.service-list > div,
.course-box,
.testimonial-card,
.blog-posts article {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .service-list, .services-list, .content-grid, .testimonial-list, .blog-posts .post-list {
  gap: 20px !important;
}

/* Keep mobile devices readable and aligned */
@media (max-width: 720px) {
  .container, .section {
    padding: 0 6vw;
  }
  h1 {
    font-size: 1.13rem;
  }
}

/* GEOMETRIC ELEMENTS --------------------------------------------------------- */

/* Add a subtle geometric background effect using SVG or pseudo-elements for hero */
.hero::before {
  content: '';
  display: block;
  position: absolute;
  left: 60vw;
  top: -80px;
  width: 340px;
  height: 340px;
  background: url('../assets/geometric-bg.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.13;
  pointer-events: none;
}
@media (max-width:1020px) {
  .hero::before {
    width: 170px;
    height: 170px;
    left: 60vw;
  }
}
@media (max-width:600px) {
  .hero::before {
    display: none;
  }
}
.feature-grid > div::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 14px;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="24" height="24" rx="6" fill="%23009981" fill-opacity=".07" stroke-width="0"/></svg>') no-repeat center/contain;
  z-index: 1;
}
@media (max-width:650px) {
  .feature-grid > div::after {
    display: none;
  }
}