/* ===================================
   GRÜNOASE NÜRNBERG - NATURE ORGANIC DESIGN
   CSS Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2C3E1F;
  background-color: #F8F6F0;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - NATURE ORGANIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 16px;
  font-weight: 700;
}

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: 12px;
}

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

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

a:hover {
  color: #7CAA5C;
}

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

li {
  margin-bottom: 8px;
  color: #4A5D3A;
}

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

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   HEADER - NATURE ORGANIC STYLE
   =================================== */

header {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #F8F6F0;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
  background-color: #7CAA5C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU - HAMBURGER
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #F8F6F0;
  color: #F8F6F0;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 2000;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(248, 246, 240, 0.1);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  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.3);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #F8F6F0;
  color: #F8F6F0;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(248, 246, 240, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F8F6F0;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  background-color: #7CAA5C;
  border-color: #F4D35E;
  transform: translateX(8px);
}

/* ===================================
   HERO SECTIONS - ORGANIC NATURE
   =================================== */

.hero {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(58, 107, 30, 0.9) 100%), 
              url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMTAwIDAgTCAwIDAgMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  margin-bottom: 0;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(124, 170, 92, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero h1 {
  color: #F8F6F0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  font-size: 48px;
}

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

.hero p {
  color: #E8E6DB;
}

/* ===================================
   BUTTONS - ORGANIC NATURE STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  min-width: 200px;
}

.btn-primary {
  background: linear-gradient(135deg, #F4D35E 0%, #E8C54A 100%);
  color: #2D5016;
  box-shadow: 0 4px 15px rgba(244, 211, 94, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E8C54A 0%, #F4D35E 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 211, 94, 0.6);
  color: #2D5016;
}

.btn-secondary {
  background-color: transparent;
  color: #F8F6F0;
  border: 2px solid #F8F6F0;
}

.btn-secondary:hover {
  background-color: #F8F6F0;
  color: #2D5016;
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* ===================================
   TRUST BADGES & ELEMENTS
   =================================== */

.trust-badge,
.trust-element {
  display: inline-block;
  background-color: rgba(124, 170, 92, 0.2);
  color: #E8E6DB;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  border: 1px solid rgba(248, 246, 240, 0.3);
}

section .trust-badge {
  background-color: rgba(124, 170, 92, 0.15);
  color: #2D5016;
  border: 1px solid #7CAA5C;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.expertise-grid,
.stats-grid,
.tips-grid,
.plants-grid,
.category-grid,
.combo-grid,
.posts-grid,
.suggestions-grid,
.methods-grid,
.link-grid,
.season-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.expertise-card,
.stat-card,
.tip-card,
.plant-card,
.category-card,
.combo-card,
.post-card,
.suggestion-card,
.method-card,
.link-card,
.season-card,
.content-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.tip-card:hover,
.plant-card:hover,
.category-card:hover,
.combo-card:hover,
.post-card:hover,
.suggestion-card:hover,
.method-card:hover,
.link-card:hover,
.season-card:hover,
.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
  border-color: #7CAA5C;
}

.benefit-card::before,
.service-card::before,
.expertise-card::before {
  content: '🌿';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  opacity: 0.3;
}

.service-card h3,
.benefit-card h3,
.tip-card h3,
.plant-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.benefit-card p,
.tip-card p,
.plant-card p {
  color: #4A5D3A;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   PRICING & PRICE DISPLAY
   =================================== */

.price {
  display: inline-block;
  background: linear-gradient(135deg, #F4D35E 0%, #E8C54A 100%);
  color: #2D5016;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(244, 211, 94, 0.3);
}

/* ===================================
   SERVICE DETAILS
   =================================== */

.service-detail {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  border-left: 4px solid #7CAA5C;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
  transform: translateX(8px);
}

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

.service-detail .features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.service-detail .features li {
  background-color: rgba(124, 170, 92, 0.1);
  color: #2D5016;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #7CAA5C;
}

.service-detail .features li::before {
  content: '✓ ';
  color: #7CAA5C;
  font-weight: bold;
}

/* ===================================
   STEPS & PROCESS
   =================================== */

.step {
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7CAA5C 0%, #5A8A45 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(124, 170, 92, 0.3);
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #F8F6F0 0%, #EBE8DC 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-left: 4px solid #7CAA5C;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
}

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

.testimonial-card .author {
  color: #2D5016;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-top: 16px;
}

.testimonial-card .author::before {
  content: '— ';
  color: #7CAA5C;
}

/* ===================================
   STATISTICS
   =================================== */

.stats {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.stats h2 {
  color: #F8F6F0;
  text-align: center;
}

.stat-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(248, 246, 240, 0.2);
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #F4D35E;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #F4D35E;
  margin-bottom: 8px;
  font-family: 'Merriweather', Georgia, serif;
}

.stat-card p {
  color: #E8E6DB;
  font-size: 16px;
}

/* ===================================
   CATEGORIES & TAGS
   =================================== */

.category,
.difficulty,
.date,
.label {
  display: inline-block;
  background-color: #7CAA5C;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.difficulty {
  background-color: #F4D35E;
  color: #2D5016;
}

.date {
  background-color: rgba(124, 170, 92, 0.2);
  color: #2D5016;
}

.label {
  background-color: #F4D35E;
  color: #2D5016;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ===================================
   CTA BANNER - ORGANIC STYLE
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, rgba(124, 170, 92, 0.15) 0%, rgba(124, 170, 92, 0.05) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  border: 3px solid #7CAA5C;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 211, 94, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-banner p {
  color: #4A5D3A;
  font-size: 18px;
  margin-bottom: 24px;
}

/* ===================================
   CONTACT & INFO SECTIONS
   =================================== */

.contact-info,
.office-hours,
.location,
.service-area {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  margin-bottom: 32px;
}

.contact-info h2,
.office-hours h2,
.location h2,
.service-area h2 {
  color: #2D5016;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-details p {
  color: #4A5D3A;
  font-size: 16px;
}

/* ===================================
   FEATURED CONTENT
   =================================== */

.featured-post,
.featured-article {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F0 100%);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 6px 30px rgba(45, 80, 22, 0.12);
  border: 2px solid #7CAA5C;
  margin-bottom: 40px;
}

.featured-article h2 {
  color: #2D5016;
  font-size: 32px;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #4A5D3A;
  font-size: 14px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-meta span::before {
  content: '•';
  color: #7CAA5C;
}

.post-meta span:first-child::before {
  content: '';
}

/* ===================================
   LISTS & FAQ
   =================================== */

.task-list,
.popular-list,
.faq-list {
  list-style: none;
  padding: 0;
}

.task-list li,
.popular-list li {
  background-color: #FFFFFF;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  border-left: 4px solid #7CAA5C;
  box-shadow: 0 2px 10px rgba(45, 80, 22, 0.05);
  color: #2C3E1F;
  transition: all 0.3s ease;
}

.task-list li:hover,
.popular-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.task-list li::before {
  content: '🌱 ';
  margin-right: 8px;
}

.popular-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.popular-list li span {
  color: #7CAA5C;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(45, 80, 22, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #7CAA5C;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

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

.faq-item p {
  color: #4A5D3A;
  margin-bottom: 0;
}

/* ===================================
   FOOTER - ORGANIC NATURE
   =================================== */

footer {
  background: linear-gradient(135deg, #2D5016 0%, #1F3610 100%);
  color: #E8E6DB;
  padding: 60px 20px 32px;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
}

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

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

.footer-column h3,
.footer-column h4 {
  color: #F4D35E;
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-column p {
  color: #C8C6BB;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #C8C6BB;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

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

/* ===================================
   404 PAGE
   =================================== */

.hero-404 {
  background: linear-gradient(135deg, rgba(124, 170, 92, 0.2) 0%, rgba(124, 170, 92, 0.1) 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 30px;
}

.error-content h1 {
  font-size: 120px;
  color: #7CAA5C;
  margin-bottom: 16px;
  text-shadow: 4px 4px 0 rgba(45, 80, 22, 0.1);
}

.error-content h2 {
  color: #2D5016;
  font-size: 32px;
  margin-bottom: 16px;
}

.error-content p {
  color: #4A5D3A;
  font-size: 18px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.hero-thank-you {
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.2) 0%, rgba(244, 211, 94, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
}

.thank-you-content h1 {
  color: #2D5016;
  font-size: 48px;
  margin-bottom: 24px;
}

.thank-you-content h1::before {
  content: '✓ ';
  color: #7CAA5C;
}

.thank-you-content p {
  color: #4A5D3A;
  font-size: 18px;
  line-height: 1.7;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2D5016;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #EBE8DC;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: #3A6B1E;
  margin-top: 24px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #4A5D3A;
  line-height: 1.8;
}

.legal-content a {
  color: #7CAA5C;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #2D5016;
}

.quick-links {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #EBE8DC;
}

.quick-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.quick-links a {
  background-color: rgba(124, 170, 92, 0.1);
  color: #2D5016;
  padding: 12px 24px;
  border-radius: 24px;
  border: 2px solid #7CAA5C;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-links a:hover {
  background-color: #7CAA5C;
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2D5016 0%, #1F3610 100%);
  color: #F8F6F0;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  color: #E8E6DB;
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

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

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

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

.cookie-btn-reject {
  background-color: transparent;
  color: #E8E6DB;
  border: 2px solid #E8E6DB;
}

.cookie-btn-reject:hover {
  background-color: rgba(248, 246, 240, 0.1);
}

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

.cookie-btn-settings:hover {
  background-color: #7CAA5C;
  color: #FFFFFF;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 50px 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-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

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

.cookie-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;
}

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

.cookie-category {
  background-color: #F8F6F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid #EBE8DC;
}

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

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

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

.cookie-toggle.active {
  background-color: #7CAA5C;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 3px;
  left: 3px;
  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;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Card layouts - single column */
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .expertise-card,
  .stat-card,
  .tip-card,
  .plant-card,
  .category-card,
  .combo-card,
  .post-card,
  .suggestion-card,
  .method-card,
  .link-card,
  .season-card,
  .content-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer columns stack */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Buttons stack */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Padding adjustments */
  section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .service-detail,
  .featured-article,
  .legal-content {
    padding: 24px;
  }
  
  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Error page */
  .error-content h1 {
    font-size: 80px;
  }
  
  /* Post meta */
  .post-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .tip-card,
  .plant-card,
  .category-card,
  .combo-card,
  .post-card,
  .suggestion-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 calc(33.333% - 16px);
  }
}

@media (min-width: 1025px) {
  .stat-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  .step {
    flex: 1 1 calc(33.333% - 16px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations */
section {
  animation: fadeIn 0.6s ease-out;
}

.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

.btn:active {
  animation: pulse 0.3s ease;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

*:focus {
  outline: 3px solid #F4D35E;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #F4D35E;
  outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background-color: #2D5016;
  color: #F8F6F0;
  padding: 12px 24px;
  text-decoration: none;
  z-index: 3000;
}

.skip-to-content:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background-color: #FFFFFF;
  }
  
  .hero {
    background: #2D5016;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ===================================
   END OF STYLES
   =================================== */