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

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

body {
  font-family: 'Lato', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fafaf8;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #2D5F3F;
  line-height: 1.3;
  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: #4a4a4a;
}

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

a:hover {
  color: #8B4513;
}

ul {
  list-style: none;
}

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

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

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 2px solid #e8e4dc;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  height: 60px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2D5F3F;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #8B4513;
  border-bottom-color: #8B4513;
}

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  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-color: transparent;
  border: none;
  font-size: 32px;
  color: #2D5F3F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #2D5F3F;
  padding: 16px 0;
  border-bottom: 1px solid #e8e4dc;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0ede6 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #e8e4dc;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #2D5F3F;
  margin-bottom: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.subheadline {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2D5F3F;
  color: #ffffff;
  border-color: #2D5F3F;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-primary:hover {
  background-color: #8B4513;
  border-color: #8B4513;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.3);
}

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

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

.btn-link {
  padding: 8px 16px;
  background-color: transparent;
  color: #8B4513;
  border-bottom: 2px solid #8B4513;
  border-radius: 0;
  font-size: 15px;
}

.btn-link:hover {
  color: #2D5F3F;
  border-bottom-color: #2D5F3F;
}

.trust-badge {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 16px;
}

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #5a5a5a;
  font-size: 17px;
}

/* Services Grid */
.services-grid, .services-overview .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.15);
  border-color: #2D5F3F;
}

.service-card h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
}

/* Benefits Grid */
.benefits {
  background-color: #f0ede6;
  border-top: 3px solid #e8e4dc;
  border-bottom: 3px solid #e8e4dc;
}

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

.benefit-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 500px;
  text-align: center;
  padding: 24px;
}

.benefit-item h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-item p {
  color: #5a5a5a;
  font-size: 15px;
}

/* Testimonials */
.testimonials {
  background-color: #ffffff;
}

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

.testimonial-card {
  background-color: #f0ede6;
  border-left: 4px solid #8B4513;
  border-radius: 6px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 550px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.testimonial-card .author {
  color: #2D5F3F;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2D5F3F 0%, #1e4a2f 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin: 60px 20px;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #e8e4dc;
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .container p {
  color: #e8e4dc;
}

.cta-banner .btn-primary {
  background-color: #F4D03F;
  color: #2D5F3F;
  border-color: #F4D03F;
}

.cta-banner .btn-primary:hover {
  background-color: #ffffff;
  color: #2D5F3F;
  border-color: #ffffff;
}

.availability {
  color: #e8e4dc;
  font-size: 14px;
  margin-top: 16px;
}

/* Services Detailed */
.services-detailed .service-detail {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services-detailed .service-detail h2 {
  text-align: left;
  color: #2D5F3F;
  margin-bottom: 16px;
}

.services-detailed .service-detail p {
  text-align: left;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.services-detailed .service-detail .price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
  display: block;
}

/* FAQ Section */
.faq, .faq-contact, .expert-qa {
  background-color: #f0ede6;
}

.faq-item, .qa-item {
  background-color: #ffffff;
  border-left: 4px solid #2D5F3F;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3, .qa-item h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p, .qa-item p {
  color: #5a5a5a;
  margin-bottom: 0;
}

/* Story/Text Section */
.story, .text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Expertise Grid */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.expertise-item {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expertise-item h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 18px;
}

.expertise-item p {
  color: #5a5a5a;
  font-size: 14px;
}

.statistic {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #8B4513;
  text-align: center;
  margin-top: 32px;
}

/* Local Commitment */
.commitment-list {
  max-width: 600px;
  margin: 32px auto;
}

.commitment-list li {
  padding: 12px 0 12px 32px;
  color: #4a4a4a;
  font-size: 16px;
  position: relative;
}

.commitment-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-weight: 700;
  font-size: 18px;
}

/* Tips Categories */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tip-category {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(45, 95, 63, 0.15);
  border-color: #2D5F3F;
}

.tip-category h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

/* Tips List */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.tip-card {
  background-color: #ffffff;
  border-left: 4px solid #8B4513;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 20px;
}

.tip-card p {
  color: #5a5a5a;
  margin-bottom: 0;
}

/* Care Basics - Pillars */
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pillar {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pillar h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 18px;
}

.pillar p {
  color: #5a5a5a;
  font-size: 14px;
}

/* Pests Grid */
.pests-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pest-item {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pest-item h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

.pest-item p {
  color: #5a5a5a;
  font-size: 14px;
}

/* CTA Service */
.cta-service {
  background-color: #f0ede6;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
}

.cta-service .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
}

/* Blog */
.featured-article {
  background-color: #ffffff;
  border: 3px solid #2D5F3F;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 4px 16px rgba(45, 95, 63, 0.1);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background-color: #F4D03F;
  color: #2D5F3F;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-article h2 {
  text-align: left;
  color: #2D5F3F;
  margin-bottom: 16px;
}

.featured-article p {
  text-align: left;
  color: #5a5a5a;
}

.meta {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 12px;
}

/* Articles Grid */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.article-card {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(45, 95, 63, 0.15);
  border-color: #2D5F3F;
}

.article-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 18px;
}

.article-card p {
  color: #5a5a5a;
  font-size: 15px;
}

/* Popular Articles */
.popular-list {
  max-width: 600px;
  margin: 0 auto;
  counter-reset: popular-counter;
}

.popular-list li {
  padding: 16px 0 16px 48px;
  color: #4a4a4a;
  font-size: 16px;
  border-bottom: 1px solid #e8e4dc;
  position: relative;
  counter-increment: popular-counter;
}

.popular-list li:before {
  content: counter(popular-counter);
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #2D5F3F;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
}

/* Contact Page */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.method-card {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.method-card h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
}

.method-card a {
  color: #8B4513;
  font-weight: 600;
}

.method-card a:hover {
  text-decoration: underline;
}

.detail {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 8px;
}

.hours-list {
  max-width: 400px;
  margin: 24px auto;
}

.hours-list li {
  padding: 12px 0;
  color: #4a4a4a;
  font-size: 16px;
  border-bottom: 1px solid #e8e4dc;
}

/* Legal Content */
.legal-content {
  background-color: #ffffff;
}

.legal-content .text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.legal-content h2 {
  text-align: left;
  color: #2D5F3F;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content p {
  text-align: left;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Thank You Page */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D5F3F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(45, 95, 63, 0.2);
}

.steps-list {
  max-width: 600px;
  margin: 32px auto;
  counter-reset: step-counter;
}

.steps-list li {
  padding: 16px 0 16px 48px;
  color: #4a4a4a;
  font-size: 16px;
  margin-bottom: 16px;
  position: relative;
  counter-increment: step-counter;
}

.steps-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #2D5F3F;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.suggestion-card {
  background-color: #ffffff;
  border: 2px solid #e8e4dc;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.suggestion-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
  font-size: 18px;
}

.suggestion-card p {
  color: #5a5a5a;
  margin-bottom: 16px;
}

.rating {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #8B4513;
  text-align: center;
  margin-top: 16px;
}

/* Footer */
footer {
  background-color: #2D5F3F;
  color: #e8e4dc;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-info, .footer-contact, .footer-links {
  flex: 1 1 250px;
}

.footer-info img {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  max-width: 150px;
}

.footer-info p, .footer-contact p {
  color: #e8e4dc;
  font-size: 14px;
  line-height: 1.6;
}

footer h4 {
  color: #F4D03F;
  font-size: 18px;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #e8e4dc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #F4D03F;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #b8b4a8;
  font-size: 13px;
  padding-top: 24px;
  border-top: 1px solid #3d6f4f;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 3px solid #2D5F3F;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 950;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  display: block;
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2D5F3F;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #1e4a2f;
}

.cookie-reject {
  background-color: #8B4513;
  color: #ffffff;
}

.cookie-reject:hover {
  background-color: #6d3410;
}

.cookie-settings {
  background-color: transparent;
  color: #2D5F3F;
  border: 2px solid #2D5F3F;
}

.cookie-settings:hover {
  background-color: #f0ede6;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2D5F3F;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #8B4513;
}

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

.cookie-category {
  border-bottom: 1px solid #e8e4dc;
  padding: 20px 0;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2D5F3F;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #2D5F3F;
  opacity: 0.6;
  cursor: not-allowed;
}

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

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

.cookie-save {
  flex: 1;
  padding: 12px 24px;
  background-color: #2D5F3F;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background-color: #1e4a2f;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  /* Grids */
  .services-grid, .benefits-grid, .expertise-grid, .tips-grid, .pillars-grid, .pests-grid, .articles-grid, .methods-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card, .benefit-item, .expertise-item, .tip-category, .pillar, .pest-item, .article-card, .method-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-info, .footer-contact, .footer-links {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  /* Suggestions Grid */
  .suggestions-grid {
    flex-direction: column;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pillar {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

/* Focus States for Accessibility */
a:focus, button:focus, input:focus {
  outline: 2px solid #8B4513;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}