/* ====================================================================
   CSS RESET & BASELINE NORMALIZATION
   ==================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F6F7FA;
  color: #1B2A14;
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #224178;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2C6B2E;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #224178;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
}
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}

/* ====================================================================
     COLOR PALETTE & BRAND/NATURE ORGANIC ACCENTS
   ==================================================================== */
:root {
  --brand-primary: #224178;
  --brand-secondary: #D9A441;
  --brand-accent: #F6F7FA;
  --nature-green: #2C6B2E;
  --nature-leaf: #7BAF89;
  --nature-brown: #C4B49A;
  --nature-earth: #84725E;
  --nature-offwhite: #FCFCF9;
  --text-default: #1B2A14;
  --card-bg: #FFFFFF;
  --card-bg-alt: #FCFCF9;
  --organic-shadow: 0 8px 24px rgba(65, 100, 55, 0.10);
}

body {
  background: var(--brand-accent, #F6F7FA);
  color: var(--text-default);
}

/* ====================================================================
     LAYOUT HELPERS & CONTAINERS
   ==================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--organic-shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(60, 100, 70, 0.13);
  transform: translateY(-4px) scale(1.018);
}
.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: var(--nature-offwhite);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(44, 107, 46, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 100%;
  border-left: 5px solid var(--nature-green);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg-alt);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(185, 184, 171, 0.07);
  padding: 24px 18px;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 34px;
    padding: 26px 8px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ====================================================================
     HEADER & NAVIGATION
   ==================================================================== */
header {
  background: linear-gradient(90deg, #FCFCF9 80%, #F6F7FA 100%);
  border-bottom: 2px solid #E3E7E0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 38% 62% 60% 40% / 60% 32% 68% 40%; /* Organic look */
  background: #e7ede5;
  box-shadow: 0 2px 12px rgba(107, 166, 111, 0.04);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--brand-primary);
  padding: 10px 5px;
  border-radius: 13px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--nature-leaf);
  color: #fff;
}
.main-nav a.cta {
  background: var(--nature-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px 16px 18px 24px / 28px 17px 25px 20px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(44, 107, 46, 0.08);
  transition: background 0.18s, box-shadow 0.2s, transform 0.1s;
}
.main-nav a.cta:hover {
  background: #388848;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 14px rgba(44, 107, 46, 0.16);
}

/* Hide Mobile Toggle Desktop */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--nature-green);
    color: #fff;
    font-size: 2.1rem;
    border: none;
    border-radius: 14px;
    padding: 9px 16px;
    margin-left: 12px;
    cursor: pointer;
    transition: background 0.13s, box-shadow 0.19s;
    box-shadow: 0 2px 10px rgba(44, 107, 46, 0.10);
    outline: none;
    z-index: 5004;
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    background: #388848;
  }
}

/* ====================================================================
     MOBILE MENU OVERLAY
   ==================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(36,62,46, 0.90);
  z-index: 5010;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.67,.1,.38,.94);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  margin: 26px 28px 12px 0;
  cursor: pointer;
  z-index: 5020;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--brand-secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  background: var(--brand-accent);
  width: 85vw;
  max-width: 380px;
  min-height: 100vh;
  border-radius: 30px 0 0 30px / 32px 0 0 32px;
  box-shadow: -8px 0 24px rgba(62,70,75,0.07);
  padding: 40px 28px 40px 44px;
  position: relative;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--brand-primary);
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  transition: background 0.1s, color 0.1s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--nature-green);
  background: #e9efd6;
  border-radius: 12px;
  outline: none;
}

/* ====================================================================
     HERO SECTION
   ==================================================================== */
.hero {
  background: linear-gradient(125deg,#FCFCF9 82%, #E9EEDF 100%);
  border-radius: 0 0 68px 24px / 0 0 68px 24px;
  margin-bottom: 36px;
  box-shadow: 0 6px 36px rgba(123,175,137,0.07);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.3rem;
  color: var(--nature-green);
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.20rem;
  color: var(--text-default);
  max-width: 540px;
}

/* ====================================================================
     FEATURES & COURSE PREVIEW
   ==================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: #FCFCF9;
  border-radius: 22px 10px 30px 16px / 22px 18px 24px 32px;
  box-shadow: 0 6px 22px rgba(189, 175, 110, 0.10);
  padding: 30px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.5px solid #E3E6D7;
  transition: box-shadow 0.18s, border-color 0.19s, transform 0.13s;
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 3px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px rgba(44, 107, 46, 0.15);
  border-color: var(--brand-secondary);
  transform: scale(1.018);
}

.course-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 14px;
}
.course-preview > div {
  background: #fff;
  border-radius: 16px 18px 14px 22px / 22px 17px 21px 14px;
  padding: 20px 18px;
  min-width: 180px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s, transform 0.13s;
  box-shadow: 0 3.5px 14px rgba(123,175,137, 0.08);
  margin-bottom: 14px;
}
.course-preview > div:hover {
  box-shadow: 0 8px 25px rgba(123,175,137, 0.13);
  transform: translateY(-2.5px);
}

@media (max-width: 900px) {
  .feature-grid, .course-preview{
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div, .course-preview > div {
    min-width: 0;
  }
}

/* ====================================================================
     BADGES, TAGS & HIGHLIGHTS
   ==================================================================== */
.badge {
  display: inline-block;
  background: var(--nature-leaf);
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px 14px 12px 22px / 19px 14px 20px 16px;
  padding: 7px 16px;
  margin-right: 7px;
  margin-bottom: 6px;
  box-shadow: 0 2.5px 9px rgba(87,151,97,0.10);
}
.tag {
  display: inline-block;
  background: var(--nature-brown);
  color: #224178;
  font-size: 0.96rem;
  border-radius: 14px 14px 22px 18px;
  padding: 4px 12px;
  margin-right: 6px;
  margin-bottom: 4px;
}
.level-badges {
  margin-top: 12px;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.certification-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.certification-badges img {
  height: 38px;
  width: auto;
}

/* ====================================================================
     BUTTONS & CTA
   ==================================================================== */
.cta {
  background: var(--brand-secondary);
  color: #fff;
  padding: 13px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  border-radius: 34px 16px 22px 24px / 25px 26px 29px 18px;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 13px rgba(217, 164, 65, 0.11);
  border: none;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.15s, color 0.15s, transform 0.11s, box-shadow 0.19s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #C09230;
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
  box-shadow: 0 10px 35px rgba(124, 178, 87, 0.12);
  outline: none;
}

button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 9px 22px;
  background: var(--nature-leaf);
  color: #fff;
  border-radius: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--nature-green);
  transform: scale(1.045);
}
.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ====================================================================
     TABLES, FAQ, PRICING
   ==================================================================== */
.pricing-table {
  width: 100%;
  background: #FCFCF9;
  border-radius: 12px;
  border: 1.5px solid #e8e3d4;
  margin: 22px 0 18px 0;
  overflow: auto;
  box-shadow: 0 2px 9px rgba(189, 175, 110, 0.06);
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead {
  background: #E9EEDF;
  color: #224178;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #ECE8DC;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.faq-list .faq-entry {
  background: #fff;
  border-radius: 12px 22px 20px 10px / 20px 16px 14px 18px;
  box-shadow: 0 2px 12px rgba(187, 202, 177, 0.07);
  margin-bottom: 20px;
  padding: 20px 18px;
}
.faq-list .faq-entry h3 {
  margin-bottom: 7px;
  color: var(--nature-green);
}
.contact-info-short {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}
.contact-info-short img {
  vertical-align: middle;
  height: 22px;
  margin-right: 8px;
}

@media (max-width: 700px) {
  .pricing-table th, .pricing-table td {
    padding: 8px 6px;
    font-size: 0.97rem;
  }
}

/* ====================================================================
     TESTIMONIALS
   ==================================================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #265622;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--brand-secondary);
}
.stars {
  font-size: 1.21rem;
  color: #F4CD62;
  margin-left: 12px;
}

@media (max-width: 900px) {
  .testimonial-slider,.testimonial-cards {
    flex-direction: column;
    gap: 10px;
  }
}

/* ====================================================================
     BLOG ENTRIES
   ==================================================================== */
.blog-list article {
  background: #fff;
  border-radius: 18px 13px 18px 26px / 20px 23px 15px 30px;
  box-shadow: 0 4px 13px rgba(109,151,117, 0.07);
  padding: 22px 18px 19px 18px;
  margin-bottom: 18px;
  transition: box-shadow 0.14s, transform 0.08s;
}
.blog-list article:hover {
  box-shadow: 0 7px 28px rgba(75, 120, 78, 0.10);
  transform: translateY(-2px);
}
.blog-list article h3 {
  color: #2C6B2E;
}

/* ====================================================================
     NEWSLETTER SECTION
   ==================================================================== */
.newsletter-cta {
  background: #E9EEDF;
  border-radius: 28px 46px 19px 28px / 28px 35px 21px 28px;
  box-shadow: 0 3.5px 14px rgba(203,217,177,0.13);
  margin-bottom: 44px;
}

/* ====================================================================
     FOOTER
   ==================================================================== */
footer {
  background: #224178;
  color: #fff;
  padding: 38px 0 0 0;
  border-radius: 69px 0 0 0 / 29px 0 0 0;
  box-shadow: 0 -2.5px 12px rgba(42,41,31,0.06);
}
footer .container {
  flex-direction: column;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 8px;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #D9A441;
  color: #224178;
  outline: none;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  font-size: 0.99rem;
  color: #fff;
}
.footer-contact img {
  height: 42px;
  width: auto;
  border-radius: 40%;
  background: #E9EEDF;
  margin-right: 18px;
}
.footer-contact div {
  max-width: 360px;
}

@media (max-width: 900px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 20px 0 0 0;
  }
  .footer-nav {
    gap: 10px;
  }
  .footer-contact img {
    height: 26px;
  }
}

/* ====================================================================
     COOKIE CONSENT BANNER & MODAL
   ==================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FCFCF9;
  color: var(--text-default);
  z-index: 6000;
  box-shadow: 0 -3px 18px rgba(99,107,62,0.11);
  border-top: 2px solid #E3E7E0;
  padding: 22px 10px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.28s cubic-bezier(.8,.19,.32,.86), opacity 0.17s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  flex: 1 1 360px;
  max-width: 570px;
}
.cookie-banner .button-group {
  gap: 12px;
}
.cookie-banner .accept {
  background: var(--nature-green);
  color: #fff;
  border-radius: 16px;
}
.cookie-banner .reject {
  background: #b78c66;
  color: #fff;
  border-radius: 16px;
}
.cookie-banner .settings {
  background: #FCFCF9;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
  border-radius: 16px;
  font-weight: 500;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E9EEDF;
  color: var(--nature-green);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6px 16px 6px;
    gap: 10px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(34,65,120,0.30);
  z-index: 6005;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #F6F7FA;
  color: var(--text-default);
  border-radius: 25px 28px 19px 25px / 20px 32px 21px 36px;
  box-shadow: 0 6px 40px rgba(44,107,46, 0.13);
  max-width: 420px;
  padding: 36px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: var(--nature-green);
  font-size: 1.45rem;
  margin-bottom: 7px;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 15px;
  padding: 11px 14px 11px 11px;
  box-shadow: 0 1.5px 7px rgba(138,187,110,0.07);
  margin-bottom: 11px;
}
.cookie-cat label {
  font-weight: 500;
  flex: 1;
}
.cookie-cat input[type=checkbox] {
  accent-color: var(--nature-green);
  width: 22px;
  height: 22px;
}
.cookie-cat input[disabled] {
  opacity: 0.6;
}
.cookie-modal .button-group {
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: transparent;
  color: #73824a;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  opacity: 0.82;
  transition: color 0.13s, opacity 0.12s;
  z-index: 9002;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--nature-green);
  opacity: 1;
}

@media (max-width: 540px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 20px 6px 18px 8px;
  }
}

/* ====================================================================
     THANK-YOU PAGE
   ==================================================================== */
.thank-you-section {
  background: #E9EEDF;
  border-radius: 20px 28px 16px 28px / 20px 32px 21px 36px;
  box-shadow: 0 4px 24px rgba(138,187,110, 0.15);
  margin: 36px 0 32px 0;
}
.thank-you-section h1 {
  color: var(--brand-primary);
}
.thank-you-message {
  margin-bottom: 13px;
}
.next-steps li {
  margin-left: 20px;
  margin-bottom: 7px;
}

/* ====================================================================
     UTILITIES FOR SPACING & ORGANIC VISUAL ELEMENTS
   ==================================================================== */
.organic-shadow {
  box-shadow: 0 8px 22px rgba(35, 65, 120, 0.11) !important;
}
.rounded-organic {
  border-radius: 18px 39px 21px 30px / 20px 32px 21px 36px !important;
}
.gap-lg { gap: 32px!important; }
.gap-md { gap: 22px!important; }
.gap-sm { gap: 10px!important; }
.margin-lg { margin-bottom: 42px!important; }
.margin-sm { margin-bottom: 14px!important; }

/* ====================================================================
     RESPONSIVE TYPO HIERARCHY (MOBILE-FIRST)
   ==================================================================== */
@media (max-width: 768px) {
  h1 { font-size: 1.73rem; }
  h2 { font-size: 1.27rem; }
  h3 { font-size: 1.08rem; }
  .hero h1 { font-size: 1.36rem; }
}

/* ====================================================================
     MICRO-INTERACTIONS
   ==================================================================== */
.cta, .main-nav a.cta, button, .btn, .feature-grid > div, .card, .testimonial-card, .blog-list article {
  transition-property: background, box-shadow, color, transform, border-color;
  transition-duration: 0.12s, 0.15s, 0.12s, 0.14s, 0.13s;
}

@media (hover: hover) {
.card:hover, .feature-grid > div:hover, .blog-list article:hover, .testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(44, 107, 46, 0.17)!important;
}
.cta:hover, .main-nav a.cta:hover, button:hover, .btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(44, 107, 46, 0.12);
}
}

/* ====================================================================
     ACCESSIBILITY & VISUAL CONTRAST FOR TESTIMONIALS & REVIEWS
   ==================================================================== */
.testimonial-card, .testimonial-slider .testimonial-card {
  background: #FCFCF9;
  color: #224178;
  box-shadow: 0 6px 24px rgba(123,175,137,0.14);
  border-left: 5px solid var(--nature-green);
}
.testimonial-card p {
  color: #1B2A14;
  font-style: italic;
}
.testimonial-card strong {
  color: #224178;
  font-weight: 700;
}

/* ====================================================================
     TRANSITIONS FOR COOKIE & MOBILE MENU
   ==================================================================== */
.mobile-menu, .mobile-menu.open,
.cookie-banner, .cookie-banner.hide,
.cookie-modal-overlay, .cookie-modal-overlay.hide {
  transition-timing-function: cubic-bezier(.82,.07,.32,.98);
}

/* ====================================================================
     PRINT
   ==================================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* ====================================================================
     END OF STYLE SHEET
   ==================================================================== */