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

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

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* Warm Friendly Color Palette */
:root {
  --primary-color: #2D5F3F;
  --secondary-color: #8B4789;
  --accent-color: #E8D5B7;
  --warm-beige: #FFF8F0;
  --warm-cream: #FAF3E8;
  --soft-green: #A8C5A8;
  --coral-accent: #FF9D7E;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
}

/* Typography - Warm and Friendly */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

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

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

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

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

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

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

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

/* Header - Warm and Welcoming */
header {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-color) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--secondary-color);
}

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

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

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

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

.main-nav a {
  color: var(--primary-color);
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.main-nav a:hover {
  background-color: var(--white);
  color: var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Button - Warm and Inviting */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, var(--coral-accent) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 157, 126, 0.3);
  text-align: center;
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 157, 126, 0.4);
  color: var(--white);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-color) 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  padding: 80px 30px 30px;
}

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

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

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

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

.mobile-nav a {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateX(5px);
}

/* Hero Section - Warm and Inviting */
.hero {
  background: linear-gradient(135deg, var(--soft-green) 0%, var(--accent-color) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero .subheadline {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

.introduction,
.services-preview,
.benefits,
.testimonials,
.cta-section {
  text-align: center;
}

.introduction {
  background-color: var(--white);
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-props {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 30px;
}

.value-props li {
  background-color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-props li:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Service Cards - Warm and Friendly */
.services-grid,
.benefits-grid,
.category-grid,
.plant-grid,
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.benefit-card,
.category-card,
.plant-card,
.service-detail-card,
.approach-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
  border: 3px solid var(--accent-color);
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.category-card:hover,
.plant-card:hover,
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 71, 137, 0.2);
  border-color: var(--secondary-color);
}

.service-card h3,
.benefit-card h3,
.category-card h3,
.plant-card h3,
.approach-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-card .price {
  color: var(--coral-accent);
  font-weight: 700;
  font-size: 20px;
  margin-top: 15px;
}

.service-detail-card {
  background-color: var(--warm-cream);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 3px solid var(--accent-color);
}

.service-detail-card h2 {
  color: var(--secondary-color);
}

.service-detail-card ul {
  list-style: none;
  margin: 20px 0;
}

.service-detail-card ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-dark);
}

.service-detail-card ul li:before {
  content: "🌿";
  position: absolute;
  left: 0;
}

.service-detail-card .price {
  color: var(--coral-accent);
  font-weight: 700;
  font-size: 24px;
  margin: 20px 0;
}

/* Testimonials - High Contrast for Readability */
.testimonials {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-color) 100%);
  border-radius: 30px;
  padding: 60px 30px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 700px;
  border-left: 5px solid var(--secondary-color);
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.testimonial-card .author {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 15px;
}

.testimonial-card .rating {
  color: var(--coral-accent);
  font-size: 20px;
  margin-top: 10px;
}

/* CTA Section - Warm and Encouraging */
.cta-section,
.cta-consultation,
.cta-contact {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--coral-accent) 100%);
  color: var(--white);
  padding: 60px 30px;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.3);
}

.cta-section h2,
.cta-consultation h2,
.cta-contact h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p,
.cta-consultation p,
.cta-contact p {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 18px;
}

.contact-info {
  margin-top: 24px;
  font-size: 14px;
  color: var(--warm-cream);
}

/* Tips and Categories */
.tips-categories {
  margin-bottom: 40px;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.category-buttons button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-buttons button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.tip-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--soft-green);
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip-card .category {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Plant Finder and Filters */
.plant-finder {
  background-color: var(--warm-cream);
  padding: 40px 30px;
  border-radius: 25px;
  margin-bottom: 50px;
}

.filter-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.filter-section label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

.filter-section select {
  padding: 10px 20px;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-section select:hover,
.filter-section select:focus {
  border-color: var(--secondary-color);
  outline: none;
}

/* Contact Page Elements */
.contact-methods {
  margin-bottom: 50px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  background-color: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  border: 3px solid var(--accent-color);
}

.method-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.form-placeholder {
  background-color: var(--warm-cream);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 30px auto;
}

.form-placeholder ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.form-placeholder ul li {
  padding: 8px 0;
  color: var(--text-dark);
}

.map-placeholder {
  background-color: var(--accent-color);
  padding: 100px;
  border-radius: 20px;
  text-align: center;
  color: var(--primary-color);
  margin-top: 30px;
}

.office-hours {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.office-hours ul {
  list-style: none;
  margin-top: 20px;
}

.office-hours ul li {
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 16px;
}

.trust-signals {
  margin-top: 50px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.badge {
  background-color: var(--soft-green);
  color: var(--primary-color);
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Legal Pages */
.legal-content {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.legal-content ul {
  margin: 15px 0 15px 30px;
}

.legal-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Thank You Page */
.confirmation {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 50px;
}

.confirmation ol {
  list-style: none;
  counter-reset: item;
  margin: 30px auto;
  max-width: 500px;
  text-align: left;
}

.confirmation ol li {
  counter-increment: item;
  padding: 15px 0 15px 50px;
  position: relative;
  color: var(--text-dark);
  font-size: 18px;
}

.confirmation ol li:before {
  content: counter(item);
  background-color: var(--soft-green);
  color: var(--primary-color);
  font-weight: 700;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 10px;
}

.next-steps {
  margin: 50px 0;
}

.cta-cards,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.cta-card,
.link-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid var(--accent-color);
}

.cta-card:hover,
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 71, 137, 0.2);
  border-color: var(--secondary-color);
}

.cta-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Expert Advice Section */
.expert-advice {
  background: linear-gradient(135deg, var(--soft-green) 0%, var(--accent-color) 100%);
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  margin: 50px 0;
}

.advice-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advice-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Story and Mission Sections */
.story,
.mission-vision,
.sustainability,
.local-recommendations,
.consultation-offer {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.mission-vision ul,
.sustainability ul,
.local-recommendations ul,
.consultation-offer ul {
  list-style: none;
  margin: 20px 0;
}

.mission-vision ul li,
.sustainability ul li,
.local-recommendations ul li,
.consultation-offer ul li {
  padding: 12px 0 12px 35px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
}

.mission-vision ul li:before,
.sustainability ul li:before,
.local-recommendations ul li:before,
.consultation-offer ul li:before {
  content: "✓";
  background-color: var(--soft-green);
  color: var(--primary-color);
  font-weight: 700;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
}

/* Footer - Warm and Friendly */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 20px 30px;
  border-radius: 50px 50px 0 0;
  margin-top: 80px;
}

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

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

.footer-column h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column p,
.footer-column a {
  color: var(--warm-cream);
  line-height: 1.8;
  transition: all 0.3s ease;
}

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

.footer-column a:hover {
  color: var(--coral-accent);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.legal-links a {
  color: var(--warm-cream);
  font-size: 14px;
}

.legal-links a:hover {
  color: var(--coral-accent);
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 25px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

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

#cookie-consent-banner p {
  color: var(--white);
  text-align: center;
  margin: 0;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

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

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

#accept-cookies:hover {
  background-color: var(--soft-green);
  transform: scale(1.05);
}

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

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

#cookie-settings {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

#cookie-settings:hover {
  background-color: var(--white);
  transform: scale(1.05);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

#cookie-settings-modal.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

#cookie-settings-modal h2 {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--warm-cream);
  border-radius: 15px;
  border-left: 4px solid var(--soft-green);
}

.cookie-category h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

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

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

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  flex-wrap: wrap;
}

.modal-buttons button {
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

#save-cookie-preferences:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

#close-cookie-modal {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

#close-cookie-modal:hover {
  background-color: var(--coral-accent);
  color: var(--white);
}

/* Modal Overlay */
#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 50px 20px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .category-card,
  .plant-card,
  .tip-card,
  .method-card,
  .cta-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-section {
    flex-direction: column;
  }
  
  .filter-section label {
    width: 100%;
  }
  
  .confirmation ol {
    padding-left: 0;
  }
  
  .legal-content {
    padding: 30px 20px;
  }
  
  #cookie-consent-banner {
    padding: 20px 15px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  #cookie-settings-modal {
    padding: 25px;
    width: 95%;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit-card,
  .category-card,
  .plant-card,
  .tip-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Smooth Transitions */
* {
  transition-property: background-color, color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

button,
a,
.service-card,
.benefit-card,
.category-card,
.tip-card,
.mobile-nav a {
  transition: all 0.3s ease;
}

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

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  #cookie-consent-banner,
  #cookie-settings-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

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

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }