/* ===========================
   WHISK & WHISPER - NATURE ORGANIC DESIGN
   Comprehensive CSS Styles
   =========================== */

/* CSS RESET & BASE */
* {
  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', sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAF8F3;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --earth-brown: #2C3E50;
  --warm-wood: #8B4513;
  --golden-harvest: #D4AF37;
  --sage-green: #7A9B76;
  --moss-green: #556B2F;
  --cream: #FAF8F3;
  --sand: #E8DCC4;
  --bark: #4A3728;
  --leaf-green: #9CAF88;
  --stone-gray: #AFA89F;
  --soft-white: #FFFEF9;
  --earth-shadow: rgba(44, 62, 80, 0.1);
}

/* TYPOGRAPHY - NATURE ORGANIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: var(--earth-brown);
}

a {
  color: var(--warm-wood);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--golden-harvest);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* BUTTONS - ORGANIC STYLE */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--sage-green);
  color: var(--soft-white);
  border-color: var(--sage-green);
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.btn-primary:hover {
  background-color: var(--moss-green);
  border-color: var(--moss-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 155, 118, 0.4);
  color: var(--soft-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--sage-green);
  border-color: var(--sage-green);
}

.btn-secondary:hover {
  background-color: var(--sage-green);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.btn-link {
  padding: 0;
  background: none;
  border: none;
  color: var(--warm-wood);
  font-weight: 600;
  box-shadow: none;
  border-radius: 0;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--golden-harvest);
  transform: none;
  box-shadow: none;
}

/* HEADER - ORGANIC NAVIGATION */
header {
  background-color: var(--soft-white);
  box-shadow: 0 2px 12px var(--earth-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--sand);
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--earth-brown);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage-green);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--sage-green);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU - NATURE ORGANIC STYLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--sage-green);
  color: var(--soft-white);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--moss-green);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--soft-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 4px solid var(--sage-green);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--warm-wood);
  color: var(--soft-white);
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--golden-harvest);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 0;
}

.mobile-nav a {
  color: var(--earth-brown);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid var(--sand);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: var(--sand);
  color: var(--sage-green);
  padding-left: 28px;
}

/* HERO SECTION - ORGANIC NATURE */
.hero {
  background: linear-gradient(135deg, var(--leaf-green) 0%, var(--sage-green) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M20 50 Q 30 30, 40 50 T 60 50" stroke="%23FFFEF9" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: var(--soft-white);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 20px;
  color: var(--soft-white);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-indicators span {
  color: var(--soft-white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

/* SECTION SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro, .intro {
  text-align: center;
  font-size: 18px;
  color: var(--earth-brown);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

h2 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--earth-brown);
}

/* BENEFITS GRID - FLEXBOX ORGANIC CARDS */
.benefits-grid, .services-grid, .stats-grid, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card, .service-card, .stat-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--soft-white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px var(--earth-shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--sand);
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-green), var(--leaf-green));
  border-radius: 16px 16px 0 0;
}

.benefit-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(122, 155, 118, 0.3);
  border-color: var(--sage-green);
}

.benefit-card img, .service-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.benefit-card h3, .service-card h3 {
  color: var(--earth-brown);
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-card p, .service-card p {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--sage-green);
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

/* PROCESS STEPS - ORGANIC FLOW */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  position: relative;
  padding: 24px;
  background-color: var(--soft-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--earth-shadow);
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sage-green), var(--leaf-green));
  color: var(--soft-white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.step h3 {
  color: var(--earth-brown);
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: var(--earth-brown);
  font-size: 14px;
}

/* TESTIMONIALS - NATURE ORGANIC CARDS */
.testimonials {
  background-color: var(--sand);
  padding: 60px 20px;
}

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

.testimonial-card, .testimonial-extended {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  border-left: 4px solid var(--sage-green);
  margin-bottom: 20px;
  position: relative;
}

.quote, .quote-long {
  font-size: 16px;
  line-height: 1.7;
  color: var(--earth-brown);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.quote::before {
  content: '"';
  font-size: 48px;
  color: var(--sage-green);
  position: absolute;
  left: -10px;
  top: -10px;
  font-family: 'Playfair Display', serif;
}

.client-name, .name {
  font-weight: 700;
  color: var(--earth-brown);
  margin-bottom: 4px;
  font-size: 16px;
}

.client-position, .client-meta, .position {
  color: var(--stone-gray);
  font-size: 14px;
  margin-bottom: 12px;
}

.rating {
  color: var(--golden-harvest);
  font-size: 18px;
  margin-top: 12px;
}

/* STATS - ORGANIC HIGHLIGHTS */
.stats {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  padding: 60px 20px;
}

.stats h2 {
  color: var(--soft-white);
}

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

.stat-card {
  flex: 1 1 220px;
  max-width: 260px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--soft-white);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: var(--soft-white);
  font-weight: 500;
}

/* CTA SECTION - ORGANIC CALL TO ACTION */
.cta-section {
  background: linear-gradient(135deg, var(--leaf-green) 0%, var(--sage-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23FFFEF9" opacity="0.2"/></svg>');
}

.cta-section h2 {
  color: var(--soft-white);
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--soft-white);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.trust-note {
  color: var(--soft-white);
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* PAGE HERO - BREADCRUMBS */
.page-hero {
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  padding: 60px 20px 40px;
  border-bottom: 3px solid var(--sage-green);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--warm-wood);
}

.breadcrumbs span {
  color: var(--earth-brown);
  font-weight: 600;
}

.page-hero h1 {
  font-size: 48px;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.page-hero .intro {
  font-size: 18px;
  color: var(--earth-brown);
  max-width: 700px;
  margin: 0 auto;
}

/* TEAM GRID - ORGANIC CARDS */
.team-grid, .credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-card, .credential-item {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  border-top: 4px solid var(--sage-green);
  text-align: center;
  margin-bottom: 20px;
}

.team-card h3 {
  color: var(--earth-brown);
  font-size: 24px;
  margin-bottom: 8px;
}

.team-card .title {
  color: var(--sage-green);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.team-card .bio {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-card .specialization {
  color: var(--warm-wood);
  font-size: 14px;
  font-style: italic;
}

/* SERVICES DETAILED */
.service-detail {
  background-color: var(--soft-white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  margin-bottom: 40px;
  border-left: 4px solid var(--sage-green);
}

.service-detail h2 {
  text-align: left;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.service-description {
  font-size: 16px;
  color: var(--earth-brown);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  margin: 24px 0;
}

.service-features h3 {
  color: var(--sage-green);
  font-size: 20px;
  margin-bottom: 16px;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: 700;
  font-size: 18px;
}

/* COURSE CARDS */
.course-card, .online-card {
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  margin-bottom: 32px;
  border-top: 4px solid var(--sage-green);
}

.course-card h3 {
  color: var(--earth-brown);
  font-size: 26px;
  margin-bottom: 12px;
}

.course-meta, .course-date {
  color: var(--stone-gray);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.course-description {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.course-includes {
  background-color: var(--sand);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--earth-brown);
}

.availability {
  color: var(--sage-green);
  font-weight: 600;
  font-size: 14px;
  margin: 12px 0;
}

.course-modules {
  margin: 20px 0;
}

.course-modules strong {
  color: var(--sage-green);
  display: block;
  margin-bottom: 12px;
}

.course-modules ul {
  list-style: none;
  padding-left: 0;
}

.course-modules li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--earth-brown);
  font-size: 14px;
}

.course-modules li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-size: 20px;
}

/* CATEGORY FILTERS */
.category-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--soft-white);
  border: 2px solid var(--sand);
  border-radius: 24px;
  color: var(--earth-brown);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--sage-green);
  color: var(--soft-white);
  border-color: var(--sage-green);
}

/* BLOG ARTICLES */
.featured-card {
  background-color: var(--soft-white);
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 24px var(--earth-shadow);
  text-align: left;
  border-left: 6px solid var(--sage-green);
  margin-bottom: 40px;
}

.featured-card .category {
  display: inline-block;
  background-color: var(--sage-green);
  color: var(--soft-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-card h2 {
  text-align: left;
  font-size: 32px;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.excerpt {
  color: var(--earth-brown);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}

.article-card {
  flex: 1 1 340px;
  max-width: 380px;
  background-color: var(--soft-white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--earth-shadow);
  transition: all 0.3s ease;
  border-top: 3px solid var(--sage-green);
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(122, 155, 118, 0.3);
}

.article-card .category {
  display: inline-block;
  background-color: var(--leaf-green);
  color: var(--soft-white);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 20px;
  color: var(--earth-brown);
  margin-bottom: 12px;
}

.read-more {
  color: var(--warm-wood);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--golden-harvest);
}

/* TIPS HIGHLIGHTS */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.tip-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  text-align: center;
  border: 2px solid var(--sand);
  margin-bottom: 20px;
}

.tip-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.tip-card h3 {
  color: var(--sage-green);
  font-size: 20px;
  margin-bottom: 12px;
}

.tip-card p {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--leaf-green) 100%);
  padding: 60px 20px;
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  color: var(--soft-white);
  font-size: 32px;
  margin-bottom: 16px;
}

.newsletter-box p {
  color: var(--soft-white);
  font-size: 16px;
  margin-bottom: 24px;
}

.newsletter-form-placeholder {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.form-input {
  flex: 1 1 280px;
  max-width: 400px;
  padding: 14px 20px;
  border: 2px solid var(--soft-white);
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--soft-white);
  color: var(--earth-brown);
}

.form-input:focus {
  outline: none;
  border-color: var(--golden-harvest);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.privacy-note {
  color: var(--soft-white);
  font-size: 13px;
  opacity: 0.9;
}

/* RESOURCES GRID */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.resource-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  text-align: center;
  border-top: 4px solid var(--sage-green);
  margin-bottom: 20px;
}

.resource-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.resource-card h3 {
  color: var(--earth-brown);
  font-size: 22px;
  margin-bottom: 12px;
}

.resource-card p {
  color: var(--earth-brown);
  font-size: 15px;
  margin-bottom: 20px;
}

/* CONTACT FORMS */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  text-align: center;
  border-top: 4px solid var(--sage-green);
  margin-bottom: 20px;
}

.contact-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.contact-card h3 {
  color: var(--earth-brown);
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-card .note {
  color: var(--stone-gray);
  font-size: 13px;
  font-style: italic;
  margin-top: 12px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--soft-white);
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 24px var(--earth-shadow);
  border-top: 4px solid var(--sage-green);
}

.form-wrapper h2 {
  text-align: left;
  color: var(--earth-brown);
  margin-bottom: 12px;
}

.form-intro {
  color: var(--earth-brown);
  font-size: 16px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--earth-brown);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: var(--earth-brown);
  background-color: var(--soft-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(122, 155, 118, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--earth-brown);
  font-weight: 400;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  color: var(--stone-gray);
  font-size: 13px;
  margin-top: 16px;
}

/* MAP SECTION */
.map-placeholder {
  background-color: var(--sand);
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--sage-green);
}

.map-info {
  font-size: 18px;
  font-weight: 600;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.directions {
  margin-top: 24px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.directions strong {
  color: var(--sage-green);
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}

.directions p {
  color: var(--earth-brown);
  font-size: 14px;
  margin-bottom: 8px;
}

/* LEGAL PAGES */
.legal-content {
  background-color: var(--soft-white);
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--soft-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
}

.content-wrapper h2 {
  text-align: left;
  color: var(--earth-brown);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.content-wrapper h3 {
  color: var(--sage-green);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

.content-wrapper p {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.content-wrapper li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
}

.content-wrapper li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-size: 20px;
}

.last-updated {
  color: var(--stone-gray);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.info-box, .contact-box {
  background-color: var(--sand);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
  margin: 24px 0;
}

.info-box p, .contact-box p {
  margin-bottom: 12px;
  color: var(--earth-brown);
}

/* RIGHTS GRID */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.right-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  text-align: center;
  border-top: 4px solid var(--sage-green);
  margin-bottom: 20px;
}

.right-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.right-card h3 {
  color: var(--earth-brown);
  font-size: 20px;
  margin-bottom: 12px;
}

.right-card p {
  color: var(--earth-brown);
  font-size: 14px;
  line-height: 1.6;
}

/* COOKIE TABLES */
.cookie-table {
  overflow-x: auto;
  margin: 24px 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--soft-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--earth-shadow);
}

.cookie-table th {
  background-color: var(--sage-green);
  color: var(--soft-white);
  padding: 14px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.cookie-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--sand);
  color: var(--earth-brown);
  font-size: 14px;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* CONFIRMATION PAGE */
.confirmation-hero {
  background: linear-gradient(135deg, var(--leaf-green) 0%, var(--sage-green) 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--soft-white);
  color: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 6px 24px rgba(122, 155, 118, 0.3);
}

.confirmation-hero h1 {
  color: var(--soft-white);
  font-size: 40px;
  margin-bottom: 16px;
}

.confirmation-message {
  color: var(--soft-white);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card, .content-card {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--earth-shadow);
  text-align: center;
  border-top: 4px solid var(--sage-green);
  margin-bottom: 20px;
}

.step-card img, .content-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.step-card h3, .content-card h3 {
  color: var(--earth-brown);
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p, .content-card p {
  color: var(--earth-brown);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* FOOTER - ORGANIC NATURE STYLE */
footer {
  background: linear-gradient(180deg, var(--earth-brown) 0%, var(--bark) 100%);
  color: var(--soft-white);
  padding: 60px 20px 20px;
  border-top: 4px solid var(--sage-green);
}

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

.footer-brand {
  flex: 1 1 280px;
  max-width: 320px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.6;
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
  color: var(--golden-harvest);
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--sand);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--golden-harvest);
}

.footer-column p {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--sand);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--golden-harvest);
}

.copyright {
  color: var(--stone-gray);
  font-size: 13px;
}

/* COOKIE CONSENT BANNER - ORGANIC STYLE */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--bark) 100%);
  color: var(--soft-white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--sage-green);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sand);
}

.cookie-consent-text strong {
  color: var(--golden-harvest);
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Open Sans', sans-serif;
}

.cookie-btn-accept {
  background-color: var(--sage-green);
  color: var(--soft-white);
  border-color: var(--sage-green);
}

.cookie-btn-accept:hover {
  background-color: var(--moss-green);
  border-color: var(--moss-green);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--sand);
  border-color: var(--sand);
}

.cookie-btn-reject:hover {
  background-color: var(--warm-wood);
  color: var(--soft-white);
  border-color: var(--warm-wood);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--golden-harvest);
  border-color: var(--golden-harvest);
}

.cookie-btn-settings:hover {
  background-color: var(--golden-harvest);
  color: var(--earth-brown);
}

/* COOKIE MODAL */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: var(--soft-white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--sage-green);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: var(--earth-brown);
  font-size: 28px;
  margin: 0;
}

.cookie-modal-close {
  background-color: var(--warm-wood);
  color: var(--soft-white);
  border: none;
  padding: 8px 12px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: var(--golden-harvest);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: var(--earth-brown);
  font-size: 20px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--stone-gray);
  transition: 0.3s;
  border-radius: 28px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: var(--soft-white);
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--sage-green);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-description {
  color: var(--earth-brown);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .benefits-grid, .services-grid, .team-grid,
  .testimonials-grid, .stats-grid, .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card, .service-card, .team-card,
  .testimonial-card, .stat-card {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .hero {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .section, section {
    padding: 32px 16px;
  }

  .benefit-card, .service-card, .team-card {
    padding: 24px 20px;
  }

  .form-wrapper {
    padding: 24px 20px;
  }

  .cookie-modal-content {
    padding: 20px;
  }
}

/* TABLET OPTIMIZATION */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid, .services-grid, .team-grid {
    justify-content: space-around;
  }

  .benefit-card, .service-card, .team-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

/* SMOOTH SCROLLING & ANIMATIONS */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

/* FOCUS STATES */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--golden-harvest);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu,
  #cookie-consent-banner, #cookie-settings-modal {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}