/* ===========================================================
   CSS RESET & NORMALIZE (MOBILE-FIRST)
   ======================================================== */
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;
}

main, section, article, aside, nav, header, footer {
  display: block;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  background-color: #F5F5F5;
  color: #1a2818;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Webfont Imports & Fallbacks */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #215D36;
  --primary-dark: #173e24;
  --secondary: #FFFFFF;
  --secondary-bg: #F5F5F5;
  --accent: #A1B44D;
  --accent-alt: #B7C679;
  --danger: #D33F49;
  --text: #1a2818;
  --heading: #174223;
  --shadow: 0 4px 20px rgba(33, 93, 54, 0.08), 0 1.5px 8px rgba(33,93,54,0.06);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
/* ========================================================
   TYPOGRAPHY (MODERN BOLD)
   ======================================================== */
h1, .display {
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1.15;
  color: var(--heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}
p, li, span, table, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* ========================================================
   HEADER & NAVIGATION
   ======================================================== */
header {
  background-color: var(--secondary);
  box-shadow: 0 2px 12px rgba(41, 102, 60, 0.04);
  z-index: 150;
  position: sticky;
  top: 0;
}
.header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px 18px;
  max-width: 1160px;
  margin: 0 auto;
}
header a img {
  max-height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 7px 0;
  position: relative;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
/* primary CTA in header */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.12rem;
  border: none;
  border-radius: 30px;
  padding: 11px 28px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33, 93, 54, 0.12);
  transition: background 0.18s, transform 0.15s, box-shadow 0.16s;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 16px rgba(33,93,54,0.21);
}
.cta-btn.secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background-color: var(--accent);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-left: 16px;
  cursor: pointer;
  z-index: 300;
  padding: 9px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent-alt);
}
/* Hide main-nav and cta btn for mobile, show burger */
@media (max-width: 900px) {
  .main-nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ========================================================
   MOBILE NAVIGATION (slide-in overlay)
   ======================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  box-shadow: 0 9px 32px rgba(41,102,60,0.11);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.72,.17,.28,.97);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--danger);
  padding: 18px 22px 10px 16px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 18px 0 0 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  transition: color 0.17s, background 0.18s;
  padding: 13px 12px;
  border-radius: 9px;
  display: inline-block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: var(--primary);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay dismiss block background when open (mobile menu future extension) */
.mobile-menu::after {
  content: '';
  display: none;
}
.mobile-menu.open::after {
  display: none;
}

/* ========================================================
   HERO SECTIONS
   ======================================================== */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 54px 0 38px 0;
  min-height: 270px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  max-width: 620px;
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
}
.hero p {
  color: #f0f4ed;
  font-size: 1.1rem;
}
.hero .cta-btn {
  margin-top: 14px;
}
@media (max-width: 600px) {
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero .container { padding: 0 4vw; }
}

/* ========================================================
   FLEXBOX PATTERNS & SPACING (MANDATORY)
   ======================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 100%;
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 230px;
  margin-bottom: 24px;
  border-left: 8px solid var(--accent-alt);
  position: relative;
  transition: box-shadow 0.16s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(33,93,54,0.13);
  transform: translateY(-4px) scale(1.017);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}
.feature-grid > div {
  flex: 1 1 200px;
  min-width: 230px;
  max-width: 315px;
  background: #fff;
  border-radius: 19px;
  box-shadow: var(--shadow);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 36px rgba(33,93,54,0.16);
  transform: translateY(-2px) scale(1.016);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 2px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
}
@media (max-width: 900px) {
  .feature-grid, .testimonial-grid, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch !important;
    gap: 18px;
  }
}

/**************************************** *****
  Other flexbox service, list, and card layouts
**********************************************/
.values-grid ul, .benefits-icons ul, .teaching-methods ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.values-grid li, .benefits-icons li, .teaching-methods li {
  min-width: 120px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .values-grid ul, .benefits-icons ul, .teaching-methods ul{
    flex-direction: column;
    gap: 14px;
  }
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 22px 0;
}
.service-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 284px;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.15s;
}
.service-list .icons, .service-list .price-label {
  margin-top: 6px;
}
.service-list > div:hover {
  box-shadow: 0 8px 32px rgba(33,93,54,0.16);
  transform: translateY(-2px) scale(1.013);
}
.icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.12rem;
  margin-top: 2px;
}

.workshop-list, .feedback-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.workshop-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 200px;
  max-width: 295px;
  flex: 1 1 200px;
  padding: 22px 15px 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.workshop-list > div:hover { box-shadow: 0 6px 20px rgba(33,93,54,0.11); }

.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.team-member-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  flex: 1 1 170px;
  min-width: 160px;
  max-width: 240px;
  padding: 19px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.skills-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 8px;
}
.skills-icons img {
  height: 35px;
  width: 35px;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.certifications p {
  display: flex;
  align-items: center;
  gap: 8px;
}

/****************************************
  CTA Sections
*****************************************/
.cta-section {
  background: var(--accent-alt);
  border-radius: 32px 32px 0 0;
  margin: 68px 0 0 0;
  padding: 40px 0 45px 0;
  box-shadow: 0 0px 34px rgba(161,180,77,0.07);
  text-align: center;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-section .cta-btn {
  margin-top: 18px;
}

/****************************************
  Thank You Section Spacing
*****************************************/
.thankyou-section .content-wrapper {
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.thankyou-section .next-steps {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 15px 14px 15px;
  margin: 20px 0;
  text-align: left;
}
.thankyou-section h1 {
  color: var(--primary);
}

/****************************************
  Newsletter / Notice / Contact Details
*****************************************/
.notice, .newsletter-section, .newsletter-signup {
  background: #f9f9f7;
  padding: 18px 16px;
  border-radius: 13px;
  box-shadow: 0 1px 4px rgba(33,93,54,0.05);
  margin-top: 20px;
}

/****************************************
  ACCORDION/FAQ SECTIONS
*****************************************/
.faq-accordion h3 {
  font-size: 1.15rem;
  color: var(--primary);
  cursor: pointer;
  margin-top: 26px;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 700;
}
.faq-accordion p {
  margin-bottom: 18px;
  transition: max-height 0.2s, opacity 0.21s;
}

/**** Pricing Table ***/
.pricing-table {
  width: 100%;
  margin: 20px 0 32px 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th, .pricing-table td {
  padding: 15px 10px;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid #e1e7e2;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width:650px) {
  .pricing-table th, .pricing-table td { font-size: 0.95rem; padding:9px 6px; }
}

/**** Newsletter section/button ***/
.newsletter-signup a, .newsletter-section a {
  margin-top: 10px;
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 24px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.newsletter-signup a:hover, .newsletter-signup a:focus,
.newsletter-section a:hover, .newsletter-section a:focus {
  background: var(--accent);
  color: var(--primary);
}

/****************************************
  FOOTER
*****************************************/
footer {
  background: var(--primary);
  color: #fff;
}
.footer-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 16px 32px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 50px;
  width: 50px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  font-size: 0.98rem;
  color: #e0ffe0;
}
.footer-social {
  display: flex;
  gap: 11px;
  margin-top: 8px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #fff;
  padding: 2px;
  transition: box-shadow 0.17s, background 0.15s;
}
.footer-social img:hover { background: var(--accent); box-shadow: 0 4px 10px rgba(0,0,0,0.10); }
.newsletter-signup {
  min-width: 160px;
  text-align: left;
  font-size: 0.98rem;
}
@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .footer-social {
    margin-bottom: 10px;
  }
}

/****************************************
   COOKIES CONSENT BANNER (fixed bottom)
*****************************************/
.cookie-consent {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  color: var(--primary);
  box-shadow: 0 -2px 18px rgba(41,102,60,0.13);
  padding: 20px 18px 20px 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  animation: cookieAppear 0.55s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieAppear {
  0% { transform: translateY(90px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  border-radius: 24px;
  padding: 8px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent-alt);
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 3px 12px rgba(33,93,54,0.18);
  transform: translateY(-2px) scale(1.021);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #fff; color: var(--danger); border: 2px solid var(--danger); }
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: var(--primary); color: #fff; }

/* Cookie MODAL (overlay) */
.cookie-modal-backdrop {
  position: fixed; top:0; left:0; width:100vw; height:100vh;
  background: rgba(33,93,54,0.24);
  z-index: 1400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: modalShow 0.23s cubic-bezier(.7,.13,.4,.93);
}
@keyframes modalShow {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 30px 24px 16px 24px;
  box-shadow: 0 10px 28px rgba(33,93,54,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modalPanel 0.32s cubic-bezier(.7,.13,.4,.93);
}
@keyframes modalPanel { 0%{ transform: translateY(90px); } 100%{ transform: translateY(0); } }
.cookie-modal-close {
  position: absolute;
  right: 12px; top: 11px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--danger);
  cursor: pointer;
  z-index: 10;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: var(--secondary-bg);
  border: 2px solid var(--accent-alt);
  border-radius: 9999px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, border 0.16s;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 1.5px; top: 1.5px;
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-toggle:checked {
  background: var(--accent);
  border-color: var(--primary);
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
  background: var(--primary);
}
.cookie-category.essential label {
  color: var(--primary-dark);
  font-weight: 700;
  opacity: 0.72;
}
.cookie-category.essential input[type="checkbox"] {
  pointer-events: none;
  opacity: 0.5;
}

/* Hide cookie modal for print */
@media print {
  .cookie-consent, .cookie-modal-backdrop { display: none !important; }
}

/* ========================================================
   GLOBAL INTERACTIONS & HOVERS
   ======================================================== */
button, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  outline-color: var(--accent);
  transition: background 0.18s, color 0.14s, box-shadow 0.15s, border 0.15s;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Inputs for future proofing forms, even if not present */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #B7C679;
  border-radius: 8px;
  padding: 10px 11px;
  background: #fff;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--primary);
}

/* ========================================================
   RESPONSIVE DESIGN
   ======================================================== */
@media (max-width: 1260px) {
  .container, .footer-main {
    max-width: 96vw;
    padding: 0 8px;
  }
}
@media (max-width: 700px){
  .hero, .cta-section, .section { padding-left: 8px; padding-right: 8px;}
}
@media (max-width: 600px){
  h1,.hero h1{font-size:1.35rem;}
  h2{font-size:1.15rem;}
  .section { padding: 30px 8px; }
  .feature-grid > div, .service-list > div {
    padding: 15px 7px 12px 10px;
  }
  .cta-section { padding: 26px 2vw 32px 2vw; }
  .footer-main { padding: 35px 7px 19px 7px; gap: 14px; }
}

/* Ensuring minimum 20px margin between all content cards/sections */
.section + .section, .section + .cta-section, .card + .card {
  margin-top: 24px !important;
}
.feature-grid > div + div, .service-list > div + div,
.workshop-list > div + div, .testimonial-card + .testimonial-card,
.card-container > .card + .card {
  margin-left: 0;
  margin-top: 0;
}

/*****************************************
   COLOR CONTRAST: Testimonials/Reviews
*****************************************/
.testimonial-card {
  background: #fff;
  color: var(--primary-dark);
  border-left: 8px solid var(--accent-alt);
}
.testimonial-card p,.testimonial-card .review-meta,.testimonial-card .star-rating {
  color: var(--primary-dark);
  font-size: 1.03rem;  
}
.star-rating {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 5px;
}
.review-meta {
  font-size: 0.99rem;
  color: var(--primary);
  opacity: 0.81;
  font-style: italic;
}

/*****************************************
   MICRO-INTERACTIONS/ANIMATIONS
*****************************************/
.card:hover, .feature-grid > div:hover,
.service-list > div:hover, .workshop-list > div:hover {
  box-shadow: 0 7px 28px rgba(162,180,77,0.11),0 2px 10px rgba(33,93,54,0.09);
  transform: translateY(-3px) scale(1.014);
}

.cta-btn, .newsletter-signup a, .newsletter-section a, .cookie-btn {
  transition: background 0.15s, color 0.14s, transform 0.13s, box-shadow 0.15s;
}

/*****************************************
   VISUAL ELEMENTS: BUTTONS, CARDS, SECTIONS
*****************************************/
.card, .feature-grid > div, .service-list > div, .workshop-list > div, .testimonial-card, .thankyou-section .next-steps {
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 20px;
}

/*****************************************
  MINIMAL TABLET/MOBILE HIDE elements for UX
*****************************************/
@media (max-width: 900px){
  .footer-social { justify-content: flex-start; }
}

/*****************************************
   Brand-specific details and favicon
*****************************************/
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-alt);
  border-radius: 9px;
}

/*****************************************
   VISUAL HIERARCHY (TYPOGRAPHY + SPACING)
*****************************************/
.section,
.cta-section,
.hero,
footer {
  margin-bottom: 0;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/*****************************************
   Hide visually when necessary (utility)
*****************************************/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* End of stylesheet */
