/* ============================================
   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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: linear-gradient(135deg, #E9F5DB 0%, #ffffff 50%, #F4A261 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   CREATIVE ARTISTIC TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2D7A4F;
  text-shadow: 2px 2px 4px rgba(244, 162, 97, 0.2);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2D7A4F 0%, #F4A261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F4A261 0%, #2D7A4F 100%);
  border-radius: 2px;
}

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #34495e;
}

blockquote {
  border-left: 5px solid #F4A261;
  padding: 20px 30px;
  margin: 30px 0;
  background: rgba(233, 245, 219, 0.5);
  font-style: italic;
  font-size: 18px;
  color: #2D7A4F;
  border-radius: 0 12px 12px 0;
  box-shadow: 3px 3px 15px rgba(45, 122, 79, 0.15);
}

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

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.95) 0%, rgba(244, 162, 97, 0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(45, 122, 79, 0.3);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: invert(1) brightness(3);
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 12px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.main-nav a:hover::before {
  width: 100%;
}

.main-nav a:hover {
  transform: translateY(-2px);
  color: #E9F5DB;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, #2D7A4F 0%, #F4A261 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2D7A4F 0%, #F4A261 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid #E9F5DB;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  border-left-width: 8px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.15) 0%, rgba(244, 162, 97, 0.15) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 40px rgba(45, 122, 79, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 245, 219, 0.3) 0%, transparent 70%);
  animation: heroFloat 20s infinite linear;
}

@keyframes heroFloat {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #34495e;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}

.hero-404 {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.2) 0%, rgba(233, 245, 219, 0.2) 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 30px 0;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #F4A261;
  text-shadow: 4px 4px 8px rgba(45, 122, 79, 0.3);
  margin: 20px 0;
}

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

/* ============================================
   BUTTONS
   ============================================ */

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

.btn-primary, .btn-secondary {
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #2D7A4F 0%, #F4A261 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(45, 122, 79, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #E9F5DB 0%, #F4A261 100%);
  color: #2D7A4F;
  border: 3px solid #2D7A4F;
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
  background: linear-gradient(135deg, #F4A261 0%, #E9F5DB 100%);
}

/* ============================================
   CARD GRIDS - FLEXBOX ONLY
   ============================================ */

.value-grid, .services-grid, .categories-grid, .hobbies-grid,
.steps-grid, .benefits-grid, .workshops-grid, .formats-grid,
.tiers-grid, .products-grid, .contact-methods, .quick-contacts,
.reviews-grid, .stories-grid, .suggestions-grid, .quick-links,
.values-grid, .timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.value-card, .service-card, .category-card, .hobby-card,
.step-card, .benefit-card, .workshop-card, .format-card,
.tier-card, .product-card, .method-card, .contact-card,
.review-card, .story-card, .suggestion-card, .link-card,
.timeline-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 122, 79, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.value-card::before, .service-card::before, .category-card::before,
.hobby-card::before, .step-card::before, .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2D7A4F 0%, #F4A261 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before, .service-card:hover::before,
.category-card:hover::before, .hobby-card:hover::before,
.step-card:hover::before, .benefit-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover, .service-card:hover, .category-card:hover,
.hobby-card:hover, .step-card:hover, .benefit-card:hover,
.workshop-card:hover, .format-card:hover, .product-card:hover,
.method-card:hover, .contact-card:hover, .suggestion-card:hover,
.link-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(45, 122, 79, 0.25);
  border-color: #F4A261;
}

.tier-card.featured {
  border: 4px solid #F4A261;
  transform: scale(1.05);
  background: linear-gradient(135deg, #E9F5DB 0%, #ffffff 100%);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #F4A261 0%, #2D7A4F 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.price, .price-display {
  font-size: 32px;
  font-weight: 800;
  color: #2D7A4F;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(244, 162, 97, 0.2);
}

.price-display {
  display: inline-block;
  background: linear-gradient(135deg, #E9F5DB 0%, #F4A261 50%);
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.2);
}

/* ============================================
   TESTIMONIALS & REVIEWS
   ============================================ */

.testimonials, .reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card, .review-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 122, 79, 0.15);
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  border-left: 6px solid #F4A261;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p, .review-card p {
  font-size: 16px;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card .author, .review-card .author {
  font-weight: 700;
  color: #2D7A4F;
  font-style: normal;
  font-size: 14px;
}

.stars, .rating {
  color: #F4A261;
  font-size: 20px;
  margin-top: 10px;
}

.hobby {
  display: inline-block;
  background: #E9F5DB;
  color: #2D7A4F;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: linear-gradient(135deg, #2D7A4F 0%, #F4A261 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(45, 122, 79, 0.3);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  text-align: center;
  color: #ffffff;
  flex: 1 1 200px;
  min-width: 150px;
}

.stat-item h3 {
  font-size: 56px;
  color: #E9F5DB;
  margin-bottom: 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.stat-item p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.9) 0%, rgba(244, 162, 97, 0.9) 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(45, 122, 79, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 245, 219, 0.2) 0%, transparent 70%);
  animation: ctaFloat 15s infinite linear;
}

@keyframes ctaFloat {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: #E9F5DB;
}

.cta-banner p {
  color: #E9F5DB;
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: #2D7A4F;
  font-size: 20px;
  padding: 18px 40px;
}

.cta-banner .btn-primary:hover {
  background: #E9F5DB;
}

.guarantee, .trust, .discount-note {
  font-size: 14px;
  color: #E9F5DB;
  margin-top: 20px;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d2e 100%);
  color: #E9F5DB;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 5px solid #F4A261;
}

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

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

.footer-section h3, .footer-section h4 {
  color: #E9F5DB;
  margin-bottom: 20px;
  font-size: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section h3::after, .footer-section h4::after {
  background: #F4A261;
}

.footer-section p {
  color: #E9F5DB;
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-section a {
  color: #E9F5DB;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #F4A261;
  transform: translateX(5px);
}

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

.footer-nav a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(233, 245, 219, 0.2);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(233, 245, 219, 0.3);
  color: #E9F5DB;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.98) 0%, rgba(244, 162, 97, 0.98) 100%);
  padding: 25px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backdrop-filter: blur(10px);
}

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

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

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

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

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

.cookie-accept:hover {
  background: #E9F5DB;
  transform: scale(1.05);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
  border: none;
  padding: 12px 20px;
}

.cookie-settings:hover {
  color: #E9F5DB;
}

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

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

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

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

.cookie-modal h3 {
  color: #2D7A4F;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  margin: 15px 0;
  background: #E9F5DB;
  border-radius: 12px;
  border-left: 4px solid #F4A261;
}

.cookie-category h4 {
  color: #2D7A4F;
  margin-bottom: 10px;
}

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

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #2D7A4F;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2D7A4F;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

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

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

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 122, 79, 0.15);
  margin: 30px 0;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

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

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.9;
}

.legal-content ul, .legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #34495e;
}

.last-updated {
  font-style: italic;
  color: #7f8c8d;
  font-size: 14px;
}

/* ============================================
   CONTACT FORM INFO
   ============================================ */

.contact-form-info {
  background: linear-gradient(135deg, #E9F5DB 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  border: 3px solid #2D7A4F;
  margin: 30px 0;
}

.contact-form-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-form-info a {
  color: #2D7A4F;
  font-weight: 700;
  text-decoration: underline;
}

.contact-form-info a:hover {
  color: #F4A261;
}

.hours {
  font-weight: 600;
  color: #2D7A4F;
}

.tip {
  background: linear-gradient(135deg, #F4A261 0%, #E9F5DB 100%);
  padding: 20px 30px;
  border-radius: 15px;
  margin: 30px 0;
  font-weight: 600;
  color: #2D7A4F;
  border-left: 5px solid #2D7A4F;
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .value-grid, .services-grid, .categories-grid, .hobbies-grid,
  .steps-grid, .benefits-grid, .workshops-grid, .formats-grid,
  .tiers-grid, .products-grid, .contact-methods, .quick-contacts,
  .reviews-grid, .stories-grid, .suggestions-grid, .testimonials {
    flex-direction: column;
  }
  
  .value-card, .service-card, .category-card, .hobby-card,
  .step-card, .benefit-card, .workshop-card, .format-card,
  .tier-card, .product-card, .method-card, .contact-card,
  .review-card, .story-card, .suggestion-card, .testimonial-card {
    flex: 1 1 100%;
  }
  
  .tier-card.featured {
    transform: scale(1);
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-item h3 {
    font-size: 42px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .legal-content {
    padding: 25px;
  }
  
  .mobile-menu {
    width: 85%;
    max-width: 350px;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-banner p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .price, .price-display {
    font-size: 24px;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 25px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}