/* ============================================
   BrightPath Zenith - Nature Organic Design
   Complete CSS Styles for All Pages
   ============================================ */

/* 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: #2C3E2F;
  background-color: #F9FAF7;
  overflow-x: hidden;
}

/* Typography - Nature Organic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1F5435;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

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

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #FFB833;
}

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

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

strong {
  font-weight: 600;
  color: #165028;
}

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

/* Header - Organic Natural Style */
header {
  background: linear-gradient(135deg, #F9FAF7 0%, #E8F3E8 100%);
  border-bottom: 3px solid #E0E7D9;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(31, 84, 53, 0.08);
}

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

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #165028;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(31, 84, 53, 0.1);
  color: #1F5435;
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #1F5435 0%, #165028 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(31, 84, 53, 0.25);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(31, 84, 53, 0.35);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #F9FAF7 0%, #E8F3E8 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background-color: #165028;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #165028;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.6);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(31, 84, 53, 0.1);
  border-left-color: #FFB833;
  transform: translateX(8px);
}

/* Hero Section - Organic Nature Design */
.hero {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E7D4 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 51, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 84, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.subheadline {
  font-size: 20px;
  color: #165028;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.benefit-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.benefit-points li {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: #165028;
  box-shadow: 0 4px 12px rgba(31, 84, 53, 0.12);
  border: 2px solid #E0E7D9;
}

/* Buttons - Nature Organic Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #1F5435 0%, #165028 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #165028 0%, #0F3A1C 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31, 84, 53, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #FFB833 0%, #E8A520 100%);
  color: #165028;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E8A520 0%, #D49310 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 184, 51, 0.4);
}

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

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A5F4D;
}

/* Cards & Grid Layouts - FLEXBOX ONLY */
.stats-grid,
.benefits-grid,
.services-grid,
.features-grid,
.steps-grid,
.link-grid,
.contact-grid,
.categories-grid,
.downloads-grid,
.articles-grid,
.team-grid,
.methods-grid,
.workshop-grid,
.suggestions-grid,
.tips-grid,
.age-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Card Styles - Organic Nature Design */
.stat-card,
.benefit-card,
.service-card,
.feature-card,
.step-card,
.link-card,
.contact-card,
.category-card,
.download-card,
.article-card,
.team-member,
.contact-person,
.method-card,
.workshop-card,
.suggestion-card,
.tip-card,
.age-card,
.course-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F9FAF7 100%);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(31, 84, 53, 0.1);
  border: 2px solid #E0E7D9;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.stat-card::before,
.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 184, 51, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-card:hover,
.benefit-card:hover,
.service-card:hover,
.feature-card:hover,
.link-card:hover,
.download-card:hover,
.article-card:hover,
.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(31, 84, 53, 0.2);
  border-color: #FFB833;
}

.stat-card h3,
.benefit-card h3,
.service-card h3 {
  font-size: 32px;
  color: #1F5435;
  margin-bottom: 12px;
}

.stat-card p,
.benefit-card p,
.service-card p {
  color: #4A5F4D;
  font-size: 16px;
}

/* Price Display */
.price {
  font-size: 28px;
  font-weight: 700;
  color: #FFB833;
  margin: 16px 0;
}

/* Step Cards */
.step-card {
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB833 0%, #E8A520 100%);
  color: #165028;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 184, 51, 0.3);
}

/* Testimonials - High Contrast for Readability */
.testimonials {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E7D4 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 6px 20px rgba(31, 84, 53, 0.12);
  border-left: 5px solid #FFB833;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
}

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

.testimonial-card .author {
  color: #165028;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

/* Trust Indicators */
.trust-indicators {
  background-color: #F9FAF7;
  padding: 40px 20px;
  margin-bottom: 60px;
}

/* Features Section */
.why-choose-us,
.approach {
  background: linear-gradient(135deg, #F9FAF7 0%, #E8F3E8 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background-color: #F9FAF7;
  margin-bottom: 60px;
}

.team-member,
.contact-person {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.role {
  color: #FFB833;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Mission/Vision Section */
.mission-vision,
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.milestones {
  background-color: rgba(255, 255, 255, 0.6);
  border-left: 4px solid #FFB833;
  padding: 24px 28px;
  border-radius: 12px;
  margin: 32px 0;
}

.milestones li {
  color: #2C3E2F;
  font-weight: 500;
}

/* Course Details */
.course-detailed {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.course-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F9FAF7 100%);
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px rgba(31, 84, 53, 0.1);
  border: 2px solid #E0E7D9;
}

.course-card h2 {
  color: #1F5435;
  margin-bottom: 16px;
}

.course-card h3 {
  color: #165028;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.course-card ul {
  background-color: rgba(232, 243, 232, 0.5);
  padding: 20px 20px 20px 44px;
  border-radius: 12px;
  border-left: 4px solid #FFB833;
}

/* Resources Section */
.downloads-section,
.blog-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.article-card .date {
  color: #FFB833;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* Glossary */
.glossary {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E7D4 100%);
  margin-bottom: 60px;
}

.glossary ul {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(31, 84, 53, 0.1);
}

.glossary li {
  border-bottom: 1px solid #E0E7D9;
  padding: 16px 0;
}

.glossary li:last-child {
  border-bottom: none;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, #1F5435 0%, #165028 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 20px;
}

.newsletter-signup h2 {
  color: #FFFFFF;
}

.newsletter-signup p {
  color: #E8F3E8;
}

.newsletter-signup ul {
  text-align: left;
  max-width: 600px;
  margin: 24px auto;
  color: #E8F3E8;
}

/* Age Guide */
.age-guide {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.age-card {
  border-left: 5px solid #FFB833;
}

/* Taschengeld Guide */
.taschengeld-guide {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F9FAF7 0%, #E8F3E8 100%);
  margin-bottom: 60px;
}

.taschengeld-guide ul {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(31, 84, 53, 0.1);
}

/* Contact Page */
.contact-methods,
.office-hours,
.location-map,
.team-contacts {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E7D4 100%);
  margin-bottom: 60px;
}

.form-notice {
  background-color: #FFFFFF;
  border-left: 5px solid #FFB833;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(31, 84, 53, 0.1);
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E7D4 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1F5435 0%, #165028 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 25px rgba(31, 84, 53, 0.3);
}

.confirmation-message {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.confirmation-message ol {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
  background-color: rgba(232, 243, 232, 0.5);
  padding: 24px 24px 24px 48px;
  border-radius: 12px;
}

.meanwhile-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F9FAF7 0%, #E8F3E8 100%);
  margin-bottom: 60px;
}

.social-proof {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.rating {
  font-size: 24px;
  color: #FFB833;
  margin-top: 16px;
}

/* 404 Error Page */
.error-hero {
  background: linear-gradient(135deg, #FFE8D9 0%, #FFD4B8 100%);
}

.friendly-message {
  font-size: 18px;
  color: #4A5F4D;
  margin-top: 20px;
}

.error-explanation,
.navigation-help,
.contact-offer {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.error-explanation {
  background-color: #F9FAF7;
}

.navigation-help {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E7D4 100%);
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #E0E7D9;
}

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

.quick-links {
  padding: 40px 20px;
  background-color: #F9FAF7;
  margin-bottom: 60px;
}

.quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.quick-links li {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 16px 24px;
  border-left: 4px solid #FFB833;
  box-shadow: 0 2px 8px rgba(31, 84, 53, 0.08);
  transition: all 0.3s ease;
}

.quick-links li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(31, 84, 53, 0.15);
}

/* CTA Sections */
.cta,
.cta-final {
  background: linear-gradient(135deg, #1F5435 0%, #165028 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 184, 51, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2,
.cta-final h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta p,
.cta-final p {
  color: #E8F3E8;
  font-size: 18px;
}

.highlight {
  background-color: #FFB833;
  color: #165028;
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(255, 184, 51, 0.3);
}

.contact-info {
  margin-top: 32px;
  font-size: 16px;
  color: #E8F3E8;
}

/* Footer - Nature Organic */
footer {
  background: linear-gradient(135deg, #165028 0%, #0F3A1C 100%);
  color: #E8F3E8;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 20px;
}

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

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

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

.footer-nav a:hover {
  color: #FFB833;
  transform: translateX(8px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 243, 232, 0.2);
}

.footer-bottom p {
  color: #D4E7D4;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F5435 0%, #165028 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

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

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

.cookie-btn-accept {
  background-color: #FFB833;
  color: #165028;
}

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

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

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

.cookie-btn-settings {
  background-color: transparent;
  color: #E8F3E8;
  border: 1px solid #E8F3E8;
}

.cookie-btn-settings:hover {
  background-color: rgba(232, 243, 232, 0.1);
}

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

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

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

.cookie-category {
  background-color: #F9FAF7;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #FFB833;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

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

.toggle-switch.active {
  background-color: #1F5435;
}

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

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

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .subheadline {
    font-size: 18px;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
  }

  /* Cards */
  .stat-card,
  .benefit-card,
  .service-card,
  .feature-card,
  .step-card,
  .link-card,
  .contact-card,
  .category-card,
  .download-card,
  .article-card,
  .team-member,
  .contact-person,
  .method-card,
  .workshop-card,
  .suggestion-card,
  .tip-card,
  .age-card {
    flex: 1 1 100%;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  /* Sections */
  .section,
  section {
    padding: 32px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablets */
  .stat-card,
  .benefit-card,
  .service-card,
  .feature-card,
  .step-card,
  .team-member,
  .method-card,
  .age-card {
    flex: 1 1 calc(50% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  /* Desktop */
  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .section,
  section {
    padding: 60px 40px;
  }
}

/* Accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #FFB833;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-buttons {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: #FFB833;
  color: #165028;
}

::-moz-selection {
  background-color: #FFB833;
  color: #165028;
}

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

.hero-content,
.section {
  animation: fadeIn 0.8s ease-out;
}

/* End of CSS */
