/* CSS Reset and 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: #2D5016;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFFDF7 100%);
  overflow-x: hidden;
}

/* Playful Dynamic Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D5016;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 32px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #E8C468, #7A9D54);
  border-radius: 2px;
  animation: slideIn 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #2D5016;
}

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

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

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

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

li {
  margin-bottom: 8px;
}

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

/* Header Styles - Playful & Dynamic */
.site-header {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
  animation: slideDown 0.5s ease-out;
}

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

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(232, 196, 104, 0.3);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  background: rgba(232, 196, 104, 0.2);
  transform: translateY(-2px);
}

/* CTA Buttons - Energetic & Fun */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #E8C468 0%, #F5D77C 100%);
  color: #2D5016;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(232, 196, 104, 0.4);
  border: 3px solid transparent;
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 196, 104, 0.6);
  background: linear-gradient(135deg, #F5D77C 0%, #E8C468 100%);
}

.cta-button.primary {
  background: linear-gradient(135deg, #7A9D54 0%, #5E7A42 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(122, 157, 84, 0.4);
}

.cta-button.primary:hover {
  box-shadow: 0 6px 20px rgba(122, 157, 84, 0.6);
  transform: translateY(-3px) scale(1.05) rotate(2deg);
}

.cta-button.secondary {
  background: transparent;
  border: 3px solid #7A9D54;
  color: #2D5016;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: #7A9D54;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05) rotate(-2deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #E8C468;
  border: none;
  font-size: 32px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(232, 196, 104, 0.5);
  transition: all 0.3s ease;
  animation: bounce 1s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: #F5D77C;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #7A9D54 0%, #2D5016 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E8C468;
  border: none;
  font-size: 32px;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(232, 196, 104, 0.5);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #F5D77C;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(232, 196, 104, 0.3);
  transform: translateX(10px) scale(1.05);
  border-color: #E8C468;
}

/* Hero Section - Playful & Dynamic */
.hero {
  background: linear-gradient(135deg, #E8C468 0%, #F5D77C 50%, #7A9D54 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 30px 30px;
  animation: fadeIn 1s ease-out;
}

.hero::before {
  content: '🌱';
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 80px;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '🌻';
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 100px;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #2D5016;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: #2D5016;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
  animation: wiggle 3s ease-in-out infinite;
}

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

.page-header {
  background: linear-gradient(135deg, #7A9D54 0%, #E8C468 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  animation: slideDown 0.8s ease-out;
}

.page-header h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.3);
}

.subheadline {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 24px;
}

.page-header .subheadline {
  color: #FFFFFF;
}

/* Cards - Bright & Energetic */
.benefits-grid,
.service-grid,
.category-grid,
.care-grid,
.topic-grid,
.contact-grid,
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.category-card,
.care-card,
.topic-card,
.contact-card,
.workshop-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #E8C468, #7A9D54, #2D5016);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.care-card:hover,
.topic-card:hover,
.contact-card:hover,
.workshop-card:hover {
  transform: translateY(-10px) scale(1.05) rotate(2deg);
  box-shadow: 0 16px 40px rgba(122, 157, 84, 0.3);
  border-color: #E8C468;
}

.benefit-card:hover::before,
.service-card:hover::before,
.category-card:hover::before {
  opacity: 1;
}

.benefit-card img,
.service-card img,
.category-card img,
.care-card img,
.topic-card img,
.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(122, 157, 84, 0.3));
  transition: transform 0.3s ease;
}

.benefit-card:hover img,
.service-card:hover img,
.category-card:hover img,
.care-card:hover img,
.topic-card:hover img,
.contact-card:hover img {
  transform: scale(1.2) rotate(10deg);
}

.price,
.price-large {
  font-size: 24px;
  font-weight: 700;
  color: #7A9D54;
  margin: 20px 0;
  display: inline-block;
  background: linear-gradient(135deg, #E8C468, #F5D77C);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(232, 196, 104, 0.3);
}

.price-large {
  font-size: 32px;
  padding: 12px 24px;
}

/* Testimonials - Fun & Readable */
.testimonials {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.15);
  border-left: 5px solid #E8C468;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 32px rgba(122, 157, 84, 0.25);
  border-left-width: 8px;
}

.rating {
  color: #E8C468;
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  animation: sparkle 2s ease-in-out infinite;
}

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

.customer {
  font-style: italic;
  color: #7A9D54;
  font-size: 14px;
}

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  color: #FFFFFF;
}

.intro-text {
  text-align: center;
  font-size: 20px;
  color: #E8C468;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Contact CTA */
.contact-cta,
.contact-support {
  background: linear-gradient(135deg, #E8C468 0%, #F5D77C 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.contact-info {
  margin: 32px 0;
  font-size: 18px;
}

.contact-info p {
  margin-bottom: 12px;
}

/* Footer - Playful & Informative */
.site-footer {
  background: linear-gradient(135deg, #2D5016 0%, #1A3009 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-style: italic;
  color: #E8C468;
  font-size: 16px;
}

.footer-links {
  flex: 2 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h3 {
  color: #E8C468;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column a {
  display: block;
  color: #FFFFFF;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #E8C468;
  padding-left: 20px;
}

.footer-column a:hover::before {
  opacity: 1;
  left: 0;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(232, 196, 104, 0.3);
  color: #E8C468;
}

/* Cookie Consent Banner - Fun & Friendly */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5016 0%, #1A3009 100%);
  padding: 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #E8C468;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 14px;
}

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

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

.cookie-btn.accept {
  background: linear-gradient(135deg, #E8C468 0%, #F5D77C 100%);
  color: #2D5016;
  box-shadow: 0 4px 12px rgba(232, 196, 104, 0.4);
}

.cookie-btn.accept:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 196, 104, 0.6);
}

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

.cookie-btn.reject:hover {
  background: rgba(122, 157, 84, 0.2);
  transform: translateY(-2px);
}

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

.cookie-btn.settings:hover {
  background: rgba(232, 196, 104, 0.2);
  transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 12px;
  border-left: 4px solid #7A9D54;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #2D5016;
}

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

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

.toggle-switch.active {
  background: #7A9D54;
}

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

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

/* Error Pages */
.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #E8C468 0%, #7A9D54 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #2D5016;
  line-height: 1;
  margin-bottom: 24px;
  animation: bounce 2s infinite;
}

.success-icon {
  font-size: 100px;
  color: #7A9D54;
  margin-bottom: 24px;
  display: inline-block;
  animation: popIn 0.6s ease-out;
}

.error-explanation,
.popular-pages,
.next-steps,
.explore-content {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.reason-list {
  list-style: none;
  margin-left: 0;
}

.reason-list li {
  background: #FFFFFF;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  border-left: 4px solid #E8C468;
  box-shadow: 0 4px 12px rgba(122, 157, 84, 0.1);
  transition: all 0.3s ease;
}

.reason-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(122, 157, 84, 0.2);
}

.page-links,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-card,
.link-card {
  flex: 1 1 150px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(122, 157, 84, 0.1);
  border: 2px solid transparent;
}

.page-card:hover,
.link-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.2);
  border-color: #E8C468;
}

.page-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  transition: transform 0.3s ease;
}

.page-card:hover img {
  transform: scale(1.2) rotate(15deg);
}

.page-card span {
  display: block;
  color: #2D5016;
  font-weight: 600;
}

/* Process Steps */
.process-steps,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 220px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(122, 157, 84, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E8C468 0%, #F5D77C 100%);
  color: #2D5016;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(232, 196, 104, 0.4);
  animation: pulse 2s infinite;
}

/* Legal Content */
.legal-header {
  background: linear-gradient(135deg, #7A9D54 0%, #2D5016 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.legal-header h1 {
  color: #FFFFFF;
}

.legal-header p {
  color: #E8C468;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.legal-content ul {
  background: #F5F5F5;
  padding: 20px 20px 20px 40px;
  border-radius: 12px;
  border-left: 4px solid #7A9D54;
}

/* Rights Overview */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.right-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(122, 157, 84, 0.1);
  border-left: 4px solid #E8C468;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.2);
}

/* Form Styles */
.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.15);
}

.form-placeholder p {
  margin-bottom: 20px;
  padding: 12px;
  background: #F5F5F5;
  border-radius: 8px;
  border-left: 4px solid #7A9D54;
}

/* Workshop Meta */
.workshop-meta {
  background: #F5F5F5;
  padding: 16px;
  border-radius: 12px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.8;
  border-left: 4px solid #E8C468;
}

/* Task List */
.task-list,
.care-tips {
  list-style: none;
  margin-left: 0;
}

.task-list li,
.care-tips li {
  background: #FFFFFF;
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(122, 157, 84, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.task-list li::before,
.care-tips li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #E8C468, #F5D77C);
  color: #2D5016;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.task-list li:hover,
.care-tips li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(122, 157, 84, 0.2);
}

/* Expert Tip Box */
.expert-tip {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.tip-box {
  background: linear-gradient(135deg, #E8C468 0%, #F5D77C 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(232, 196, 104, 0.3);
  border: 4px solid #FFFFFF;
  animation: pulse 3s infinite;
}

.tip-box h2 {
  color: #2D5016;
  margin-bottom: 16px;
}

.tip-box p {
  color: #2D5016;
}

/* Service Promotion/Highlight */
.service-promotion,
.service-highlight,
.service-cta {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  border: 4px solid #E8C468;
  box-shadow: 0 8px 24px rgba(122, 157, 84, 0.15);
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3) translateY(-30px); }
  50% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideIn {
  0% { width: 0; opacity: 0; }
  100% { width: 60%; opacity: 1; }
}

@keyframes slideDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes popIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .benefit-card,
  .service-card,
  .category-card,
  .care-card,
  .topic-card,
  .contact-card,
  .workshop-card,
  .testimonial-card,
  .right-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .process-steps,
  .steps {
    flex-direction: column;
  }
  
  .page-links,
  .link-grid {
    flex-direction: column;
  }
  
  .header-content .cta-button {
    display: none;
  }
}

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

/* Print Styles */
@media print {
  .site-header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-button,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .hero,
  .page-header {
    background: #F5F5F5;
    color: #000000;
  }
}