/* =================================
   VitalSnack - Elegant Classic Design
   CSS Stylesheet
   ================================= */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
.container img {
  width: 100px;
}
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #4A7326;
}

ul {
  list-style: none;
}

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

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #5A8A2F;
  color: #ffffff;
  border-color: #5A8A2F;
  box-shadow: 0 2px 8px rgba(90, 138, 47, 0.2);
}

.btn-primary:hover {
  background-color: #4A7326;
  border-color: #4A7326;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 138, 47, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #5A8A2F;
  border-color: #5A8A2F;
}

.btn-secondary:hover {
  background-color: #5A8A2F;
  color: #ffffff;
}

.btn-text {
  background: none;
  border: none;
  color: #5A8A2F;
  padding: 8px 16px;
  font-size: 16px;
}

.btn-text:hover {
  color: #4A7326;
  text-decoration: underline;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #5A8A2F;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #4A7326;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #faf8f5;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #e8e5df;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #5A8A2F;
  padding-left: 8px;
}

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e5df;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #2c2c2c;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #5A8A2F;
  transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #5A8A2F;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to bottom, #FFFBF0 0%, #faf8f5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  border-radius: 24px;
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 500;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(to bottom, #FFFBF0 0%, #faf8f5 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #5A8A2F;
}

.breadcrumb span {
  color: #2c2c2c;
}

.page-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
}

.last-updated {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 8px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.value-grid,
.product-grid,
.benefit-grid,
.steps-grid,
.testimonial-grid,
.promise-grid,
.content-grid,
.nutrient-grid,
.lifestyle-grid,
.benefits-grid,
.plans-grid,
.features-grid,
.action-grid,
.contact-grid,
.cert-grid,
.info-badges,
.category-grid,
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

/* CARDS */
.value-card,
.product-card,
.benefit-card,
.step-card,
.testimonial-card,
.promise-card,
.content-card,
.nutrient-card,
.lifestyle-card,
.benefit-item,
.plan-card,
.action-card,
.contact-card,
.cert-card,
.info-badge,
.category-card,
.right-card {
  flex: 1 1 300px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e5df;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card:hover,
.product-card:hover,
.benefit-card:hover,
.promise-card:hover,
.content-card:hover,
.plan-card:hover,
.action-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: #5A8A2F;
}

.value-card img,
.benefit-card img,
.promise-card img,
.content-card img,
.action-card img,
.contact-card img,
.cert-card img,
.right-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* PRODUCT CARDS */
.product-card {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #5A8A2F;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: #5A8A2F;
  margin-top: 16px;
}

.price .unit {
  font-size: 14px;
  font-weight: 400;
  color: #6a6a6a;
}

.product-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.feature {
  padding: 4px 12px;
  background-color: #FFFBF0;
  border: 1px solid #e8e5df;
  border-radius: 16px;
  font-size: 12px;
  color: #2c2c2c;
}

/* TESTIMONIALS */
.testimonial-card {
  flex: 1 1 450px;
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #5A8A2F;
}

.stars {
  color: #FFB800;
  font-size: 20px;
  margin-bottom: 16px;
}

.customer-name {
  font-weight: 600;
  color: #2c2c2c;
  font-style: italic;
  margin-top: 16px;
}

.sub-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: #FFFBF0;
  border-radius: 16px;
  font-size: 12px;
  color: #5A8A2F;
  margin-top: 8px;
}

/* STEP CARDS */
.step-number {
  width: 56px;
  height: 56px;
  background-color: #5A8A2F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* PLAN CARDS */
.plan-card {
  position: relative;
  flex: 1 1 320px;
}

.plan-popular {
  border-color: #5A8A2F;
  border-width: 2px;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5A8A2F;
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.plan-price {
  font-size: 40px;
  font-weight: 600;
  color: #5A8A2F;
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: #6a6a6a;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  padding-left: 28px;
  position: relative;
  color: #4a4a4a;
}

.plan-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A8A2F;
  font-weight: 600;
}

/* SECTIONS */
.value-proposition,
.featured-products,
.benefits,
.how-it-works,
.testimonials,
.products,
.nutritional-info,
.quality-promise,
.our-story,
.mission-vision,
.our-values,
.sustainability,
.certifications,
.educational-content,
.nutritional-guide,
.snacking-tips,
.lifestyle-integration,
.subscription-benefits,
.pricing-plans,
.how-subscription-works,
.flexibility-features,
.contact-methods,
.contact-info,
.rights-overview {
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #ffffff;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #5A8A2F 0%, #4A7326 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: #5A8A2F;
  border-color: #ffffff;
}

.cta-buttons .btn-primary:hover {
  background-color: #FFFBF0;
  border-color: #FFFBF0;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background-color: #ffffff;
  color: #5A8A2F;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

/* INFO BADGES */
.info-badge {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.info-badge img {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
}

/* SUSTAINABILITY STATS */
.sustainability-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  flex: 1 1 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e5df;
  text-align: center;
}

.stat-card h3 {
  font-size: 48px;
  color: #5A8A2F;
  margin-bottom: 8px;
}

.sustainability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sustainability-list li {
  padding-left: 32px;
  position: relative;
  color: #4a4a4a;
  font-size: 16px;
}

.sustainability-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A8A2F;
  font-weight: 600;
  font-size: 18px;
}

/* TIPS LIST */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.tip-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #5A8A2F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.tip-content {
  flex: 1;
}

/* FAQ SECTION */
.faq-section,
.faq-subscription {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background-color: #faf8f5;
  border-radius: 8px;
  border: 1px solid #e8e5df;
}

.faq-item h3 {
  color: #5A8A2F;
  margin-bottom: 12px;
  font-size: 18px;
}

/* LEGAL CONTENT */
.legal-hero {
  background: linear-gradient(to bottom, #FFFBF0 0%, #faf8f5 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.legal-content {
  padding: 40px 20px;
  background-color: #ffffff;
}

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

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #5A8A2F;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 16px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

.content-wrapper blockquote {
  padding: 24px;
  background-color: #FFFBF0;
  border-left: 4px solid #5A8A2F;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: #2c2c2c;
}

/* CONTACT PAGE */
.hours-table {
  width: 100%;
  margin: 24px 0;
}

.hours-table tr {
  border-bottom: 1px solid #e8e5df;
}

.hours-table td {
  padding: 12px 0;
  color: #4a4a4a;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #2c2c2c;
}

.timezone-note {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

.map-info {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e5df;
}

.address-block h3 {
  color: #5A8A2F;
  margin-bottom: 12px;
}

.address-block h4 {
  margin-top: 24px;
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #FFFBF0 0%, #faf8f5 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #5A8A2F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.confirmation-message {
  font-size: 20px;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.subtext {
  font-size: 16px;
  color: #6a6a6a;
}

.next-steps {
  padding: 60px 20px;
  background-color: #ffffff;
}

.related-actions {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

/* HERO HIGHLIGHTS */
.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.highlight {
  padding: 8px 16px;
  background-color: #5A8A2F;
  color: #ffffff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

/* STORY CONTENT */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.mission-card {
  flex: 1 1 450px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e8e5df;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mission-card h3 {
  color: #5A8A2F;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

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

.footer-nav a:hover,
.footer-nav a.active {
  color: #FFFBF0;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #5A8A2F;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.cookie-text p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #2c2c2c;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #faf8f5;
  border-radius: 4px;
  border: 1px solid #e8e5df;
}

.cookie-category h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #c4c4c4;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #5A8A2F;
}

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header */
  .logo img {
    height: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  .section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards - Full width on mobile */
  .value-card,
  .product-card,
  .benefit-card,
  .step-card,
  .testimonial-card,
  .promise-card,
  .content-card,
  .nutrient-card,
  .lifestyle-card,
  .plan-card,
  .action-card,
  .contact-card {
    flex: 1 1 100%;
  }
  
  .plan-popular {
    transform: scale(1);
  }
  
  /* CTA */
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  /* Further reduce font sizes */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .plan-price {
    font-size: 32px;
  }
  
  .stat-card h3 {
    font-size: 36px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .cta-section {
    display: none;
  }
}

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

.hero-content,
.value-card,
.product-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 2px solid #5A8A2F;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 80px;
}

/* SELECTION COLORS */
::selection {
  background-color: #5A8A2F;
  color: #ffffff;
}

::-moz-selection {
  background-color: #5A8A2F;
  color: #ffffff;
}