/* ===================================
   SHARPSWEEP - WARM & FRIENDLY DESIGN
   Modern, Eco-Conscious, Approachable
   =================================== */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D3E2F;
  background-color: #FAFBFA;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5F3F;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  color: #4A5D4C;
}

a {
  color: #2D5F3F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #7BA05B;
}

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

li {
  margin-bottom: 12px;
  color: #4A5D4C;
}

strong {
  font-weight: 700;
  color: #2D5F3F;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(45, 95, 63, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: #2D5F3F;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: #E8F3E8;
  color: #2D5F3F;
  transform: translateY(-2px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #7BA05B;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #2D5F3F;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #7BA05B;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2D5F3F;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E8F3E8;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #2D5F3F;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: #E8F3E8;
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8F3E8 0%, #FAFBFA 100%);
  padding: 80px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background-color: #7BA05B;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(123, 160, 91, 0.3);
}

.hero h1 {
  font-size: 56px;
  color: #2D5F3F;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(45, 95, 63, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5D4C;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #2D5F3F;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #7BA05B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.btn-secondary {
  background-color: #E8F3E8;
  color: #2D5F3F;
  border: 2px solid #7BA05B;
}

.btn-secondary:hover {
  background-color: #7BA05B;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(123, 160, 91, 0.3);
}

/* TRUST INDICATORS */
.trust-indicators {
  background-color: #FFFFFF;
  padding: 50px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #2D5F3F;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #7BA05B;
  font-weight: 600;
}

/* SERVICES GRID */
.services-preview, .services {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.services-preview h2, .services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro, .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4A5D4C;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 95, 63, 0.15);
}

.service-card h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #4A5D4C;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: #7BA05B;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
}

/* SERVICE DETAIL PAGE */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.service-detail .tagline {
  font-size: 18px;
  color: #7BA05B;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 800;
  color: #2D5F3F;
  font-family: 'Montserrat', sans-serif;
  margin: 24px 0;
}

.service-detail .features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.service-detail .features li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: #4A5D4C;
}

.service-detail .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA05B;
  font-weight: 800;
  font-size: 20px;
}

/* ABOUT PREVIEW */
.about-preview {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
}

.about-preview h2 {
  margin-bottom: 24px;
}

.about-preview p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.value-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}

.value-points li {
  background-color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 24px;
  font-weight: 600;
  color: #2D5F3F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-points li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(45, 95, 63, 0.15);
}

/* TESTIMONIALS */
.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2D3E2F;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .customer-name,
.testimonial-card .name {
  font-weight: 700;
  color: #2D5F3F;
  font-size: 15px;
}

.testimonial-card .rating {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
}

/* CTA BANNER */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #2D5F3F 0%, #7BA05B 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(45, 95, 63, 0.3);
}

.cta-banner h2, .cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 40px;
}

.cta-banner p, .cta-section p {
  color: #E8F3E8;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.availability {
  font-size: 14px;
  color: #E8F3E8;
  font-weight: 600;
}

/* MISSION & VISION */
.mission-vision {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 28px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.value-item h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

.value-item p {
  color: #4A5D4C;
  font-size: 15px;
}

/* TIMELINE */
.story {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 40px auto 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(45, 95, 63, 0.12);
}

.timeline-item .year {
  font-size: 24px;
  font-weight: 800;
  color: #7BA05B;
  font-family: 'Montserrat', sans-serif;
  min-width: 80px;
}

.timeline-item p {
  color: #4A5D4C;
  margin: 0;
}

/* APPROACH GRID */
.approach {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.approach-step {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 28px);
  min-width: 250px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.approach-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.approach-step h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 16px;
}

.approach-step h3::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7BA05B;
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* COMMITMENT LIST */
.sustainability-commitment {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 20px;
}

.commitment-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 32px auto 0;
}

.commitment-list li {
  padding: 16px 0 16px 44px;
  position: relative;
  font-size: 16px;
  color: #2D3E2F;
  border-bottom: 1px solid #E8F3E8;
}

.commitment-list li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 24px;
}

.commitment-list li:last-child {
  border-bottom: none;
}

/* SUSTAINABILITY METRICS */
.environmental-impact {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
}

.badge {
  display: inline-block;
  background-color: #7BA05B;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  margin: 16px 0;
  box-shadow: 0 4px 12px rgba(123, 160, 91, 0.3);
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  transition: all 0.3s ease;
}

.metric:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.metric-number {
  font-size: 48px;
  font-weight: 800;
  color: #2D5F3F;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 15px;
  color: #7BA05B;
  font-weight: 600;
  text-align: center;
}

/* PRACTICES GRID */
.our-practices {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.practices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.practice-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.practice-card h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
  font-size: 20px;
}

.practice-card p {
  color: #4A5D4C;
  font-size: 15px;
}

/* GOALS ROADMAP */
.goals-roadmap {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.goals-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.goal-item {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 28px);
  min-width: 250px;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.goal-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(45, 95, 63, 0.12);
}

.goal-item .year {
  font-size: 28px;
  font-weight: 800;
  color: #7BA05B;
  font-family: 'Montserrat', sans-serif;
  min-width: 80px;
}

.goal-item p {
  color: #4A5D4C;
  margin: 0;
  font-size: 15px;
}

/* WORKSHOPS */
.workshops {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.workshop-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  max-width: 450px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.workshop-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: 12px;
}

.workshop-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 22px;
}

.workshop-card .difficulty {
  font-size: 14px;
  color: #7BA05B;
  font-weight: 600;
  margin-bottom: 16px;
}

.workshop-card .date {
  font-weight: 600;
  color: #2D5F3F;
  margin-bottom: 12px;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 800;
  color: #7BA05B;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

.workshop-card .rating {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

/* WORKSHOP BENEFITS */
.workshop-benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-item {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 28px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.benefit-item h3 {
  color: #2D5F3F;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #4A5D4C;
  font-size: 14px;
}

/* BENEFIT CARDS */
.benefits {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.benefit-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 28px);
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.benefit-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #4A5D4C;
  font-size: 15px;
}

/* BLOG */
.blog-featured {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 48px;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.featured-post .badge {
  margin-bottom: 16px;
}

.category {
  display: inline-block;
  background-color: #7BA05B;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #7BA05B;
  margin-top: 20px;
}

.post-meta .author,
.post-meta .date,
.post-meta .read-time {
  font-weight: 600;
}

/* BLOG GRID */
.blog-grid {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.post-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.post-card .category {
  align-self: flex-start;
  margin-bottom: 16px;
}

.post-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.post-card p {
  color: #4A5D4C;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* NEWSLETTER CTA */
.newsletter-cta {
  background: linear-gradient(135deg, #2D5F3F 0%, #7BA05B 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
}

.newsletter-cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-cta p {
  color: #E8F3E8;
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-cta .benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
}

.newsletter-cta .benefits li {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

.subscriber-count {
  font-size: 14px;
  color: #E8F3E8;
  font-weight: 600;
  margin-top: 24px;
}

/* CONTACT PAGE */
.contact-options {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.option-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 28px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.option-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 24px;
}

.option-card .contact-detail {
  font-size: 18px;
  font-weight: 600;
  color: #7BA05B;
  margin: 20px 0;
}

.option-card .info {
  font-size: 14px;
  color: #4A5D4C;
  font-style: italic;
}

/* CONTACT INFO */
.contact-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.form-note {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 24px;
  border-radius: 16px;
  margin: 32px auto;
  max-width: 700px;
  border-left: 4px solid #7BA05B;
}

.form-note p {
  color: #4A5D4C;
  margin-bottom: 12px;
}

/* OPENING HOURS */
.opening-hours {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.hours-table {
  max-width: 500px;
  margin: 32px auto;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E8F3E8;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 700;
  color: #2D5F3F;
}

.hours-row .time {
  color: #7BA05B;
  font-weight: 600;
}

.note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #7BA05B;
  font-style: italic;
}

/* LOCATION */
.location {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.address {
  font-size: 20px;
  font-weight: 600;
  color: #2D5F3F;
  margin: 24px 0 32px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.location-info p {
  margin-bottom: 24px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  color: #2D5F3F;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 2px solid #E8F3E8;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: #2D5F3F;
  margin-top: 28px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #4A5D4C;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul, .legal-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  color: #4A5D4C;
  margin-bottom: 12px;
  line-height: 1.7;
}

.last-updated {
  font-size: 14px;
  color: #7BA05B;
  font-weight: 600;
  margin-top: 8px;
}

/* THANK YOU PAGE */
.success-icon {
  width: 100px;
  height: 100px;
  background-color: #7BA05B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #FFFFFF;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(123, 160, 91, 0.3);
}

.confirmation {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.confirmation .message {
  font-size: 20px;
  color: #2D5F3F;
  font-weight: 600;
  margin-bottom: 24px;
}

.next-steps {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.next-steps li {
  counter-increment: step-counter;
  padding: 20px 0 20px 60px;
  position: relative;
  border-bottom: 1px solid #E8F3E8;
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #7BA05B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.next-steps li:last-child {
  border-bottom: none;
}

/* SUGGESTIONS */
.suggestions {
  background-color: #FAFBFA;
  padding: 60px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.15);
}

.suggestion-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: #4A5D4C;
  margin-bottom: 24px;
}

/* TESTIMONIAL SECTION */
.testimonial {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.return-home {
  background-color: #FAFBFA;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2D5F3F 0%, #1A3D29 100%);
  color: #E8F3E8;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 280px;
  min-width: 250px;
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #E8F3E8;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #E8F3E8;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 243, 232, 0.2);
}

.footer-bottom p {
  color: #E8F3E8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #4A5D4C;
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background-color: #2D5F3F;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #7BA05B;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: #E8F3E8;
  color: #2D5F3F;
}

.cookie-btn-reject:hover {
  background-color: #D1E8D1;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #7BA05B;
  border: 2px solid #7BA05B;
}

.cookie-btn-settings:hover {
  background-color: #7BA05B;
  color: #FFFFFF;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 95, 63, 0.7);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #2D5F3F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #E8F3E8;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 28px;
  padding: 20px;
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  border-radius: 16px;
}

.cookie-category h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #4A5D4C;
  font-size: 14px;
  margin-bottom: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2D5F3F;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Section spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  /* Service cards */
  .services-grid,
  .workshop-grid,
  .posts-grid {
    gap: 20px;
  }
  
  .service-card,
  .workshop-card,
  .post-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Values and benefits */
  .values-grid,
  .benefits-grid,
  .practices-grid,
  .approach-grid {
    gap: 20px;
  }
  
  .value-item,
  .benefit-item,
  .benefit-card,
  .practice-card,
  .approach-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Testimonials */
  .testimonial-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Timeline */
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-item .year {
    min-width: auto;
  }
  
  /* Goals */
  .goal-item {
    flex-direction: column;
    text-align: center;
  }
  
  .goal-item .year {
    min-width: auto;
  }
  
  /* Contact options */
  .option-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 28px 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
  
  /* Suggestions */
  .suggestions-grid {
    gap: 20px;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Return home buttons */
  .return-home {
    flex-direction: column;
  }
  
  .return-home .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stat-number,
  .metric-number {
    font-size: 36px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 24px 12px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .hero-cta,
  .cta-banner,
  .cta-section,
  footer {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000000;
    page-break-after: avoid;
  }
  
  .service-card,
  .testimonial-card,
  .post-card {
    page-break-inside: avoid;
  }
}

/* ACCESSIBILITY */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #7BA05B;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  
  .btn-primary {
    border: 2px solid #000000;
  }
  
  .btn-secondary {
    border: 2px solid #000000;
  }
}

/* END OF STYLESHEET */