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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF5F8;
  overflow-x: hidden;
}

/* CSS Custom Properties - Warm Friendly Colors */
:root {
  --primary: #FF6B9D;
  --primary-dark: #C41E5B;
  --primary-darker: #8B1543;
  --secondary: #4ECDC4;
  --secondary-light: #7FDFDB;
  --accent: #FFE66D;
  --accent-light: #FFF4B3;
  --text-dark: #2D2D2D;
  --text-light: #666;
  --background: #FFF5F8;
  --white: #FFFFFF;
  --shadow: rgba(255, 107, 157, 0.15);
  --shadow-hover: rgba(255, 107, 157, 0.25);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Comic Sans MS', cursive;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

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

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

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

p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 16px;
}

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

/* Header & Navigation */
header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 15px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

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

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-hover);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  padding: 16px 20px;
  background: var(--background);
  border-radius: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: var(--accent-light);
  border-color: var(--primary);
  transform: translateX(5px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px var(--shadow);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

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

.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 4px rgba(0, 0, 0, 0.1);
}

.subheadline {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--white);
  font-size: 18px;
  opacity: 0.95;
}

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

/* Value Proposition */
.value-proposition {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
  box-shadow: 0 4px 20px var(--shadow);
}

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

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

.benefit-card {
  background: var(--background);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.benefit-card::before {
  content: '✨';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  opacity: 0.3;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-hover);
  border-color: var(--primary);
}

.benefit-card h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

/* Product Grid */
.featured-products,
.product-catalog {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.product-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  border: 3px solid var(--accent);
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--shadow-hover);
  border-color: var(--primary);
}

.product-card h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-size: 22px;
}

.product-card p {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
}

.age-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* Age Categories */
.age-categories {
  background: var(--background);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.age-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 15px);
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid var(--accent);
  margin-bottom: 20px;
}

.age-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-hover);
  border-color: var(--primary);
}

.age-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

/* Category Showcase */
.category-showcase {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.category-card {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.category-card h3 {
  color: var(--white);
  font-size: 20px;
}

/* Testimonials */
.testimonials {
  background: var(--background);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

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

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

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 24px;
}

/* Trust Section */
.trust-section {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trust-item {
  background: var(--accent-light);
  padding: 20px 32px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--text-dark);
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: var(--secondary-light);
  border-color: var(--secondary);
  transform: scale(1.05);
}

/* Age Groups */
.age-groups {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

.age-group {
  background: var(--background);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  border-left: 5px solid var(--secondary);
  transition: all 0.3s ease;
}

.age-group:hover {
  border-left-width: 10px;
  padding-left: 37px;
  box-shadow: 0 4px 15px var(--shadow);
}

.age-group h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.age-group p {
  margin-bottom: 12px;
}

/* Methodologies */
.methodologies {
  background: var(--background);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.method-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  border-top: 5px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.method-card:nth-child(2) {
  border-top-color: var(--secondary);
}

.method-card:nth-child(3) {
  border-top-color: var(--accent);
}

.method-card:nth-child(4) {
  border-top-color: var(--primary);
}

/* Values Grid */
.mission-values {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.value-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--background) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

/* Articles */
.article-categories {
  background: var(--background);
  padding: 40px 20px;
  text-align: center;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-tag {
  background: var(--white);
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.featured-articles,
.article-grid {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.article-card {
  background: var(--background);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-hover);
  border-color: var(--secondary);
}

.article-card h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.reading-time {
  display: inline-block;
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  color: var(--text-dark);
}

/* Expert Q&A */
.expert-qa {
  background: var(--background);
  border-radius: 30px;
  padding: 60px 20px;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qa-item {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border-left: 5px solid var(--secondary);
  transition: all 0.3s ease;
}

.qa-item:hover {
  box-shadow: 0 4px 15px var(--shadow);
  border-left-width: 10px;
}

.qa-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* Contact */
.contact-info {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.contact-card {
  background: var(--background);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  text-align: center;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-form-section {
  background: var(--background);
  border-radius: 30px;
  padding: 60px 20px;
}

.form-note {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border-left: 5px solid var(--accent);
  margin-top: 24px;
}

/* FAQ */
.faq-quick {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--background);
  padding: 24px;
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-width: 8px;
  box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h3 {
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px var(--shadow);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.thank-you-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.thank-you-content p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.next-steps,
.while-you-wait,
.explore-more {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step {
  background: var(--background);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  border-top: 5px solid var(--primary);
  margin-bottom: 20px;
}

.step:nth-child(2) {
  border-top-color: var(--secondary);
}

.step:nth-child(3) {
  border-top-color: var(--accent);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 24px;
}

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

.suggestion-card {
  background: var(--background);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  text-align: center;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.suggestion-card h3 {
  margin-bottom: 24px;
}

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

.link-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

/* Legal Pages */
.legal-page {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.legal-page ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--primary-dark);
}

/* Quality Assurance & Other Sections */
.quality-assurance,
.philosophy,
.learning-principles,
.quality-criteria,
.brand-story,
.sustainability,
.location,
.consultation,
.expert-advice,
.social-proof,
.popular-products {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.quality-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.quality-grid p {
  background: var(--accent-light);
  padding: 16px 24px;
  border-radius: 15px;
  font-weight: 600;
  border: 2px solid var(--accent);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 20px 20px;
  border-radius: 30px 30px 0 0;
  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;
  min-width: 250px;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 20px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--primary);
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: var(--text-dark);
}

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

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

.accept-all {
  background: var(--primary);
  color: var(--white);
}

.accept-all:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.reject-all {
  background: var(--text-light);
  color: var(--white);
}

.reject-all:hover {
  background: var(--text-dark);
}

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

.cookie-settings:hover {
  background: var(--primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s ease;
}

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

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

.cookie-category {
  background: var(--background);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border: 2px solid var(--accent);
}

.cookie-category h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.save-preferences {
  background: var(--primary);
  color: var(--white);
}

.save-preferences:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.close-modal {
  background: var(--text-light);
  color: var(--white);
}

.close-modal:hover {
  background: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Menu Visibility */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

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

  .cta-buttons .btn {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  /* Cards & Grids */
  .benefits-grid,
  .product-grid,
  .age-grid,
  .category-grid,
  .testimonials-grid,
  .methods-grid,
  .values-grid,
  .articles-grid,
  .contact-grid,
  .steps-grid,
  .suggestions-grid,
  .links-grid {
    flex-direction: column;
  }

  .benefit-card,
  .product-card,
  .age-card,
  .category-card,
  .testimonial-card,
  .method-card,
  .value-card,
  .article-card,
  .contact-card,
  .step,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-buttons button {
    width: 100%;
  }

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    max-height: 85vh;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .product-card,
  .method-card,
  .value-card,
  .testimonial-card,
  .contact-card,
  .suggestion-card {
    flex: 1 1 calc(50% - 12px);
  }

  .age-card,
  .article-card,
  .category-card,
  .step,
  .link-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}

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

  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
  }
}