/* ========== CSS RESET & BASE ========== */
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 {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F6F6F2;
  scroll-behavior: smooth;
}
body {
  color: #222;
  background: #F6F6F2;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A5632;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #47B15C;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}

/* ========== BRAND FONTS ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
p, li, span, td, th {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ========== CONTAINERS & SPACING ========== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
  }
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(26,86,50,0.07);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 16px;
}
.logo img {
  height: 54px;
  transition: transform 0.2s cubic-bezier(.72,.11,.36,1);
}
.logo:focus img, .logo:hover img {
  transform: scale(1.08) rotate(-3deg);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  position: relative;
  color: #1A5632;
  padding: 5px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #47B15C;
  border-radius: 2px;
  transition: width 0.22s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:focus:after, .main-nav a:hover:after {
  width: 100%;
}
.main-nav a:focus, .main-nav a:hover {
  color: #47B15C;
}
@media (max-width: 985px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 850px) { .main-nav { display: none; } }

.cta.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #47B15C;
  color: #fff;
  border-radius: 28px;
  padding: 12px 30px;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(71,177,92,0.13);
  border: none;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.25s, transform 0.12s;
  outline: none;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0,0,0,0.09);
  margin-left: 18px;
  position: relative;
}
.cta.primary:active { transform: scale(0.97); }
.cta.primary:hover, .cta.primary:focus {
  background: #1A5632;
  box-shadow: 0 8px 24px rgba(26,86,50,0.15);
}
@media (max-width: 850px) {
  .cta.primary { margin-left: 0; }
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: #1A5632;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.1rem;
  padding: 4px 16px;
  cursor: pointer;
  margin-left: 12px;
  z-index: 101;
  transition: background 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #47B15C;
  box-shadow: 0 2px 16px rgba(71,177,92,0.12);
}
@media (max-width: 850px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 340px;
  height: 100vh;
  background: #1A5632;
  color: #fff;
  z-index: 102;
  padding: 34px 0 0 0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.65,-0.01,.55,1.17);
  box-shadow: -4px 0 20px 2px rgba(18,55,34,0.18);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #FFF;
  padding: 8px 24px 10px 34px;
  cursor: pointer;
  align-self: flex-end;
  line-height: 1;
  transition: color 0.18s;
  z-index: 50;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #47B15C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 26px;
  padding: 0 32px 24px 38px;
}
@media (max-width: 400px) {
  .mobile-menu {
    max-width: 100vw;
    width: 100vw;
    padding-top: 18px;
  }
  .mobile-nav {
    gap: 22px;
    padding: 0 14px 16px 20px;
  }
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .05em;
  padding: 6px 0;
  border-radius: 4px;
  transition: background 0.18s, color 0.2s;
  display: block;
  text-shadow: 0 2px 10px rgba(20,30,30,0.12);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #47B15C;
  color: #F6F6F2;
}

/* Overlay for menu when open */
.mobile-menu-backdrop {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.32);
  z-index: 101;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(90deg, #47B15C 16%, #F6F6F2 100%);
  color: #212d22;
  padding: 60px 0 48px 0;
  display: flex;
  align-items: center;
  min-height: 320px;
  border-bottom: 8px solid #47B15C;
  box-shadow: 0 7px 32px 0 rgba(26,86,50,0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.65rem;
  color: #1A5632;
  line-height: 1.07;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #23442d;
  margin-bottom: 30px;
}
@media (max-width: 985px) {
  .hero { padding: 36px 0 34px 0; }
  .hero h1 { font-size: 2rem; margin-bottom: 12px; }
}

/* ========== FEATURE & SERVICE LISTS ========== */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px rgba(71,177,92,0.07);
  padding: 28px 18px 22px 18px;
  min-width: 210px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
  border-left: 6px solid #47B15C;
  transition: box-shadow 0.16s, transform 0.20s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 12px 36px rgba(71,177,92,0.17);
  transform: translateY(-4px) scale(1.025);
  border-color: #1A5632;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 8px #E6F8EC);
}
.feature-grid h3 {
  color: #1A5632;
  font-weight: 800;
  font-size: 1.22rem;
}
.feature-grid p {
  color: #2b3e30;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: unset;
    border-left: 4px solid #47B15C;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 6px;
}
.service-list li {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 26px rgba(71,177,92,0.05);
  padding: 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li img {
  width: 36px;
  height: 36px;
  margin-right: 13px;
  vertical-align: middle;
}
.service-name, .service-list strong {
  color: #1A5632;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.service-desc {
  color: #222;
  font-size: 1rem;
}
.service-price {
  color: #47B15C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  margin-top: 7px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .service-list {
    gap: 20px;
  }
  .service-list li {
    padding: 14px 9px;
    gap: 4px;
    font-size: 0.98rem;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 28px 34px 22px 34px;
  border-radius: 22px;
  box-shadow: 0 7px 24px rgba(26,86,50,0.13);
  border-left: 6px solid #47B15C;
  margin-bottom: 20px;
  margin-top: 12px;
  transition: box-shadow 0.2s, transform 0.15s;
  min-width: 260px;
  max-width: 570px;
}
.testimonial-card p {
  color: #121F16;
  font-size: 1.12rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  line-height: 1.44;
}
.client-name {
  color: #1A5632;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  margin-top: 6px;
}
.testimonial-card:focus-within, .testimonial-card:hover {
  box-shadow: 0 18px 44px 0 rgba(71,177,92,0.18);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 850px) {
  .testimonial-card {
    padding: 17px 13px 13px 15px;
    max-width: 100%;
  }
}

/* ========== CTA ACTION SECTIONS ========== */
section .cta.primary {
  margin-top: 18px;
}

/* ========== TABLES ========== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 3px 18px rgba(26,86,50,0.09);
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 26px;
  margin-top: 18px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 2px solid #f5f9f4;
  font-size: 1rem;
}
.comparison-table th {
  background: #47B15C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 1.04rem;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td, .comparison-table th {
    display: block;
    width: 100%;
  }
  .comparison-table th, .comparison-table td {
    border-bottom: 1px solid #eef2e8;
    padding: 10px 6px;
  }
  .comparison-table th { font-size: 1rem; }
}

/* ========== FOOTER ========== */
footer {
  background: #1A5632;
  color: #fff;
  padding: 40px 0 10px 0;
  border-top: 8px solid #47B15C;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: color 0.22s;
  padding: 1px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #47B15C;
  text-decoration: underline;
}
footer p {
  color: #D6F8DC;
  font-size: 0.99rem;
  text-align: center;
}
@media (max-width: 600px) {
  .footer-nav { gap: 14px; font-size: 0.92rem; }
  footer { padding: 28px 0 6px 0; }
}

/* ========== LAYOUTS: FLEX/GRID CLASSES ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 22px 17px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 28px rgba(71,177,92,0.10);
}
.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: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== CONTACT DETAILS & INFO NOTE ========== */
.contact-details {
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 1.08rem;
}
.contact-details strong {
  color: #1A5632;
  font-family: 'Montserrat', Arial, sans-serif;
}
.info-note {
  background: #47B15C;
  color: #fff;
  border-radius: 12px;
  padding: 13px 18px;
  margin: 15px 0 0 0;
  font-size: 1.07rem;
  box-shadow: 0 2px 13px rgba(71,177,92,0.10);
}
.info-note p { color: inherit; }

/* ========== QUOTES/BLOCKQUOTES ========== */
blockquote {
  background: #F6F6F2;
  border-left: 6px solid #47B15C;
  border-radius: 11px;
  padding: 20px 22px;
  color: #1A5632;
  font-size: 1.18rem;
  font-style: italic;
  margin: 28px 0 18px 0;
  box-shadow: 0 5px 12px rgba(71,177,92,0.058);
}
blockquote .expert-quote {
  display: block;
  margin-top: 10px;
  color: #23442d;
  font-size: 1.01rem;
}

/* ========== SESSION HIGHLIGHTS (Yoga) ========== */
.session-highlights {
  margin-top: 26px;
  background: #f4fff5;
  border-left: 4px solid #47B15C;
  border-radius: 10px;
  padding: 14px 24px;
  box-shadow: 0 1px 7px rgba(71,177,92,0.08);
}
.session-highlights h3 {
  margin-bottom: 8px;
}
.session-highlights ul {
  padding-left: 16px;
  margin-top: 0;
  list-style-type: disc;
}
.session-highlights li {
  color: #1a5632;
  font-size: 1.01rem;
  margin-bottom: 3px;
}

/* ========== ANIMATIONS ========== */
.cta, .cta.primary, .card, .feature-grid > div, .testimonial-card, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s cubic-bezier(.65,.21,.36,1.02),
    background 0.17s cubic-bezier(.65,.21,.36,1.02),
    color 0.18s, transform 0.11s;
}

/* Subtle scale on focus */
.card:focus-within, .feature-grid > div:focus-within, .cta:focus, .cta.primary:focus {
  outline: 2px solid #47B15C;
  outline-offset: 4px;
  transform: scale(1.02);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  color: #222;
  box-shadow: 0 -4px 22px 0 rgba(71,177,92,0.17);
  border-top: 5px solid #47B15C;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-message {
  flex: 2 1 280px;
  font-size: 1.06rem;
}
.cookie-banner-actions {
  flex: 1 1 220px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.03rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #47B15C;
  color: #fff;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(71,177,92,0.08);
  transition: background 0.17s, color 0.18s;
}
.cookie-btn.accept {
  background: #47B15C;
  color: #fff;
}
.cookie-btn.reject {
  background: #F44336;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #1A5632;
  border: 2px solid #1A5632;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.94;
  outline: none;
  background: #1A5632;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b9271c;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #fff;
  background: #47B15C;
  border-color: #47B15C;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 19px 8px;
  }
  .cookie-banner-actions {
    justify-content: center;
    gap: 9px;
  }
}

/* COOKIE POPUP MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,46,27,0.60);
  z-index: 10001;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  color: #212d22;
  border-radius: 19px;
  box-shadow: 0 10px 60px rgba(71,177,92,0.2);
  max-width: 420px;
  width: 96vw;
  transform: translate(-50%,-50%) scale(1.06);
  z-index: 10002;
  padding: 38px 34px 28px 34px;
  opacity: 1;
  transition: opacity 0.24s, transform 0.26s;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%,-50%) scale(0.93);
  pointer-events: none;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #1A5632;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #23442d;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #47B15C;
  border-radius: 5px;
}
.cookie-category input[disabled] {
  background: #edeffe;
  opacity: 0.6;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: transparent;
  border: none;
  color: #1A5632;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #47B15C;
}
@media (max-width: 450px) {
  .cookie-modal {
    padding: 21px 10px 18px 10px;
    max-width: 97vw;
  }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px; background: #f3faf6;
}
::-webkit-scrollbar-thumb {
  background: #47B15C; border-radius: 4px;
}

/* ========== MISC + OVERRIDES ========== */
/* Headings colors strong and energetic! */
h1, h2, h3, .service-name {
  color: #1A5632;
  font-weight: 850;
  text-shadow: 0 2px 11px #c2f3ce1f;
}
.primary, .accent {
  color: #fff;
  background: #47B15C;
}
.accent {
  background: #1A5632;
}
.error {
  color: #F44336;
}
.success {
  color: #47B15C;
}

/* Input/button basics */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 2px solid #E5F5E1;
  padding: 11px 13px;
  margin-bottom: 15px;
  transition: border-color 0.17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #47B15C;
}

/* Adaptive Spacing Between Sections */
section + section {
  margin-top: 52px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  section + section {
    margin-top: 26px;
  }
}

/* ========== RESPONSIVE UTILITIES ========== */
@media (max-width: 600px) {
  html { font-size: 15px; }
  .container { padding: 0 5px; }
  .feature-grid, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 490px) {
  html { font-size: 14px; }
}

/* ========== HIGH-ENERGY COLOR HINTS ========== */
.cta.primary, .cookie-btn.accept,
button, input[type='submit'], .service-price, .main-nav a:after {
  box-shadow: 0 4px 24px -4px #47B15C29, 0 8px 24px -10px #1A563226;
}

/* ========== VISUAL HIERARCHY ========== */
section > .container > .content-wrapper > h2 {
  font-size: 2.1rem;
  line-height: 1.13;
  margin-bottom: 20px;
  text-shadow: 0 8px 22px #47b15c27;
}
@media (max-width: 768px) {
  section > .container > .content-wrapper > h2 {
    font-size: 1.35rem;
    margin-bottom: 13px;
  }
}

/* Animations for pop in */
@keyframes popdown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes popup {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}
.hero {
  animation: popdown 0.43s cubic-bezier(.17,.67,.53,1.36);
}
.feature-grid > div, .testimonial-card, .cookie-modal {
  animation: popup 0.29s cubic-bezier(.14,.85,.64,1.18);
}

/* ========== FOCUS STYLES FOR ACCESSIBILITY ========== */
a:focus, button:focus, .cta.primary:focus, input:focus {
  outline: 2px solid #47B15C;
  outline-offset: 3px;
}

/* Ensure min 20px between all cards/sections */
.card + .card, .testimonial-card + .testimonial-card,
.feature-grid > div + div {
  margin-top: 20px;
}

/* Prevent content overlapping */
section, .card-container, .feature-grid, .service-list {
  margin-bottom: 60px;
}

/* Z-index Management: ensure overlays always win */
.mobile-menu, .mobile-menu-close, .cookie-modal, .cookie-modal-close, .cookie-modal-backdrop {
  z-index: 10002;
}
.cookie-banner { z-index: 9999; }

/* Hide skip link offscreen until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  background: #47B15C;
  color: #fff;
  z-index: 1224;
  padding: 7px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: underline;
  outline: 2px solid #fff;
}

/* ========== END ==========
All flexbox only, no CSS grid/columns. Spacing/gap rules ensured. COLORS, FONTS, SHADOWS bold/energetic as brand!
*/
