/* ========================================
   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: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   CREATIVE ARTISTIC DESIGN SYSTEM
   ======================================== */

:root {
  --primary: #2D7A4F;
  --secondary: #F4A261;
  --accent: #E9F5DB;
  --dark: #2C3E50;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, #2D7A4F 0%, #45B675 100%);
  --gradient-2: linear-gradient(135deg, #F4A261 0%, #FF8C42 100%);
  --shadow-sm: 0 4px 12px rgba(45, 122, 79, 0.1);
  --shadow-md: 0 8px 24px rgba(45, 122, 79, 0.15);
  --shadow-lg: 0 16px 48px rgba(45, 122, 79, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   TYPOGRAPHY - CREATIVE ARTISTIC STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 36px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--dark);
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 18px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

/* ========================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ======================================== */

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

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

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

header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--accent);
}

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

.main-nav img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.main-nav img:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav ul li a {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-2);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.main-nav ul li a:hover {
  color: var(--primary);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--gradient-1);
  color: var(--white);
  font-size: 28px;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: var(--shadow-lg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, #1F5A3A 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.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: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(5px);
}

.mobile-nav a:hover {
  background: var(--secondary);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   HERO SECTIONS - CREATIVE ARTISTIC
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--accent) 0%, #D4EFC1 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 122, 79, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  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: #555;
  animation: fadeInUp 1s ease;
}

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

.error-hero {
  background: linear-gradient(135deg, #FFE5E5 0%, #FFD6D6 100%);
  padding: 120px 20px;
  text-align: center;
}

.error-hero h1 {
  font-size: 120px;
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.legal-hero {
  background: linear-gradient(135deg, var(--accent) 0%, #D4EFC1 100%);
  padding: 80px 20px;
  text-align: center;
}

.confirmation-hero {
  background: linear-gradient(135deg, #E9F5DB 0%, #D4EFC1 100%);
  padding: 100px 20px;
  text-align: center;
}

/* ========================================
   BUTTONS - CREATIVE ARTISTIC STYLE
   ======================================== */

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.cta-button.secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
}

/* ========================================
   CARDS - CREATIVE ARTISTIC DESIGN
   ======================================== */

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.value-card,
.benefit-card,
.service-card,
.recipe-card,
.principle-card,
.testimonial-card,
.post-card,
.contact-card,
.link-card,
.suggestion-card,
.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  margin-bottom: 24px;
  border: 2px solid transparent;
}

.value-card:hover,
.benefit-card:hover,
.service-card:hover,
.recipe-card:hover,
.principle-card:hover,
.post-card:hover,
.contact-card:hover,
.link-card:hover,
.suggestion-card:hover,
.team-member:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  margin-bottom: 32px;
  text-align: center;
  border: 3px solid var(--accent);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--accent) 0%, #D4EFC1 100%);
  border: 3px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 122, 79, 0.1);
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
  padding: 32px;
  border-left: 5px solid var(--secondary);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
  margin-top: 16px;
}

/* ========================================
   FLEXBOX GRID LAYOUTS
   ======================================== */

.three-column-grid,
.services-grid,
.benefits-grid,
.recipes-grid,
.principles-grid,
.pricing-grid,
.testimonials-grid,
.posts-grid,
.contact-cards-grid,
.links-grid,
.suggestions-grid,
.team-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.three-column-grid > *,
.services-grid > *,
.benefits-grid > *,
.principles-grid > *,
.testimonials-grid > *,
.contact-cards-grid > * {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.pricing-grid > * {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
}

.recipes-grid > *,
.posts-grid > *,
.links-grid > *,
.suggestions-grid > *,
.stats-grid > * {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
}

.team-grid > * {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

/* ========================================
   BADGES & LABELS
   ======================================== */

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-2);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(45, 122, 79, 0.1);
  border-radius: 50px;
}

.trust-indicator::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   FILTER TAGS
   ======================================== */

.filter-tags,
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
  justify-content: center;
}

.filter-tag {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  cursor: pointer;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--gradient-1);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, #D4EFC1 100%);
  border-radius: 20px;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1F5A3A 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: ctaPattern 15s linear infinite;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  background: var(--secondary);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .cta-button {
  position: relative;
  z-index: 1;
}

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

footer {
  background: linear-gradient(180deg, var(--dark) 0%, #1A2530 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 5px solid var(--secondary);
}

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

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

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

.footer-section h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1A2530 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--secondary);
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
}

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

.cookie-button {
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-button.accept {
  background: var(--gradient-1);
  color: var(--white);
}

.cookie-button.accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-button.reject {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-button.reject:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-button.settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.cookie-button.settings:hover {
  background: var(--secondary);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-category-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.active {
  background: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
  left: 32px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.8;
}

/* ========================================
   SPECIAL SECTIONS
   ======================================== */

.featured-article {
  background: linear-gradient(135deg, var(--accent) 0%, #D4EFC1 100%);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.featured-article::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

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

.meta {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

.note {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(45, 122, 79, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  margin-top: 16px;
}

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

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav ul {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .error-hero h1 {
    font-size: 80px;
  }

  /* Section padding */
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }

  .hero,
  .legal-hero,
  .confirmation-hero {
    padding: 60px 20px;
  }

  .error-hero {
    padding: 80px 20px;
  }

  /* Grid layouts - single column */
  .three-column-grid > *,
  .services-grid > *,
  .benefits-grid > *,
  .recipes-grid > *,
  .principles-grid > *,
  .pricing-grid > *,
  .testimonials-grid > *,
  .posts-grid > *,
  .contact-cards-grid > *,
  .links-grid > *,
  .suggestions-grid > *,
  .team-grid > *,
  .stats-grid > * {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* CTA buttons */
  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  /* Stats bar */
  .stats-bar {
    flex-direction: column;
    padding: 30px 20px;
  }

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

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

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }

  /* Featured article */
  .featured-article {
    padding: 40px 24px;
  }

  /* Pricing cards - remove featured scale */
  .pricing-card.featured {
    transform: scale(1);
  }

  /* CTA section */
  .cta-section {
    padding: 60px 24px;
    margin: 40px 0;
  }
}

@media (max-width: 480px) {
  /* Smaller typography */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .error-hero h1 {
    font-size: 60px;
  }

  /* Reduce padding */
  .card,
  .value-card,
  .benefit-card,
  .service-card,
  .recipe-card,
  .principle-card,
  .testimonial-card,
  .post-card,
  .contact-card,
  .link-card,
  .suggestion-card,
  .pricing-card,
  .team-member {
    padding: 24px;
  }

  /* Mobile menu width */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }

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

  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }

  /* Stats */
  .stat strong {
    font-size: 36px;
  }
}

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

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

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

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

.animate-in {
  animation: fadeInUp 0.8s ease;
}

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

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

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

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

.hidden {
  display: none;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: white;
    border: 1px solid #ccc;
  }
}