/* ===================================
   GartenHarmonie - Nature Organic Design
   Complete CSS Styles
   =================================== */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #3a3a3a;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 20px;
}

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

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #8B7355;
}

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

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

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

em {
  font-style: italic;
  color: #5a5a5a;
}

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

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

/* === Header === */
header {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f3ed 100%);
  border-bottom: 3px solid #C9B991;
  box-shadow: 0 2px 10px rgba(45, 80, 22, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(45, 80, 22, 0.1));
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2D5016;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.main-nav a:hover {
  color: #8B7355;
  background-color: rgba(201, 185, 145, 0.15);
}

/* === Mobile Menu === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5016;
  color: #faf8f5;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5016 0%, #3a6b1e 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #faf8f5;
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #faf8f5;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  border-radius: 6px;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
  color: #C9B991;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, rgba(201, 185, 145, 0.15) 0%, rgba(139, 115, 85, 0.1) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 80, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 48px;
  color: #2D5016;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: #8B7355;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 700px;
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #2D5016;
  color: #faf8f5;
  border-color: #2D5016;
}

.btn-primary:hover {
  background-color: #3a6b1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
  color: #faf8f5;
}

.btn-secondary {
  background-color: transparent;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background-color: #2D5016;
  color: #faf8f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

/* === Trust Indicators === */
.trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #2D5016;
  padding: 8px 16px;
  background-color: rgba(201, 185, 145, 0.2);
  border-radius: 20px;
  border: 1px solid rgba(45, 80, 22, 0.2);
}

/* === Value Proposition === */
.value-proposition,
.services-overview,
.quality-standards {
  padding: 50px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  margin-bottom: 60px;
}

.section-intro {
  font-size: 18px;
  color: #5a5a5a;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.values-grid,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.value-card,
.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #faf8f5 0%, #f9f7f2 100%);
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(201, 185, 145, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #2D5016 0%, #8B7355 100%);
  transition: height 0.3s ease;
  border-radius: 12px 0 0 12px;
}

.value-card:hover::before,
.service-card:hover::before {
  height: 100%;
}

.value-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.value-card h3,
.service-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
  font-size: 22px;
}

.value-card p,
.service-card p {
  color: #5a5a5a;
  line-height: 1.7;
}

/* === Services Detailed === */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border-left: 6px solid #8B7355;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(45, 80, 22, 0.15);
  border-left-color: #2D5016;
}

.service-detail h2 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail li {
  color: #4a4a4a;
  margin-bottom: 10px;
  position: relative;
  padding-left: 8px;
}

.service-detail li::marker {
  color: #8B7355;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  margin-top: 20px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(201, 185, 145, 0.2) 0%, rgba(139, 115, 85, 0.15) 100%);
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(45, 80, 22, 0.2);
}

/* === Testimonials === */
.testimonials,
.testimonials-extended {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1e 100%);
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.testimonials h2,
.testimonials-extended h2 {
  color: #faf8f5;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: rgba(250, 248, 245, 0.95);
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 20px;
  border: 2px solid rgba(201, 185, 145, 0.3);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #C9B991;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card p {
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2D5016;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(45, 80, 22, 0.2);
}

/* === CTA Banners === */
.cta-banner,
.cta-consultation,
.cta-inspiration,
.cta-meeting {
  background: linear-gradient(135deg, rgba(201, 185, 145, 0.25) 0%, rgba(139, 115, 85, 0.2) 100%);
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 60px;
  border: 3px solid rgba(45, 80, 22, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 80, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-consultation h2,
.cta-inspiration h2,
.cta-meeting h2 {
  color: #2D5016;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p,
.cta-consultation p,
.cta-inspiration p,
.cta-meeting p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #4a4a4a;
  position: relative;
  z-index: 1;
}

.cta-banner ul {
  list-style: none;
  padding: 0;
  margin: 24px auto;
  max-width: 400px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.cta-banner li {
  padding: 8px 0;
  color: #2D5016;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
}

.cta-banner li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: 700;
  font-size: 18px;
}

.cta-banner .btn-primary,
.cta-consultation .btn-primary,
.cta-inspiration .btn-primary,
.cta-meeting .btn-primary {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* === Company Story & Stats === */
.company-story,
.values {
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
}

.stats {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f3ed 100%);
  padding: 50px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.stat-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  border: 2px solid rgba(201, 185, 145, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.2);
  border-color: #8B7355;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2D5016;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card p {
  font-size: 16px;
  color: #5a5a5a;
  font-weight: 600;
}

/* === Project Showcase === */
.project-showcase {
  padding: 40px 20px;
}

.project-card {
  background-color: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 2px solid rgba(201, 185, 145, 0.3);
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #2D5016 0%, #8B7355 100%);
  transition: width 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.project-card:hover::after {
  width: 100%;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.project-card h3 {
  color: #2D5016;
  font-size: 26px;
  margin-bottom: 12px;
}

.project-meta {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}

/* === Garden Tips === */
.seasonal-tips,
.plant-guides,
.sustainable-gardening {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.season-block,
.guide-card {
  background-color: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 6px solid #C9B991;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
}

.season-block:hover,
.guide-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.15);
  border-left-color: #8B7355;
}

.season-block h3,
.guide-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.season-block ul,
.sustainable-gardening ul {
  padding-left: 24px;
}

.season-block li,
.sustainable-gardening li {
  color: #4a4a4a;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* === Contact Page === */
.contact-methods {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.contact-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-card,
.benefit-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(201, 185, 145, 0.3);
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.contact-card h3,
.benefit-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.contact-card p,
.benefit-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

.contact-form-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f3ed 100%);
  border-radius: 16px;
  margin-bottom: 60px;
}

.form-placeholder {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  max-width: 600px;
  margin: 32px auto 0;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  border: 2px solid rgba(201, 185, 145, 0.3);
}

.form-placeholder ul {
  margin-top: 20px;
}

.consultation-info,
.service-area {
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
}

/* === Legal Pages === */
.legal-content {
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
  color: #8B7355;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* === Thank You Page === */
.thank-you {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(201, 185, 145, 0.2) 0%, rgba(139, 115, 85, 0.15) 100%);
  border-radius: 16px;
  margin-bottom: 60px;
}

.thank-you h1 {
  color: #2D5016;
  margin-bottom: 20px;
}

.thank-you ol {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
  padding-left: 24px;
}

.thank-you li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #4a4a4a;
}

.additional-resources,
.contact-alternative {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(201, 185, 145, 0.3);
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.resource-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.resource-card p {
  margin-bottom: 24px;
}

/* === Footer === */
footer {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1e 100%);
  color: #faf8f5;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
}

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

.footer-section h4 {
  color: #C9B991;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-section p {
  color: rgba(250, 248, 245, 0.9);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: rgba(250, 248, 245, 0.85);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #C9B991;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: rgba(250, 248, 245, 0.7);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 248, 245, 0.2);
  margin-top: 24px;
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1e 100%);
  color: #faf8f5;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  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: 20px;
}

.cookie-banner p {
  color: #faf8f5;
  margin: 0;
  flex: 1 1 300px;
}

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

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

.cookie-accept {
  background-color: #C9B991;
  color: #2D5016;
}

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

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #faf8f5;
  border: 1px solid rgba(250, 248, 245, 0.5);
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: rgba(250, 248, 245, 0.1);
  border-color: #faf8f5;
}

/* === Cookie Modal === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #faf8f5;
  padding: 40px 32px;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #2D5016;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(201, 185, 145, 0.3);
}

.cookie-category h3 {
  color: #2D5016;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2D5016;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

.cookie-save,
.cookie-modal-close {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #2D5016;
  color: #faf8f5;
}

.cookie-save:hover {
  background-color: #3a6b1e;
}

.cookie-modal-close {
  background-color: transparent;
  color: #2D5016;
  border: 1px solid #2D5016;
}

.cookie-modal-close:hover {
  background-color: rgba(45, 80, 22, 0.1);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .contact-card,
  .benefit-card,
  .resource-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  p { font-size: 15px; }
  
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile Header */
  header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Mobile Hero */
  .hero {
    padding: 40px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  /* Mobile Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile Grids */
  .values-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .contact-grid,
  .benefits-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .contact-card,
  .benefit-card,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 24px;
  }
  
  /* Mobile Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Mobile Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 28px; }
  .tagline { font-size: 16px; }
  
  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators span {
    text-align: center;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price {
    font-size: 20px;
  }
}

/* === Print Styles === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background-color: #fff;
    color: #000;
  }
  
  header {
    position: relative;
    box-shadow: none;
    border-bottom: 2px solid #000;
  }
}

/* === Accessibility === */
:focus {
  outline: 3px solid #8B7355;
  outline-offset: 2px;
}

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

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* End of CSS */