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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #fef8f0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3a1b;
  margin-bottom: 16px;
}

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

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

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

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

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

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

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(26, 58, 27, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-weight: 600;
  color: #2d3748;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #2C5F2D;
  border-bottom-color: #97D884;
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F2D;
  padding-left: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #2C5F2D;
  color: white;
  border-color: #2C5F2D;
}

.btn-primary:hover {
  background-color: #1a3a1b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #2C5F2D;
  border-color: #2C5F2D;
}

.btn-secondary:hover {
  background-color: #2C5F2D;
  color: white;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(151, 216, 132, 0.1);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  color: #1a3a1b;
  margin-bottom: 24px;
}

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

.trust-indicators {
  margin-top: 32px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  font-weight: 600;
  color: #2C5F2D;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

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

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

/* Value Proposition */
.value-proposition {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-proposition h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

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

.benefit-card {
  background: linear-gradient(135deg, #f7ead6 0%, #fef8f0 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.15);
}

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

/* Services Overview */
.services-overview {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  padding: 60px 20px;
  border-radius: 24px;
  color: white;
}

.services-overview h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: #1a3a1b;
  margin-bottom: 16px;
}

.service-card p {
  color: #4a5568;
  flex-grow: 1;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F2D;
  margin: 16px 0;
}

/* How It Works */
.how-it-works {
  background-color: #fef8f0;
  padding: 60px 20px;
  border-radius: 24px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2C5F2D 0%, #97D884 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.step h3 {
  margin-bottom: 12px;
}

.timeline-note {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: #2C5F2D;
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  background-color: white;
  padding: 60px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #f7ead6 0%, #fef8f0 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card strong {
  color: #1a3a1b;
  font-weight: 700;
  font-style: normal;
}

/* Product Grid */
.products {
  padding: 60px 20px;
}

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

.product-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
  border: 3px solid #97D884;
  background: linear-gradient(135deg, #fef8f0 0%, #f7ead6 100%);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #2C5F2D;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.badge.eco {
  background-color: #97D884;
  color: #1a3a1b;
}

.badge.premium {
  background: linear-gradient(135deg, #2C5F2D 0%, #97D884 100%);
}

.product-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F2D;
  margin: 16px 0;
}

.product-card .features {
  list-style: none;
  margin: 16px 0;
}

.product-card .features li {
  padding: 8px 0;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.product-card .features li:before {
  content: '✓ ';
  color: #97D884;
  font-weight: 700;
  margin-right: 8px;
}

/* Comparison Table */
.comparison {
  padding: 60px 20px;
  background-color: #fef8f0;
  border-radius: 24px;
}

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

.comparison-table {
  overflow-x: auto;
  margin-bottom: 32px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: white;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

th {
  font-weight: 700;
  font-size: 16px;
}

td {
  color: #4a5568;
}

tbody tr:hover {
  background-color: #f7ead6;
}

/* Service List */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.service-item h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 28px;
  font-weight: 700;
  color: #1a3a1b;
  margin: 16px 0;
}

.service-item .duration,
.service-item .note {
  font-size: 14px;
  color: #718096;
  margin: 8px 0;
}

/* Process Timeline */
.process {
  background: linear-gradient(135deg, #f7ead6 0%, #fef8f0 100%);
  padding: 60px 20px;
  border-radius: 24px;
}

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

.phase {
  flex: 1 1 calc(20% - 26px);
  min-width: 180px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.phase-number {
  width: 56px;
  height: 56px;
  background-color: #2C5F2D;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

/* Certifications */
.certifications {
  padding: 60px 20px;
}

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

.cert-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.cert-card h4 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

/* Warranty */
.warranty {
  background-color: #fef8f0;
  padding: 60px 20px;
  border-radius: 24px;
}

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

.warranty-col {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
}

.warranty-col h3 {
  color: #2C5F2D;
  margin-bottom: 24px;
}

.warranty-col ul {
  list-style: none;
}

.warranty-col ul li {
  padding: 12px 0;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.warranty-col ul li:before {
  content: '✓ ';
  color: #97D884;
  font-weight: 700;
  margin-right: 8px;
}

/* FAQ */
.faq {
  padding: 60px 20px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  color: #2C5F2D;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #97D884;
}

.faq-item {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #1a3a1b;
  margin-bottom: 16px;
}

/* Contact Methods */
.contact-methods {
  padding: 60px 20px;
}

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

.method-card {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.method-card h3 {
  color: white;
  margin-bottom: 16px;
}

.method-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-section {
  background-color: white;
  padding: 60px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background-color: #f7ead6;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  color: #2d3748;
}

/* Office Info */
.office-info {
  background: linear-gradient(135deg, #f7ead6 0%, #fef8f0 100%);
  padding: 60px 20px;
  border-radius: 24px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 32px 0;
}

.info-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
}

.info-block h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

/* Service Areas */
.service-areas {
  padding: 60px 20px;
  text-align: center;
}

.areas-content {
  max-width: 800px;
  margin: 32px auto;
}

.areas-content p {
  margin-bottom: 24px;
  font-size: 16px;
}

/* Story & Mission */
.story,
.mission-vision,
.values,
.stats,
.location {
  padding: 60px 20px;
}

.story {
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mv-grid,
.values-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.mv-card,
.value-card,
.stat-card {
  background: linear-gradient(135deg, #f7ead6 0%, #fef8f0 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.mv-card h3,
.value-card h4 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F2D;
  margin-bottom: 8px;
}

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

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: white;
  padding: 80px 20px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
}

.cta h2 {
  color: white;
  margin-bottom: 24px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.trust-note {
  margin-top: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Still Questions */
.still-questions {
  background-color: #fef8f0;
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
}

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

.option {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.option h4 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2C5F2D 0%, #97D884 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.3);
}

.subtitle {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 48px;
}

.next-steps,
.recommendations,
.testimonials-preview {
  margin: 48px 0;
}

.steps-grid,
.reco-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.reco-card {
  background: linear-gradient(135deg, #f7ead6 0%, #fef8f0 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.message-box {
  background-color: #f7ead6;
  padding: 40px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 600px;
}

.contact-info {
  margin-top: 48px;
  padding: 32px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C5F2D;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, #1a3a1b 0%, #2C5F2D 100%);
  color: white;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #97D884;
  padding-left: 4px;
}

.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.6);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3a1b 0%, #2C5F2D 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #97D884;
  color: #1a3a1b;
  border-color: #97D884;
}

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

.cookie-reject {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
  border-color: white;
  color: white;
}

/* Cookie 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;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h2 {
  color: #1a3a1b;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fef8f0;
  border-radius: 16px;
}

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

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

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

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #cbd5e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background-color: #2C5F2D;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active::after {
  left: 26px;
}

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

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

/* GDPR Notice */
.gdpr-notice {
  background-color: #f7ead6;
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}

.gdpr-notice h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.gdpr-notice p {
  color: #4a5568;
  margin-bottom: 16px;
}

.gdpr-notice a {
  color: #2C5F2D;
  font-weight: 600;
  text-decoration: underline;
}

.gdpr-notice a:hover {
  color: #1a3a1b;
}

/* Compatibility Section */
.compatibility {
  background-color: white;
  padding: 60px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.brand-logos {
  font-weight: 600;
  color: #2C5F2D;
  font-size: 18px;
  margin-top: 24px;
}

/* Notes */
.note {
  background-color: #f7ead6;
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Card adjustments */
  .benefit-card,
  .service-card,
  .product-card,
  .cert-card,
  .testimonial-card,
  .mv-card,
  .value-card,
  .stat-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .product-grid,
  .methods-grid,
  .cert-grid,
  .mv-grid,
  .values-grid,
  .stats-grid,
  .testimonial-grid {
    flex-direction: column;
  }
  
  /* Steps adjustments */
  .steps,
  .timeline {
    flex-direction: column;
  }
  
  .step,
  .phase {
    flex: 1 1 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Table responsive */
  .comparison-table {
    overflow-x: auto;
  }
  
  table {
    min-width: 600px;
  }
  
  /* Warranty content */
  .warranty-content {
    flex-direction: column;
  }
  
  .warranty-col {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  .service-card .price,
  .product-card .price {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

.benefit-card,
.service-card,
.product-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

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