/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8B4513;
  --secondary-color: #2C5F2D;
  --accent-color: #F4E4C1;
  --bg-light: #FFF8F0;
  --text-dark: #2D2D2D;
  --text-light: #666666;
  --white: #FFFFFF;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.7);
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #FF4500 0%, #FF1493 100%);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  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);
}

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

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

.mobile-menu-close:hover {
  background: var(--white);
  color: #FF4500;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  transform: translateX(-20px);
  opacity: 0;
  animation: slideIn 0.4s forwards;
}

.mobile-menu.active .mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-nav a:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu.active .mobile-nav a:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mobile-nav a:hover {
  padding-left: 12px;
  border-bottom-color: var(--white);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #A0522D 100%);
  padding: 20px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

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

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

.main-nav a {
  color: var(--white);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FF4500 0%, #FF6347 50%, #FF1493 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle,
.subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-color);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease;
}

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

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::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:hover::before {
  width: 300px;
  height: 300px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

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

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

/* Features Section */
.features {
  background: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.features-grid,
.benefits-grid,
.regions-grid,
.pricing-grid,
.collections-grid,
.contact-grid,
.guarantee-grid,
.stats-grid,
.testimonial-grid,
.steps-grid,
.suggestions-grid,
.explore-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card,
.benefit-card,
.region-card,
.pricing-card,
.collection-card,
.contact-card,
.guarantee-item,
.stat-card,
.testimonial-card,
.step-card,
.suggestion-card,
.explore-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.1);
  transition: var(--transition);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.benefit-card::before,
.region-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%);
  transition: var(--transition);
}

.feature-card:hover,
.benefit-card:hover,
.region-card:hover,
.pricing-card:hover,
.collection-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

.feature-card:hover::before,
.benefit-card:hover::before,
.region-card:hover::before,
.pricing-card:hover::before {
  transform: rotate(180deg);
}

.feature-card img,
.benefit-card img,
.contact-card img,
.guarantee-item img,
.step-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(2476%) hue-rotate(356deg) brightness(102%) contrast(105%);
}

.feature-card h3,
.benefit-card h3,
.region-card h3,
.collection-card h3,
.contact-card h3,
.guarantee-item h3 {
  color: #FF4500;
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p,
.benefit-card p,
.region-card p,
.collection-card p,
.contact-card p {
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 4px solid #FF4500;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

/* Pricing Cards */
.pricing-card {
  text-align: center;
  position: relative;
  border: 3px solid transparent;
}

.pricing-card.featured {
  border-color: #FF4500;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF4500 0%, #FF1493 100%);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #FF4500;
  margin: 24px 0;
  font-family: 'Merriweather', serif;
}

.price span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

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

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 69, 0, 0.1);
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-card li::before {
  content: '✓';
  color: #2C5F2D;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Stats */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #FF4500 0%, #FF1493 100%);
  color: var(--white);
  padding: 40px 24px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
}

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

.stat-card p {
  font-size: 16px;
  opacity: 0.95;
}

/* Text Sections */
.text-section,
.mission-content,
.story {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p,
.mission-content p,
.story p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.mission-text {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  border-left: 4px solid #FF4500;
}

/* Contact Page */
.contact-note,
.recipe-count,
.region-subtitle {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}

.office-hours {
  background: var(--white);
  padding: 60px 20px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-note {
  background: rgba(255, 69, 0, 0.1);
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
  border-left: 4px solid #FF4500;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(89%) saturate(3476%) hue-rotate(88deg) brightness(95%) contrast(101%);
}

/* Legal Content */
.legal-content {
  background: var(--white);
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FF4500;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.quick-links {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 60px 20px;
}

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

.links-grid a {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 2px solid transparent;
}

.links-grid a:hover {
  border-color: #FF4500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2C5F2D 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-section p {
  margin-bottom: 8px;
  opacity: 0.9;
}

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

.footer-nav a {
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition);
  padding: 4px 0;
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #2C5F2D 0%, #3D7F3F 100%);
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.4);
}

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

.cookie-reject:hover {
  border-color: var(--white);
}

.cookie-settings {
  background: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.cookie-settings:hover {
  background: #FFD700;
  color: var(--text-dark);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-modal-close:hover {
  background: rgba(255, 69, 0, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  border-radius: 12px;
  border-left: 4px solid #FF4500;
}

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

.cookie-category p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: #2C5F2D;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

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

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

/* CTA Sections */
.cta,
.cta-section,
.guarantee {
  background: linear-gradient(135deg, #FF4500 0%, #FF1493 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
}

.cta h2,
.cta-section h2,
.guarantee h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle,
  .subtitle {
    font-size: 20px;
  }
  
  .feature-card,
  .benefit-card,
  .region-card,
  .pricing-card,
  .collection-card,
  .contact-card,
  .testimonial-card,
  .stat-card,
  .step-card,
  .suggestion-card,
  .explore-card {
    flex: 1 1 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .price {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .feature-card,
  .benefit-card,
  .pricing-card {
    padding: 24px 16px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

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

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}