/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9f3;
  overflow-x: hidden;
}

/* Nature Organic Design - Earth Tones Color Palette */
:root {
  --primary-color: #4a6741;
  --secondary-color: #7a9471;
  --accent-color: #b8a887;
  --dark-earth: #3d4f36;
  --light-earth: #e8e4d9;
  --sage: #9caf88;
  --clay: #c97d60;
  --sand: #d4c5a9;
  --forest: #2d5016;
  --moss: #6b8e23;
  --stone: #8b8680;
  --cream: #faf8f3;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #5a6c57;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-earth);
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--moss);
}

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

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 600;
  color: var(--dark-earth);
}

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

/* Header */
header {
  background-color: var(--white);
  border-bottom: 3px solid var(--accent-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.1);
}

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover {
  color: var(--moss);
  background-color: var(--light-earth);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.25);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--cream);
  background-image: 
    linear-gradient(135deg, var(--light-earth) 0%, var(--cream) 100%);
  box-shadow: -4px 0 20px rgba(74, 103, 65, 0.2);
  z-index: 999;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 24px 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--clay);
  color: var(--white);
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 125, 96, 0.3);
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 16px 20px;
  border-radius: 12px;
  background-color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(74, 103, 65, 0.1);
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateX(8px);
  border-color: var(--moss);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(184, 168, 135, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 175, 136, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--light-earth);
  font-weight: 400;
}

.trust-indicator {
  font-size: 16px;
  color: var(--sand);
  margin-bottom: 32px;
  font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.2);
}

.cta-button.primary {
  background-color: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}

.cta-button.primary:hover {
  background-color: var(--white);
  color: var(--clay);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 125, 96, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-button.secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-button:not(.primary):not(.secondary) {
  background-color: var(--moss);
  color: var(--white);
}

.cta-button:not(.primary):not(.secondary):hover {
  background-color: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.3);
}

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

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

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--light-earth);
  position: relative;
  margin-bottom: 20px;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(74, 103, 65, 0.2);
  border-color: var(--moss);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--clay);
  margin: 20px 0;
}

.service-card .link {
  color: var(--moss);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-card .link:hover {
  gap: 12px;
}

/* Service Detail */
.service-detail {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.1);
  border-left: 6px solid var(--primary-color);
}

.service-detail h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-detail h4 {
  color: var(--moss);
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--clay);
  margin-bottom: 16px;
  display: block;
}

.service-detail .highlight {
  background-color: var(--light-earth);
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--dark-earth);
  margin: 20px 0;
  border-left: 4px solid var(--moss);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.step {
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--moss);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(107, 142, 35, 0.3);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 103, 65, 0.2);
}

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

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--sage);
  margin-bottom: 20px;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 103, 65, 0.15);
  border-top-color: var(--moss);
}

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

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  position: relative;
  border-left: 4px solid var(--clay);
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: var(--light-earth);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
  padding-left: 40px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
  padding-left: 40px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--light-earth);
  margin-bottom: 20px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 103, 65, 0.15);
  border-color: var(--sage);
}

.blog-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.post-meta {
  font-size: 14px;
  color: var(--stone);
  margin-top: 12px;
}

/* Featured Post */
.featured-post {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.2);
}

.featured-post h2 {
  color: var(--white);
  text-align: left;
}

.featured-post p {
  color: var(--light-earth);
}

.featured-post .post-meta {
  color: var(--sand);
}

/* Resources Grid */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.resource-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 103, 65, 0.15);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.resource-type {
  display: inline-block;
  background-color: var(--sage);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* Guides List */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--moss);
}

.guide-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.15);
}

.guide-item h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* Alerts */
.alerts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alert-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.1);
  border-left: 6px solid var(--clay);
}

.alert-card h3 {
  color: var(--clay);
  margin-bottom: 8px;
}

/* Badge */
.badge {
  display: inline-block;
  background-color: var(--clay);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-option {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  border-top: 4px solid var(--primary-color);
  margin-bottom: 20px;
}

.contact-option h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Contact Form Info */
.contact-form-info {
  background-color: var(--cream);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--accent-color);
}

.contact-form-info .note {
  font-size: 14px;
  color: var(--stone);
  margin-top: 20px;
}

/* Contact Person */
.contact-person {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  text-align: center;
}

.contact-person .role {
  color: var(--moss);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-member {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--light-earth);
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 103, 65, 0.15);
  border-color: var(--sage);
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.team-member .role {
  color: var(--moss);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.milestone {
  background-color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 6px solid var(--moss);
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.1);
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.15);
}

/* Legal Content */
.legal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  line-height: 1.8;
}

.legal-content h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.legal-content h3 {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--moss);
}

/* Error Pages */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.3;
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.error-message {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
}

.helpful-links {
  margin-top: 40px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.link-card {
  background-color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 150px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--light-earth);
  font-weight: 600;
  color: var(--primary-color);
}

.link-card:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.2);
}

/* Success Pages */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--moss);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(107, 142, 35, 0.3);
}

.confirmation-message {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.suggestion {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.1);
  text-align: center;
  border-top: 4px solid var(--sage);
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.2);
}

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

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

/* Footer */
footer {
  background-color: var(--dark-earth);
  color: var(--light-earth);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-info,
.footer-links,
.footer-contact {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: var(--light-earth);
  font-size: 14px;
}

footer h3 {
  color: var(--sand);
  font-size: 18px;
  margin-bottom: 16px;
}

footer a {
  color: var(--light-earth);
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
}

.footer-contact p {
  color: var(--light-earth);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 168, 135, 0.3);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--stone);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(74, 103, 65, 0.2);
  z-index: 1000;
  border-top: 4px solid var(--primary-color);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-accept {
  background-color: var(--moss);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--forest);
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: var(--stone);
  color: var(--white);
}

.cookie-reject:hover {
  background-color: var(--dark-earth);
}

.cookie-settings {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cookie-settings:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(74, 103, 65, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--stone);
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--clay);
}

.cookie-modal h2 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

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

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

.cookie-category p {
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-save {
  background-color: var(--moss);
  color: var(--white);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero-section {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
  }
  
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .blog-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit,
  .testimonial-card,
  .blog-card,
  .resource-card,
  .team-member,
  .contact-option,
  .suggestion {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-info,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .link-grid {
    flex-direction: column;
  }
  
  .link-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero-section {
    padding: 40px 20px;
  }
  
  .service-card,
  .benefit,
  .testimonial-card,
  .blog-card,
  .resource-card {
    padding: 24px;
  }
  
  .service-detail,
  .legal-content {
    padding: 24px;
  }
  
  .error-code {
    font-size: 60px;
  }
}

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

.service-card,
.benefit,
.testimonial-card,
.blog-card,
.resource-card,
.step {
  animation: fadeIn 0.5s ease-out;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--moss);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  .hero-section {
    background: none;
    color: black;
  }
}
.hero-section p {
  color: #ffffff;
}