/* ================= 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;
}
body {
  line-height: 1.5;
  background: #FAF9F6;
  color: #155A8A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #155A8A;
  text-decoration: none;
  transition: color .2s;
  outline: none;
}
a:focus, a:hover {
  color: #27A84C;
  text-decoration: underline;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 10px 14px;
  border-bottom: 1px solid #E7EAF0;
}
th {
  background: #155A8A;
  color: #fff;
  font-weight: bold;
}
caption {
  font-size: 18px;
  font-weight: 700;
  color: #155A8A;
  margin-bottom: 8px;
}

/* ================= BRAND FONT FACE =================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&family=Roboto:wght@400;500;700&display=swap');

/* ================= TYPOGRAPHY & COLOR SYSTEM ============ */
h1, .hero-section h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #155A8A;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #17712F;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #155A8A;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232323;
  margin-bottom: 20px;
  line-height: 1.65;
}
strong {
  font-weight: 700;
  color: #17712F;
}
.subheadline {
  color: #4A94CF;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  margin-bottom: 25px;
  letter-spacing: 0.4px;
}

/* ========= DECORATIVE AND CREATIVE ELEMENTS ================ */
:root {
  --primary: #155A8A;
  --primary-lighter: #4A94CF;
  --secondary: #FAF9F6;
  --accent: #27A84C;
  --accent-dark: #17712F;
  --bg-section: #FFFFFF;
  --box-shadow-main: 0 2px 16px 0 rgba(21,90,138,0.08), 0 1.5px 10px 0 rgba(39,168,76,0.07);
  --card-radius: 26px;
}

/* ================== LAYOUT & UTILITIES ===================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow-main);
  position: relative;
  z-index: 1;
}
.cta-section {
  background: #F9FFF8;
  margin-bottom: 60px;
  padding: 40px 20px 48px 20px;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow-main);
  position: relative;
}
.hero-section {
  background: linear-gradient(135deg, #fad961 0%, #4A94CF 100%);
  color: #155A8A;
  padding: 64px 0 40px 0;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 32px 0 rgba(39,168,76,0.09);
  position: relative;
  overflow: hidden;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  text-align: center;
}

/* ===================== FLEXBOX PATTERNS =================== */
.card-container, .team-grid, .feature-grid, .service-list, .approach-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow-main);
  padding: 32px 20px 24px 20px;
  margin-bottom: 20px;
  min-width: 260px;
  position: relative;
  z-index: 1;
  transition: transform .12s, box-shadow .18s;
}
.card:hover, .feature-item:hover, .service-item:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 6px 38px 0 rgba(21,90,138,0.11), 0 2.5px 20px 0 rgba(39,168,76,0.12);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item, .team-member, .service-item, .approach-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 1.5px 10px 0 rgba(21,90,138,0.06);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .14s, transform .13s;
}
.service-item {
  gap: 10px;
}
.team-member img {
  border-radius: 50%;
  width: 68px;
  height: 68px;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 14px 0 rgba(39,168,76,0.09);
}

/********************* Spacing and Hierarchy *********************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 24px;
  background: #fffdfa;
  box-shadow: 0 2px 16px 0 rgba(21,90,138,0.09);
  border-left: 5px solid #27A84C;
  border-radius: 0 18px 18px 0;
  font-size: 1.1rem;
  color: #232323;
}
.testimonial-card p {
  color: #155A8A;
  font-weight: 500;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #555;
  font-size: 0.95rem;
}
.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.rating-summary {
  margin: 18px 0 0 0;
  font-size: 1.05rem;
  color: #17712F;
  font-weight: 600;
}

/********************** Button Styles **********************/
.cta-btn {
  background: linear-gradient(90deg, #155A8A 65%, #27A84C 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 36px;
  border-radius: 36px;
  border: none;
  margin-top: 24px;
  margin-bottom: 8px;
  box-shadow: 0 2px 22px 0 rgba(21,90,138,0.09);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: box-shadow .19s, background .14s, color .2s;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #27A84C 55%, #155A8A 100%);
  color: #fffdfa;
  box-shadow: 0 8px 32px 0 rgba(39,168,76,0.13), 0 3px 16px 0 rgba(21,90,138,0.10);
}

button, .btn {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  background: #27A84C;
  color: #fff;
  border-radius: 24px;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1.2px 8px 0 rgba(21,90,138,0.10);
  cursor: pointer;
  margin: 3px;
  transition: background .22s, color .18s, box-shadow .18s;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #155A8A;
  color: #fff;
}

/* =========== TAGS/CHIP STYLES ========= */
.tag {
  display: inline-flex;
  background: #EFFBEE;
  color: #27A84C;
  font-size: 0.96rem;
  border-radius: 19px;
  padding: 7px 16px;
  margin-right: 13px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/****************** Tables (Schedule & Pricing) *********************/
.schedule-table th, .price-overview th, .bootcamp-schedule th, .price-table th {
  background: #17712F;
  color: #fff;
}
.schedule-table tr, .price-overview tr, .bootcamp-schedule tr, .price-table tr {
  background: #fff;
  border-radius:8px;
}
.schedule-table td, .price-overview td, .bootcamp-schedule td, .price-table td {
  color: #232323;
}

/***************** Social & Footer ******************/
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 20px 20px 20px;
  background: #155A8A;
  color: #fff;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  margin-right: 10px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  opacity: 0.92;
}
.footer-links a:hover {
  color: #ffe971;
  text-decoration: underline;
}
.contact-info {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a img {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(21,90,138,0.09);
  transition: box-shadow .16s, background .14s;
}
.social-links a:hover img {
  background: #27A84C;
  box-shadow: 0 4px 20px rgba(39,168,76,0.13);
}

/*************** NAVIGATION & HEADER *****************/
header {
  position: relative;
  width: 100vw;
  background: #fff;
  z-index: 97;
  box-shadow: 0 4px 24px 0 rgba(21,90,138,0.09);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  padding: 0 24px;
  min-height: 68px;
}
.main-nav a img {
  height: 34px;
  margin-right: 20px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #155A8A;
  opacity: 0.99;
  position: relative;
  transition: color .22s;
  margin-right: 7px;
  padding: 6px 10px;
}
.main-nav a.cta-btn {
  margin-left: auto;
  margin-right: 0;
  background: linear-gradient(90deg,#27A84C 70%,#155A8A 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: 0.06em;
  border-radius: 24px;
  padding: 7px 30px;
  font-size: 1rem;
  box-shadow: 0 1px 8px 0 rgba(21,90,138,0.08);
}
.main-nav a.cta-btn:hover {
  background: linear-gradient(90deg, #155A8A 60%, #27A84C 100%);
  color: #fff;
}

/***************** Burger Menu (Mobile) ******************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #27A84C;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 110;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(39,168,76,0.19);
  transition: background .2s, color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #155A8A;
  color: #ffe971;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,90,138,0.98);
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 38px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.77,.2,.26,1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileMenuIn .32s cubic-bezier(.77,.2,.26,1);
}
@keyframes mobileMenuIn {
  from { transform: translateX(100%); opacity:0; }
  to { transform: translateX(0); opacity:1; }
}
.mobile-menu-close {
  background: #fff;
  color: #155A8A;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 2px 12px 0 rgba(39,168,76,0.15);
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #27A84C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 54px;
  width: 100%;
  padding-left: 33px;
  gap: 21px;
}
.mobile-nav a {
  color: #FFE971;
  font-size: 1.26rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.025em;
  padding: 10px 4px;
  border-radius: 6px;
  transition: color .19s, background .13s;
  width: 100%;
  display: inline-block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #27A84C;
  color: #fff;
}

/************* Cookie Consent Banner & Modal ********************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 12000;
  background: #fffdfa;
  color: #155A8A;
  border-top: 4px solid #27A84C;
  box-shadow: 0 -4px 24px rgba(21,90,138,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 24px;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  animation: cookieIn .38s cubic-bezier(.23,1.04,.14,.99);
}
@keyframes cookieIn {
  from { transform: translateY(70px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btn {
  background: #155A8A;
  color: #fffdfa;
  border-radius: 25px;
  padding: 11px 25px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  margin: 0 7px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #27A84C;
  color: #fffdfa;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #155A8A;
  border: 2px solid #4A94CF;
  font-weight: 600;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 13000;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,90,138,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .19s;
}
@keyframes modalFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 18px;
  max-width: 420px; width: 92vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 10px 60px rgba(21,90,138,0.17);
  font-family: 'Roboto', Arial;
  color: #155A8A;
  position: relative;
  z-index: 13010;
}
.cookie-modal h2 {
  margin-bottom: 15px;
  font-size: 1.32rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #27A84C;
  width: 18px;
  height: 18px;
}
.cookie-category .category-name {
  font-weight: 700;
  margin-right: 6px;
  font-size: 1.04rem;
}
.cookie-modal .category-desc {
  font-size: 0.96rem;
  color: #144069;
}
.cookie-modal .cookie-btn {
  margin: 14px 7px 0 0;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  color: #155A8A;
  font-size: 1.8rem;
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #27A84C;
}

/************** Address/Contact Section ***************/
.contact-section .address-details,
.contact-section .contact-email,
.contact-section .open-hours {
  font-size: 1.11rem;
  color: #17712F;
  margin-bottom: 17px;
  background: #f7ffe8;
  border-radius: 12px;
  padding: 10px 16px 6px 16px;
  box-shadow: 0 0.7px 5px 0 rgba(39,168,76,0.065);
}
.contact-section .contact-email a {
  color: #155A8A;
  text-decoration: underline;
  transition: color .17s, background .09s;
  font-weight: 600;
}
.contact-section .contact-email a:hover { color: #27A84C; }

/************* Legal Section + General Text-Section ******/
.legal-section {
  background: #fffdfa;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow-main);
  margin-bottom: 60px;
  padding: 48px 26px 36px 26px;
}
.text-section {
  margin-bottom: 30px;
  margin-top: 8px;
}
.text-section ul, .text-section ol {
  margin-bottom: 20px;
  margin-left: 24px;
}
.text-section li {
  margin-bottom: 10px;
  color: #155A8A;
  font-size: 1.06rem;
}
.text-section strong {
  color: #17712F;
}

/********* Google Maps Placeholder (Creative) ******/
.google-maps-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #EFF6FF;
  border-radius: 14px;
  padding: 22px 18px;
  margin: 13px 0 25px 0;
  box-shadow: 0 2px 14px rgba(21,90,138,0.08);
}
.google-maps-placeholder a {
  background: #27A84C;
  color: #fff;
  border-radius: 18px;
  padding: 10px 18px;
  margin-top: 13px;
  font-weight: 600;
  box-shadow: 0 1px 10px 0 rgba(39,168,76,0.10);
  font-size: 1.05rem;
  transition: background .17s, color .17s;
}
.google-maps-placeholder a:hover {
  background: #155A8A;
}

/********* Service Details in Ernährungsberatung ********/
.service-details ul {
  margin-bottom: 14px;
}
.service-details li {
  color: #222c;
  font-size: 1.03rem;
}

/********* Approach Grid for Ernährungsberatung ********/
.approach-grid {
  margin-top: 18px;
}
.approach-item {
  flex: 1 1 210px;
  background: #fafcfa;
  border-left: 4px solid #27A84C;
}

/********* Bootcamp Lists/Benefits ********/
.bootcamp-benefits, .result-highlights ul, .workout-examples ul {
  margin-left: 22px;
  margin-bottom: 17px;
}
.bootcamp-benefits li, .result-highlights li, .workout-examples li {
  color: #155A8A;
}
.workout-examples, .result-highlights, .meeting-points {
  margin-bottom: 18px;
}

/********* Before-After Quotes (Bootcamp) *************/
.before-after-quotes {
  margin-top: 12px;
  background: #f7ffe8;
  color: #27A84C;
  border-left: 4px solid #27A84C;
  padding: 12px 16px;
  border-radius: 12px;
  font-style: italic;
}

/********* Price Overview & Table Separators *******/
.price-overview tr:nth-child(even), .price-table tr:nth-child(even) { background: #f7ffe8; }
.price-overview th, .price-table th {
  background: #155A8A;
  color: #fff;
}

/***************** Animations & Microinteractions *******************/
.card, .feature-item, .testimonial-card, .service-item, .approach-item {
  transition: box-shadow .17s, transform .15s, border .18s;
}
.card:hover, .feature-item:hover, .service-item:hover, .approach-item:hover {
  box-shadow: 0 8px 40px 0 rgba(21,90,138,0.11), 0 3.2px 22px 0 rgba(39,168,76,0.14);
  border-left: 6px solid #27A84C;
}
.testimonial-card:hover {
  background: #F4FFF8;
}

/******************** Responsive Design (Mobile First) ****************/ 
@media (max-width: 1170px) {
  .container { max-width: 97vw; }
  .main-nav { gap: 13px; padding: 0 6px; }
}
@media (max-width: 950px) {
  .card-container, .team-grid, .feature-grid, .service-list, .approach-grid, .content-grid {
    gap: 16px;
  }
  .footer-wrapper { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  html, body { font-size: 15px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-section .content-wrapper {
    min-height: 230px;
    padding: 8px 0 9px 0;
  }
  .hero-section { padding: 28px 0 22px 0; margin-bottom: 40px; }
  h1, .hero-section h1 { font-size: 1.88rem; }
  h2 { font-size: 1.26rem; }
  .card, .feature-item, .service-item, .approach-item {
    min-width: 0;
    padding: 19px 13px 16px 13px;
    font-size: 1rem;
  }
  .section, .cta-section, .legal-section { padding: 27px 8px; }
  .card-container, .team-grid, .feature-grid, .service-list, .approach-grid, .content-grid, .testimonials-slider, .testimonial-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonials-slider, .testimonial-list {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .google-maps-placeholder {
    padding: 11px 8px;
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  html, body { font-size: 14px; }
  .footer-wrapper { padding: 26px 6px 10px 6px; }
  .section, .cta-section, .legal-section { padding: 18px 3px; }
  .cookie-banner { padding: 12px 5px; gap: 8px; font-size: 0.97rem; }
}

/************ HIDE Burger (default), Show desktop nav **********/
.mobile-menu-toggle {
  display: none;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex; }
}
/************ Hide cookie modal by default ***********/
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-overlay.open {
  display: flex;
}

/*********** Miscellaneous Artistic Touches ***********/
h1, h2, h3, h4[class], .tag, .cta-btn, .main-nav a, .footer-links a {
  letter-spacing: 0.02em;
  text-shadow: 0 1.5px 0.5px #ffe97111;
}
.card:before, .feature-item:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; left: 12px;
  width: 38px; height: 6px;
  background: #27A84C;
  border-radius: 16px;
  opacity: 0.12;
}
.card:after, .feature-item:after {
  content: '';
  display: block;
  position: absolute;
  top: -16px; right: 22px;
  width: 24px; height: 6px;
  background: #155A8A;
  border-radius: 13px;
  opacity: 0.10;
}

/***** Visually hide element (for accessibility if needed) *****/
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
