/* ===================================
   ZYMOTOVERF - PROFESSIONAL CORPORATE CSS
   Design Style: Professional Corporate
   Color Palette: Blue/Gray with structured layout
   =================================== */

/* 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', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

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

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

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

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

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: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #3b82f6;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2563eb;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
}

.btn-secondary:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

/* HEADER */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: #475569;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

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

.main-nav a:hover {
  color: #3b82f6;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #1e293b;
  z-index: 1999;
  padding: 80px 30px 30px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #1e293b;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background-color: #3b82f6;
  padding-left: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #e0e7ff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.trust-indicators span {
  font-size: 14px;
  color: #e0e7ff;
  font-weight: 500;
}

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

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

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.value-proposition > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #64748b;
  font-size: 18px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  background-color: #f8fafc;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.benefit-card h3 {
  color: #1e293b;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.7;
}

/* SERVICES */
.services-preview {
  background-color: #f1f5f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.service-card h3 {
  color: #1e293b;
  font-size: 22px;
}

.service-card p {
  color: #64748b;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #3b82f6;
  margin: 16px 0;
}

.service-card .btn {
  width: 100%;
  margin-top: auto;
}

/* RECIPE CARDS */
.featured-recipes {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.recipe-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.recipe-card h3 {
  color: #1e293b;
  font-size: 20px;
  margin-bottom: 12px;
}

.recipe-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.difficulty, .time, .rating {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.testimonial-card p {
  font-style: italic;
  color: #1e293b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #3b82f6;
  font-size: 14px;
  font-style: normal;
}

/* PROCESS STEPS */
.process {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card {
  background-color: #f8fafc;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.step-card p {
  color: #64748b;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #e0e7ff;
}

.no-cc {
  font-size: 14px;
  margin-top: 24px;
  color: #e0e7ff;
}

/* BLOG PREVIEW */
.blog-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.blog-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.blog-card h3 {
  color: #1e293b;
  font-size: 20px;
}

.blog-card p {
  color: #64748b;
  flex-grow: 1;
}

.blog-card .date {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

.blog-card a {
  color: #3b82f6;
  font-weight: 600;
  font-size: 15px;
}

.blog-card a:hover {
  color: #2563eb;
}

/* SEARCH BAR */
.search-bar {
  max-width: 600px;
  margin: 32px auto;
}

.search-input {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* FILTERS */
.filter-navigation {
  padding: 40px 20px;
  background-color: #ffffff;
  margin-bottom: 40px;
}

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

.filter-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #cbd5e1;
  background-color: #ffffff;
  color: #475569;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover, .filter-btn.active {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

/* CATEGORIES */
.recipe-categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.category-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.category-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.category-card h3 {
  color: #1e293b;
  margin-bottom: 8px;
}

.category-card .count {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* FEATURED COLLECTIONS */
.featured-collections {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.collection-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.collection-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.collection-card p {
  color: #64748b;
}

/* NEWSLETTER */
.newsletter-signup {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter-signup h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-signup p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #e0e7ff;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #e0e7ff;
  border-radius: 6px;
}

.email-input:focus {
  outline: none;
  border-color: #ffffff;
}

.privacy-note {
  font-size: 14px;
  color: #e0e7ff;
}

/* PRICING */
.pricing-table {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pricing-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.featured {
  border-color: #3b82f6;
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: #3b82f6;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  color: #1e293b;
  font-size: 24px;
  text-align: center;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #3b82f6;
  text-align: center;
  margin: 16px 0;
}

.pricing-card .save {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card li {
  color: #64748b;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* INSTRUCTOR PROFILE */
.instructor-profile {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.instructor-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.instructor-card h3 {
  color: #1e293b;
  margin-bottom: 16px;
}

.instructor-card p {
  color: #64748b;
}

/* FAQ */
.faq {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
  color: #64748b;
  margin-bottom: 0;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* CUSTOMIZATION OPTIONS */
.customization-options {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.option-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.option-card h3 {
  color: #1e293b;
  margin-bottom: 8px;
}

.option-card p {
  color: #64748b;
}

/* SAMPLE MENU */
.sample-menu {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.day-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.day-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

.day-card h3 {
  color: #1e293b;
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.day-card p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 8px;
}

.day-card strong {
  color: #3b82f6;
}

/* BRAND STORY */
.brand-story {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #ffffff;
}

.brand-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.story-content p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.tagline {
  font-size: 20px;
  color: #3b82f6;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

/* VALUES */
.values {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.value-card h3 {
  color: #1e293b;
  margin-bottom: 8px;
}

.value-card p {
  color: #64748b;
}

/* TEAM */
.team {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.team-member h3 {
  color: #1e293b;
  margin-bottom: 8px;
}

.team-member p {
  color: #64748b;
}

.team-member strong {
  color: #3b82f6;
  display: block;
  margin-bottom: 16px;
}

/* PHILOSOPHY */
.philosophy {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.philosophy h2 {
  text-align: center;
  margin-bottom: 32px;
}

.philosophy p {
  max-width: 800px;
  margin: 0 auto 32px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.philosophy ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.philosophy li {
  color: #64748b;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

/* ACHIEVEMENTS */
.achievements {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.stat-card .number {
  font-size: 48px;
  font-weight: 700;
  color: #3b82f6;
  display: block;
  margin-bottom: 12px;
}

.stat-card p {
  color: #64748b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* BLOG CATEGORY NAVIGATION */
.category-navigation {
  padding: 40px 20px;
  background-color: #ffffff;
  margin-bottom: 40px;
}

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

.category-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #cbd5e1;
  background-color: #ffffff;
  color: #475569;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-btn:hover, .category-btn.active {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

/* FEATURED POST */
.featured-post {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.featured-card h2 {
  color: #1e293b;
  margin-bottom: 24px;
}

.featured-card p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.post-meta span {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.post-meta .category {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
}

/* POPULAR POSTS */
.popular-posts {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.popular-item {
  background-color: #f8fafc;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 24px;
}

.popular-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.popular-item .rank {
  font-size: 32px;
  font-weight: 700;
  color: #3b82f6;
  min-width: 50px;
}

.popular-item h4 {
  color: #1e293b;
  font-size: 18px;
  margin-bottom: 8px;
}

.popular-item .views {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.contact-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.contact-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.contact-card p {
  color: #64748b;
  margin-bottom: 0;
}

.contact-card a {
  color: #3b82f6;
  font-weight: 600;
}

.contact-card a:hover {
  color: #2563eb;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.form-container > p {
  text-align: center;
  color: #64748b;
  margin-bottom: 32px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #1e293b;
  font-weight: 600;
  font-size: 15px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  color: #64748b;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  color: #3b82f6;
  font-weight: 600;
}

.required-note {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  margin-top: 16px;
}

/* MAP SECTION */
.map-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-placeholder {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f1f5f9;
  padding: 80px 40px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e2e8f0;
}

.map-placeholder p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

/* SUPPORT OPTIONS */
.support-options {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.support-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.support-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.support-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.support-card p {
  color: #64748b;
  margin-bottom: 8px;
}

.support-card a {
  color: #3b82f6;
  font-weight: 600;
  font-size: 15px;
}

.support-card a:hover {
  color: #2563eb;
}

/* SOCIAL MEDIA */
.social-media {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.social-media h2 {
  margin-bottom: 16px;
}

.social-media > p {
  color: #64748b;
  margin-bottom: 32px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  padding: 12px 32px;
  background-color: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-link:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.toc {
  flex: 0 0 280px;
  position: sticky;
  top: 100px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.toc h2 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #1e293b;
}

.toc-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-links a {
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.toc-links a:hover {
  color: #3b82f6;
  background-color: #f1f5f9;
  padding-left: 16px;
}

.content-blocks {
  flex: 1;
  min-width: 300px;
}

.content-block {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.content-block h2 {
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.content-block h3 {
  color: #3b82f6;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.content-block p {
  color: #64748b;
  line-height: 1.8;
}

.content-block ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-block li {
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-block strong {
  color: #1e293b;
}

.content-block a {
  color: #3b82f6;
  font-weight: 600;
}

.content-block a:hover {
  color: #2563eb;
}

.last-updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

/* USER RIGHTS MANAGEMENT */
.user-rights-management {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.user-rights-management h2 {
  margin-bottom: 16px;
}

.user-rights-management p {
  color: #64748b;
  margin-bottom: 32px;
}

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

/* COOKIE SETTINGS */
.cookie-settings {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.cookie-settings h2 {
  text-align: center;
  margin-bottom: 16px;
}

.cookie-settings > .container > p {
  text-align: center;
  color: #64748b;
  margin-bottom: 48px;
}

.cookie-categories {
  max-width: 800px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-category {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-category h3 {
  color: #1e293b;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #64748b;
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.toggle-indicator {
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}

.toggle-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #3b82f6;
  background-color: #ffffff;
  color: #3b82f6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.toggle-btn:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

/* THANK YOU PAGE */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.confirmation-message {
  font-size: 20px;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 16px;
}

.confirmation-details {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.confirmation-details h2 {
  text-align: center;
  margin-bottom: 32px;
}

.details-card {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f8fafc;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.details-card p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.details-card strong {
  color: #1e293b;
}

.next-steps {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.action-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.action-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.action-card p {
  color: #64748b;
  margin-bottom: 16px;
}

.social-sharing {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.social-sharing h2 {
  margin-bottom: 16px;
}

.social-sharing p {
  color: #64748b;
  margin-bottom: 32px;
}

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

.share-btn {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #3b82f6;
  background-color: #ffffff;
  color: #3b82f6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.share-btn:hover {
  background-color: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.recommended-content {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.content-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.content-card h3 {
  color: #1e293b;
  margin-bottom: 12px;
}

.content-card p {
  color: #64748b;
  flex-grow: 1;
}

.content-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #3b82f6;
  margin-top: auto;
}

.cta-navigation {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.cta-navigation .btn {
  margin: 0 8px;
}

.guarantee {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
  margin-top: 24px;
}

/* CONSULTATION CTA */
.consultation-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.consultation-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #e0e7ff;
}

/* FOOTER */
.site-footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-nav a {
  color: #94a3b8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #3b82f6;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.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;
  min-width: 300px;
}

.cookie-text p {
  color: #cbd5e1;
  margin-bottom: 0;
  font-size: 15px;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: #10b981;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #059669;
}

.cookie-btn-reject {
  background-color: transparent;
  border-color: #cbd5e1;
  color: #cbd5e1;
}

.cookie-btn-reject:hover {
  background-color: #334155;
}

.cookie-btn-settings {
  background-color: transparent;
  border-color: #3b82f6;
  color: #3b82f6;
}

.cookie-btn-settings:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1e293b;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #1e293b;
  margin-bottom: 24px;
}

.cookie-preference {
  background-color: #f8fafc;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 2px solid #e2e8f0;
}

.cookie-preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-preference h3 {
  color: #1e293b;
  margin-bottom: 0;
}

.cookie-preference p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle-disabled {
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
}

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .subheadline { font-size: 18px; }
  
  /* Sections */
  section { padding: 40px 20px; margin-bottom: 40px; }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .recipe-grid,
  .testimonial-grid,
  .steps-grid,
  .blog-grid,
  .categories-grid,
  .collections-grid,
  .options-grid,
  .menu-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .contact-grid,
  .support-grid,
  .action-grid,
  .content-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-card,
  .service-card,
  .recipe-card,
  .testimonial-card,
  .step-card,
  .blog-card,
  .category-card,
  .collection-card,
  .option-card,
  .day-card,
  .value-card,
  .team-member,
  .stat-card,
  .contact-card,
  .support-card,
  .action-card,
  .content-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Pricing */
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 100%; width: 100%; }
  .pricing-card.featured { transform: scale(1); }
  
  /* CTA Buttons */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  
  /* Newsletter Form */
  .newsletter-form { flex-direction: column; }
  .email-input { width: 100%; }
  
  /* Footer */
  .footer-grid { flex-direction: column; }
  .footer-col { width: 100%; }
  
  /* Legal Content */
  .legal-content .container { flex-direction: column; }
  .toc { position: static; width: 100%; flex: none; }
  
  /* Cookie Banner */
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
  
  /* Forms */
  .form-container { padding: 32px 24px; }
  
  /* Trust Indicators */
  .trust-indicators { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero { padding: 40px 20px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  
  .cookie-modal-content { padding: 32px 24px; }
  
  .filters { flex-direction: column; width: 100%; }
  .filter-btn { width: 100%; }
  
  .share-buttons { flex-direction: column; width: 100%; }
  .share-btn { width: 100%; }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.hidden { display: none !important; }

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .newsletter-signup,
  .social-media,
  .site-footer { display: none; }
  
  body { background-color: #ffffff; color: #000000; }
  a { text-decoration: underline; }
}