/* CSS Reset and 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', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fdfbf7;
  overflow-x: hidden;
}

/* Nature Organic Color Palette */
:root {
  --primary-color: #4a7c59;
  --secondary-color: #8b6f47;
  --accent-color: #a8c686;
  --earth-tone: #d4a574;
  --natural-beige: #f5f1e8;
  --forest-green: #2d5016;
  --sage-green: #9caf88;
  --clay-brown: #8b6f47;
  --cream: #fdfbf7;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --shadow: rgba(74, 124, 89, 0.15);
}

/* Typography - Nature Organic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest-green);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--forest-green);
}

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

li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

strong {
  color: var(--forest-green);
  font-weight: 600;
}

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

/* Header with Organic Feel */
header {
  background: linear-gradient(to bottom, var(--cream), var(--natural-beige));
  border-bottom: 3px solid var(--accent-color);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--shadow);
}

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

header img {
  height: 50px;
  width: auto;
}

header nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

header nav a:hover {
  background-color: var(--accent-color);
  color: var(--forest-green);
  transform: translateY(-2px);
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

header nav a:hover::after {
  width: 80%;
  left: 10%;
}

/* CTA Button - Organic Rounded */
.cta-button, .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--forest-green));
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  text-align: center;
}

.cta-button:hover, .btn-primary:hover {
  background: linear-gradient(135deg, var(--forest-green), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.25);
  color: white;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--forest-green);
  border-bottom-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(to bottom, var(--cream), var(--natural-beige));
  box-shadow: -4px 0 20px var(--shadow);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  background-color: white;
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.mobile-nav a:hover {
  background-color: var(--accent-color);
  color: var(--forest-green);
  border-left-color: var(--primary-color);
  transform: translateX(8px);
}

/* Hero Section - Nature Inspired */
.hero {
  background: linear-gradient(135deg, var(--natural-beige) 0%, var(--cream) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent-color);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}

.hero .content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

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

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

.hero .trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero .trust-indicators span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 16px;
  padding: 8px 16px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--shadow);
}

/* Hero Interior Pages */
.hero-interior {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-color) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
}

.hero-interior h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-interior p {
  font-size: 18px;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections with Organic Spacing */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 48px;
  color: var(--forest-green);
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Problems Grid - Flexbox */
.problems {
  background-color: var(--natural-beige);
  border-radius: 20px;
}

.problems-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.problem-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  border-left: 6px solid var(--accent-color);
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
  border-left-color: var(--primary-color);
}

.problem-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 20px;
}

.problem-item p {
  color: var(--text-light);
  font-size: 15px;
}

/* Services Grid - Flexbox */
.services-preview {
  background-color: var(--cream);
}

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

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 6px solid var(--accent-color);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(74, 124, 89, 0.25);
}

.service-card h3 {
  color: var(--forest-green);
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-dark);
  font-size: 15px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin: 8px 0;
}

/* Benefits Grid - Flexbox */
.benefits {
  background: linear-gradient(135deg, var(--natural-beige) 0%, var(--cream) 100%);
  border-radius: 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.2);
  border-color: var(--primary-color);
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 15px;
}

/* Process Steps - Flexbox */
.process {
  background-color: var(--natural-beige);
  border-radius: 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  background-color: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

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

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

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

/* Testimonials - Readable Dark Text */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, var(--natural-beige) 100%);
  border-radius: 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  background-color: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
  border-left: 6px solid var(--accent-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(74, 124, 89, 0.25);
  border-left-color: var(--primary-color);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-card .client-name {
  font-weight: 600;
  color: var(--forest-green);
  font-size: 14px;
  display: block;
}

/* CTA Final Section */
.cta-final, .cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--forest-green) 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 20px;
}

.cta-final h2, .cta-section h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-final h2::after, .cta-section h2::after {
  background: linear-gradient(to right, white, var(--accent-color));
}

.cta-final p, .cta-section p {
  font-size: 18px;
  color: white;
  margin-bottom: 32px;
}

.cta-final .btn-primary, .cta-section .btn-primary {
  background-color: white;
  color: var(--primary-color);
  padding: 16px 40px;
  font-size: 18px;
}

.cta-final .btn-primary:hover, .cta-section .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--forest-green);
}

/* Services Detailed */
.services-detailed .service-block {
  background-color: white;
  padding: 48px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow);
  border-top: 6px solid var(--accent-color);
  transition: all 0.3s ease;
}

.services-detailed .service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(74, 124, 89, 0.2);
}

.services-detailed .service-block h2 {
  text-align: left;
  color: var(--forest-green);
  font-size: 28px;
  margin-bottom: 20px;
}

.services-detailed .service-block h2::after {
  display: none;
}

.services-detailed .service-block h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.services-detailed .service-block ul {
  margin-bottom: 24px;
}

.services-detailed .service-block li {
  padding-left: 8px;
  position: relative;
}

.services-detailed .service-block li::before {
  content: '🌿';
  position: absolute;
  left: -24px;
}

.price-box {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--sage-green));
  color: var(--forest-green);
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0;
  box-shadow: 0 4px 12px var(--shadow);
}

/* Portfolio */
.portfolio-showcase .case-study {
  background-color: white;
  padding: 48px;
  margin-bottom: 48px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow);
  border-left: 8px solid var(--accent-color);
  transition: all 0.3s ease;
}

.portfolio-showcase .case-study:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 32px rgba(74, 124, 89, 0.25);
  border-left-color: var(--primary-color);
}

.portfolio-showcase .case-study h2 {
  text-align: left;
  color: var(--forest-green);
  font-size: 28px;
  margin-bottom: 24px;
}

.portfolio-showcase .case-study h2::after {
  display: none;
}

.project-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--natural-beige);
  border-radius: 12px;
}

.project-info .metric {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  padding: 8px 16px;
  background-color: white;
  border-radius: 20px;
}

.portfolio-showcase .case-study h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* Stats Grid - Flexbox */
.stats {
  background: linear-gradient(135deg, var(--natural-beige) 0%, var(--cream) 100%);
  border-radius: 20px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  font-weight: 500;
}

/* Guide Content */
.guide-content .article-block {
  background-color: white;
  padding: 48px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow);
  border-top: 6px solid var(--accent-color);
}

.guide-content .article-block h2 {
  text-align: left;
  color: var(--forest-green);
  font-size: 28px;
  margin-bottom: 20px;
}

.guide-content .article-block h2::after {
  display: none;
}

.guide-content .article-block ol li,
.guide-content .article-block ul li {
  margin-bottom: 16px;
  line-height: 1.7;
}

.guide-content .article-block ol li::marker {
  color: var(--primary-color);
  font-weight: 700;
}

/* Contact */
.contact-info {
  background-color: var(--natural-beige);
  border-radius: 20px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 6px solid var(--accent-color);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(74, 124, 89, 0.25);
  border-top-color: var(--primary-color);
}

.contact-card h3 {
  color: var(--forest-green);
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-card p {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-section {
  background-color: var(--cream);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow);
}

.form-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  text-align: center;
}

.form-note {
  background-color: var(--natural-beige);
  padding: 24px;
  border-radius: 12px;
  border-left: 6px solid var(--accent-color);
  margin-top: 24px;
}

.form-note p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* FAQ */
.faq-contact {
  background-color: var(--natural-beige);
  border-radius: 20px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  padding: 32px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
  border-left: 6px solid var(--accent-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.2);
  border-left-color: var(--primary-color);
}

.faq-item h3 {
  color: var(--forest-green);
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

/* Next Steps Grid - Flexbox */
.next-steps, .office-details {
  background-color: var(--cream);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.step-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
  border-top-color: var(--primary-color);
}

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

.step-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* Text Sections */
.text-section {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow);
}

.text-section h2 {
  text-align: left;
  color: var(--forest-green);
  font-size: 28px;
  margin-bottom: 20px;
}

.text-section h2::after {
  margin: 16px 0;
}

.text-section h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* Mission Values */
.mission-values, .story, .approach, .expertise {
  background-color: var(--cream);
}

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

.value-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.3s ease;
  border-left: 6px solid var(--accent-color);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(74, 124, 89, 0.25);
  border-left-color: var(--primary-color);
}

.value-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 12px;
}

.value-item p {
  color: var(--text-dark);
  font-size: 15px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-color) 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
}

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

.thank-you-hero .confirmation-message {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.meanwhile, .contact-reminder {
  background-color: var(--natural-beige);
  border-radius: 20px;
}

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

.suggestion-card, .link-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 6px solid var(--accent-color);
}

.suggestion-card:hover, .link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(74, 124, 89, 0.25);
  border-top-color: var(--primary-color);
}

.suggestion-card h3, .link-card h3 {
  color: var(--forest-green);
  font-size: 22px;
  margin-bottom: 12px;
}

.suggestion-card p, .link-card p {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-email {
  font-size: 24px;
  color: var(--primary-color);
  margin: 24px 0;
}

/* Legal Pages */
.legal-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--forest-green) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid var(--accent-color);
}

.legal-hero h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.legal-hero p {
  font-size: 16px;
  color: white;
}

.legal-content {
  background-color: var(--cream);
}

/* Footer - Organic Natural Style */
footer {
  background: linear-gradient(to bottom, var(--forest-green), var(--primary-color));
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid var(--accent-color);
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, var(--forest-green), var(--primary-color));
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

#cookie-consent p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
  color: white;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

#accept-cookies {
  background-color: white;
  color: var(--primary-color);
}

#accept-cookies:hover {
  background-color: var(--accent-color);
  color: var(--forest-green);
  transform: translateY(-2px);
}

#reject-cookies {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

#reject-cookies:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#cookie-settings {
  background-color: transparent;
  color: white;
  border: 2px solid var(--accent-color);
}

#cookie-settings:hover {
  background-color: var(--accent-color);
  color: var(--forest-green);
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-content h2 {
  color: var(--forest-green);
  margin-bottom: 24px;
  font-size: 28px;
}

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

.cookie-category h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

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

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

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  min-width: 140px;
}

#save-cookie-preferences {
  background-color: var(--primary-color);
  color: white;
}

#save-cookie-preferences:hover {
  background-color: var(--forest-green);
  transform: translateY(-2px);
}

#close-cookie-modal {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-light);
}

#close-cookie-modal:hover {
  background-color: var(--natural-beige);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Typography Adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  .hero .cta-buttons {
    flex-direction: column;
  }
  
  .hero .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-interior h1 {
    font-size: 32px;
  }
  
  .hero-interior p {
    font-size: 16px;
  }
  
  /* Section Padding */
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero-interior {
    padding: 48px 16px;
  }
  
  /* Flexbox Layouts Mobile */
  .problems-grid,
  .services-grid,
  .benefits-grid,
  .process-steps,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .contact-methods,
  .steps-grid,
  .suggestions-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .problem-item,
  .service-card,
  .benefit-item,
  .step,
  .testimonial-card,
  .stat-item,
  .value-item,
  .contact-card,
  .step-item,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer Mobile */
  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner Mobile */
  #cookie-consent {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  
  #cookie-consent p {
    flex: 1 1 100%;
    margin-bottom: 16px;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Padding Adjustments */
  .text-section,
  .form-container,
  .services-detailed .service-block,
  .portfolio-showcase .case-study,
  .guide-content .article-block {
    padding: 32px 24px;
  }
  
  /* Project Info Mobile */
  .project-info {
    flex-direction: column;
    gap: 12px;
  }
  
  .project-info .metric {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-interior h1,
  .thank-you-hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price-box {
    font-size: 20px;
    padding: 12px 24px;
  }
}

/* Smooth Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to cards */
.service-card,
.problem-item,
.benefit-item,
.testimonial-card,
.case-study {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  .hero,
  section {
    page-break-inside: avoid;
  }
}