/* ========================================
   CRIMSON MIRE - MONOCHROME SOPHISTICATED
   Sophisticated Black & White Design
   ======================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.5px;
}

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 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333333;
}

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

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #333333;
}

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

.content-wrapper {
  width: 100%;
}

/* === HEADER === */
header {
  background: #ffffff;
  border-bottom: 2px solid #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #e0e0e0;
  color: #000000;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 12px;
  color: #666666;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.hero .content-wrapper {
  position: relative;
  z-index: 1;
}

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

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

.hero .trust-badge {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 24px;
  color: #cccccc;
}

/* === ERROR PAGE HERO === */
.error-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.2;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

/* === THANK YOU HERO === */
.thank-you-hero {
  background: #000000;
}

.success-icon {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 32px;
  display: inline-block;
  width: 120px;
  height: 120px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* === LEGAL HERO === */
.legal-hero {
  background: #1a1a1a;
  padding: 60px 20px;
}

.last-updated {
  font-size: 14px;
  color: #cccccc;
  font-style: italic;
}

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

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.cta-button.secondary {
  background: #ffffff;
  border-color: #000000;
  color: #000000;
}

.cta-button.secondary:hover {
  background: #000000;
  color: #ffffff;
}

/* === SECTIONS === */
section {
  padding: 80px 20px;
  position: relative;
}

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

/* === SERVICES OVERVIEW === */
.services-overview {
  background: #f8f8f8;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 40px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #000000;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p {
  margin-bottom: 24px;
  color: #555555;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.service-link {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.service-link:hover {
  padding-bottom: 8px;
  opacity: 0.7;
}

/* === FEATURES === */
.features {
  background: #ffffff;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 48px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.feature-item img {
  width: 80px;
  height: 80px;
  filter: brightness(0);
}

.feature-item h3 {
  font-size: 20px;
  color: #000000;
}

.feature-item p {
  color: #666666;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #000000;
  color: #ffffff;
}

.testimonials h2 {
  color: #ffffff;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 450px;
  background: #ffffff;
  padding: 40px;
  border-left: 4px solid #000000;
  color: #000000;
  position: relative;
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
  color: #1a1a1a;
}

.testimonial-card .author {
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #000000;
  font-size: 20px;
  letter-spacing: 2px;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

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

/* === RECIPE CATEGORIES === */
.recipe-categories {
  background: #ffffff;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.category-card {
  flex: 1 1 250px;
  background: #f8f8f8;
  padding: 32px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.category-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000000;
}

.category-card p {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === FEATURED RECIPES === */
.featured-recipes {
  background: #f8f8f8;
}

.recipes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.recipe-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 32px;
  border: 2px solid #000000;
  position: relative;
  transition: all 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 #000000;
}

.recipe-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.recipe-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #000000;
}

.recipe-card p {
  color: #555555;
  margin-bottom: 20px;
}

.recipe-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666666;
}

.prep-time, .difficulty {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === PREMIUM TEASER === */
.premium-teaser {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.premium-teaser h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.premium-teaser p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list {
  list-style: none;
  margin: 32px auto;
  max-width: 600px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #ffffff;
  font-size: 16px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: #ffffff;
}

/* === COURSE BENEFITS === */
.course-benefits {
  background: #f8f8f8;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.benefit-item {
  flex: 1 1 240px;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
}

.benefit-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  filter: brightness(0);
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
}

.benefit-item p {
  color: #666666;
  font-size: 15px;
}

/* === COURSE TYPES === */
.course-types {
  background: #ffffff;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.course-card {
  flex: 1 1 280px;
  background: #f8f8f8;
  padding: 40px;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.course-card:hover {
  background: #ffffff;
  transform: translateX(8px);
}

.course-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.course-card p {
  color: #555555;
  margin-bottom: 24px;
}

.course-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #000000;
  font-family: 'Playfair Display', serif;
}

/* === BOOKING CTA === */
.booking-cta {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.booking-cta h2 {
  color: #ffffff;
}

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

/* === SERVICES DETAILED === */
.services-detailed {
  background: #ffffff;
}

.service-card-detailed {
  flex: 1 1 450px;
  background: #f8f8f8;
  padding: 48px;
  border: 2px solid #000000;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-card-detailed:hover {
  box-shadow: 8px 8px 0 #000000;
  transform: translateY(-4px);
}

.service-card-detailed h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card-detailed p {
  color: #555555;
  margin-bottom: 24px;
  font-size: 16px;
}

.service-card-detailed .price {
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.service-card-detailed .benefits {
  list-style: none;
  margin: 24px 0;
}

.service-card-detailed .benefits li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #333333;
}

.service-card-detailed .benefits li::before {
  content: '▪';
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #000000;
}

/* === PREMIUM MEMBERSHIP === */
.premium-membership {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.premium-membership h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.membership-price {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.premium-benefits {
  list-style: none;
  margin: 32px auto;
  max-width: 600px;
  text-align: left;
}

.premium-benefits li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #ffffff;
  font-size: 16px;
}

.premium-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: #ffffff;
  font-size: 20px;
}

.trial-offer {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guarantee {
  font-size: 14px;
  color: #cccccc;
  margin-top: 16px;
  font-style: italic;
}

/* === CONSULTATION CTA === */
.consultation-cta {
  background: #f8f8f8;
  text-align: center;
  padding: 80px 20px;
}

.contact-info {
  font-size: 16px;
  color: #666666;
  margin-top: 16px;
}

/* === BRAND STORY === */
.brand-story {
  background: #ffffff;
  padding: 80px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #333333;
}

/* === PHILOSOPHY === */
.philosophy {
  background: #f8f8f8;
}

.philosophy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.philosophy-item {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 40px;
  border-top: 4px solid #000000;
  text-align: center;
}

.philosophy-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.philosophy-item p {
  color: #555555;
  line-height: 1.7;
}

/* === STATISTICS === */
.statistics {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.statistics h2 {
  color: #ffffff;
  margin-bottom: 48px;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #cccccc;
}

/* === BLOG === */
.featured-post {
  background: #f8f8f8;
  padding: 80px 20px;
}

.featured-badge {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 24px;
}

.post-excerpt {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #333333;
}

.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  color: #666666;
}

.author, .date, .read-time {
  font-weight: 600;
}

.read-more {
  display: inline-block;
  padding: 12px 32px;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #333333;
  transform: translateX(4px);
}

/* === BLOG GRID === */
.blog-grid {
  background: #ffffff;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.post-card {
  flex: 1 1 320px;
  background: #f8f8f8;
  padding: 32px;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.post-card:hover {
  background: #ffffff;
  transform: translateX(8px);
}

.category-tag {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.post-card p {
  color: #555555;
  margin-bottom: 16px;
}

/* === NEWSLETTER === */
.newsletter-signup {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.newsletter-signup p {
  color: #e0e0e0;
  margin-bottom: 32px;
}

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

.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  font-size: 16px;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #000000;
}

.subscribe-button {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-button:hover {
  background: #000000;
  color: #ffffff;
}

.privacy-notice {
  font-size: 12px;
  color: #cccccc;
  margin-top: 16px;
}

.privacy-notice a {
  color: #ffffff;
  text-decoration: underline;
}

/* === CONTACT === */
.contact-info {
  background: #f8f8f8;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 280px;
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
}

.contact-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0);
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.contact-item p {
  color: #555555;
  line-height: 1.8;
}

/* === CONTACT FORM === */
.contact-form-section {
  background: #ffffff;
}

.form-intro {
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.input-field,
.select-field,
.textarea-field {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #000000;
  transition: all 0.3s ease;
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #000000;
}

.textarea-field {
  resize: vertical;
  min-height: 150px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.checkbox-field label {
  font-weight: 400;
  text-transform: none;
  font-size: 14px;
  color: #333333;
}

.checkbox-field a {
  color: #000000;
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.required-note {
  font-size: 13px;
  color: #666666;
  margin-top: 8px;
  font-style: italic;
}

/* === RESPONSE EXPECTATIONS === */
.response-expectations {
  background: #f8f8f8;
}

.expectations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.expectation-item {
  flex: 1 1 280px;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-top: 4px solid #000000;
}

.expectation-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.expectation-item p {
  color: #555555;
}

/* === SEARCH BAR === */
.search-bar {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto 0;
  flex-wrap: wrap;
}

.search-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  font-size: 16px;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #000000;
}

.search-button {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* === ERROR EXPLANATION === */
.error-explanation {
  background: #ffffff;
  padding: 60px 20px;
}

.error-explanation ul {
  max-width: 600px;
  margin: 24px auto;
}

.error-explanation li {
  font-size: 16px;
  color: #333333;
  padding: 8px 0;
}

/* === HELPFUL LINKS === */
.helpful-links {
  background: #f8f8f8;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.link-card {
  flex: 1 1 200px;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  background: #000000;
  color: #ffffff;
}

/* === SUPPORT CTA === */
.support-cta {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.support-cta p {
  color: #e0e0e0;
  margin-bottom: 32px;
}

.support-email {
  font-size: 18px;
  color: #cccccc;
  margin-top: 24px;
}

/* === CONFIRMATION === */
.confirmation-details {
  background: #ffffff;
  padding: 60px 20px;
}

.confirmation-details h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.confirmation-details ul {
  max-width: 600px;
  margin: 24px auto;
}

/* === WHILE YOU WAIT === */
.while-you-wait {
  background: #f8f8f8;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.suggestion-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.suggestion-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #000000;
}

.suggestion-card p {
  color: #555555;
  margin-bottom: 20px;
}

.cta-link {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  padding-bottom: 8px;
}

/* === NEXT STEPS === */
.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.step {
  flex: 1 1 280px;
  padding: 32px;
  background: #f8f8f8;
  border-left: 4px solid #000000;
}

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

.step p {
  color: #555555;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #000000;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #000000;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333333;
}

.legal-content ul {
  margin-bottom: 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 8px;
}

.legal-content a {
  color: #000000;
  text-decoration: underline;
}

.contact-cta {
  background: #f8f8f8;
  text-align: center;
  padding: 80px 20px;
}

/* === FOOTER === */
footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 24px;
}

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

.footer-column {
  flex: 1 1 220px;
}

.footer-column h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

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

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

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

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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 p {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-text a {
  color: #ffffff;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-btn:hover {
  transform: translateY(-2px);
}

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

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #333333;
  transform: rotate(90deg);
}

.cookie-modal h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #000000;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f8f8;
  border-left: 4px solid #000000;
}

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  font-size: 14px;
  color: #555555;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #cccccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #000000;
}

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

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

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

.cookie-modal-btn {
  flex: 1 1 140px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-content {
    justify-content: center;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .services-grid,
  .features-grid,
  .categories-grid,
  .recipes-grid,
  .benefits-grid,
  .courses-grid,
  .posts-grid,
  .contact-grid,
  .expectations-grid,
  .suggestions-grid,
  .philosophy-grid,
  .stats-grid,
  .next-steps {
    gap: 24px;
  }
  
  .service-card,
  .feature-item,
  .category-card,
  .recipe-card,
  .benefit-item,
  .course-card,
  .post-card,
  .contact-item,
  .expectation-item,
  .suggestion-card,
  .philosophy-item,
  .stat-item,
  .step {
    flex: 1 1 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-button {
    width: 100%;
  }
  
  .search-bar,
  .newsletter-form {
    flex-direction: column;
  }
  
  .search-input,
  .email-input,
  .search-button,
  .subscribe-button {
    width: 100%;
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-btn {
    width: 100%;
  }
  
  .membership-price {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  .success-icon {
    font-size: 60px;
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .service-card,
  .recipe-card,
  .post-card,
  .suggestion-card,
  .philosophy-item {
    padding: 24px;
  }
  
  .service-card-detailed {
    padding: 32px 24px;
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-buttons,
  .cta-button {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
    color: #000000;
  }
}