/* ===================================
   GLOW FORTRESS - ELEGANT CLASSIC DESIGN
   CSS Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2C2416;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================================
   ELEGANT CLASSIC TYPOGRAPHY
   =================================== */

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

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 24px;
  letter-spacing: 0.2px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4A4036;
}

.section-subtitle {
  font-size: 18px;
  color: #6B5D4F;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 40px;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E2D9;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(26, 20, 16, 0.05);
}

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

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

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

.nav-menu li a {
  font-size: 15px;
  color: #2C2416;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #8B4513;
  border-bottom-color: #8B4513;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #8B4513;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  color: #8B4513;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  color: #2C2416;
  padding: 12px 0;
  border-bottom: 1px solid #E8E2D9;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* ===================================
   BUTTONS - ELEGANT CLASSIC STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  font-family: 'Georgia', serif;
}

.btn-primary {
  background-color: #8B4513;
  color: #FFFFFF;
  border-color: #8B4513;
}

.btn-primary:hover {
  background-color: #6B3410;
  border-color: #6B3410;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #8B4513;
  border-color: #8B4513;
}

.btn-secondary:hover {
  background-color: #8B4513;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DFD0 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 3px solid #D4C4B0;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1A1410;
}

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

.page-hero {
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DFD0 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 2px solid #D4C4B0;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #6B5D4F;
}

/* ===================================
   BREADCRUMB
   =================================== */

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

.breadcrumb a {
  color: #8B4513;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #6B3410;
  text-decoration: underline;
}

/* ===================================
   CARDS - ELEGANT DESIGN
   =================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.recipe-card,
.blog-card,
.format-card,
.category-card,
.option-card,
.info-card,
.suggestion-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E2D9;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.recipe-card:hover,
.blog-card:hover,
.format-card:hover,
.category-card:hover,
.option-card:hover,
.suggestion-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #D4C4B0;
}

.service-card h3,
.recipe-card h3,
.blog-card h3,
.format-card h3,
.category-card h3 {
  color: #1A1410;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.recipe-card p,
.blog-card p,
.format-card p,
.category-card p {
  color: #4A4036;
  line-height: 1.6;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   GRID LAYOUTS - FLEXBOX ONLY
   =================================== */

.services-grid,
.recipe-grid,
.blog-grid,
.values-grid,
.benefits-grid,
.categories-grid,
.course-formats-grid,
.options-grid,
.info-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.services-grid > *,
.recipe-grid > *,
.blog-grid > *,
.course-formats-grid > *,
.categories-grid > *,
.options-grid > *,
.info-grid > *,
.suggestions-grid > * {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

.values-grid > *,
.benefits-grid > * {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

/* ===================================
   VALUE ITEMS
   =================================== */

.value-item,
.benefit-item,
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background-color: #FFFFFF;
  padding: 28px;
  border: 1px solid #E8E2D9;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover,
.benefit-item:hover {
  border-color: #8B4513;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.value-item h3,
.benefit-item h3 {
  font-size: 20px;
  color: #1A1410;
  margin-bottom: 8px;
  width: 100%;
}

.value-item p,
.benefit-item p {
  font-size: 15px;
  color: #6B5D4F;
  width: 100%;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */

.testimonials {
  background-color: #F5EFE7;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A1410;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #8B4513;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #2C2416;
  font-style: italic;
  margin-bottom: 20px;
}

.customer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.customer-info strong {
  font-size: 16px;
  color: #1A1410;
  font-weight: 600;
}

.customer-info span {
  font-size: 14px;
  color: #6B5D4F;
}

/* ===================================
   TEXT-IMAGE SECTIONS
   =================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 40px 0;
}

.text-section {
  flex: 1 1 500px;
}

.text-section h2 {
  margin-bottom: 24px;
}

.text-section p {
  margin-bottom: 20px;
}

/* ===================================
   CTA BANNERS
   =================================== */

.cta-banner,
.booking-cta,
.consultation-cta,
.join-us-cta {
  background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}

.cta-banner h2,
.booking-cta h2,
.consultation-cta h2,
.join-us-cta h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.booking-cta p,
.consultation-cta p,
.join-us-cta p {
  color: #F5EFE7;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn,
.booking-cta .btn,
.consultation-cta .btn,
.join-us-cta .btn {
  background-color: #FFFFFF;
  color: #8B4513;
  border-color: #FFFFFF;
}

.cta-banner .btn:hover,
.booking-cta .btn:hover,
.consultation-cta .btn:hover,
.join-us-cta .btn:hover {
  background-color: #F5EFE7;
  color: #6B3410;
}

/* ===================================
   FORMS - ELEGANT STYLE
   =================================== */

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2C2416;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.filter-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Georgia', serif;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #2C2416;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.filter-select:focus {
  outline: none;
  border-color: #8B4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4A4036;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-label a {
  color: #8B4513;
  text-decoration: underline;
}

/* ===================================
   NEWSLETTER SIGNUP
   =================================== */

.newsletter-signup {
  background-color: #F5EFE7;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 2px solid #D4C4B0;
  border-bottom: 2px solid #D4C4B0;
}

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

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

.newsletter-form .form-input {
  flex: 1 1 300px;
}

.privacy-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6B5D4F;
}

.privacy-note a {
  color: #8B4513;
  text-decoration: underline;
}

/* ===================================
   FILTER CONTROLS
   =================================== */

.recipe-filter,
.blog-filter {
  background-color: #FFFFFF;
  padding: 32px 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid #E8E2D9;
}

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

.filter-select {
  min-width: 200px;
  flex: 1 1 200px;
}

/* ===================================
   BADGES
   =================================== */

.recipe-badge,
.featured-badge,
.category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #8B4513;
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.featured-badge {
  background-color: #6B5D4F;
}

/* ===================================
   META INFORMATION
   =================================== */

.recipe-meta,
.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6B5D4F;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8E2D9;
}

.recipe-meta span,
.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

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

.process-step,
.step-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 32px 20px;
  background-color: #F5EFE7;
  border-radius: 8px;
  border: 2px solid #E8E2D9;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.process-step:hover,
.step-item:hover {
  border-color: #8B4513;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.process-step h3,
.step-item h3 {
  color: #1A1410;
  margin-bottom: 12px;
  font-size: 20px;
}

.process-step p,
.step-item p {
  color: #6B5D4F;
  font-size: 15px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #8B4513;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   LOCATION & CONTACT INFO
   =================================== */

.location-info,
.contact-info,
.location-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.location-details {
  flex: 1 1 400px;
}

.location-details p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.location-details strong {
  color: #1A1410;
  font-size: 17px;
  display: block;
  margin-bottom: 8px;
}

.contact-info-display {
  margin-top: 32px;
  padding: 24px;
  background-color: #F5EFE7;
  border-radius: 8px;
  border-left: 4px solid #8B4513;
}

.contact-info-display p {
  margin-bottom: 12px;
  font-size: 15px;
}

.map-placeholder {
  background-color: #E8E2D9;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  color: #6B5D4F;
  border: 2px dashed #D4C4B0;
}

/* ===================================
   ERROR & THANK YOU PAGES
   =================================== */

.error-hero,
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DFD0 100%);
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
  line-height: 1;
}

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

.confirmation-message {
  font-size: 17px;
  color: #4A4036;
  margin-top: 16px;
}

.popular-pages,
.explore-more,
.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.page-link {
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 2px solid #8B4513;
  color: #8B4513;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover {
  background-color: #8B4513;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* ===================================
   FEATURED POST
   =================================== */

.featured-post {
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DFD0 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 8px;
  position: relative;
}

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

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DFD0 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 2px solid #D4C4B0;
}

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 16px;
  color: #2C2416;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.legal-content a:hover {
  color: #6B3410;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #2C2416;
  color: #E8E2D9;
  padding: 60px 20px 30px;
  border-top: 3px solid #8B4513;
}

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

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

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

.footer-section p {
  color: #D4C4B0;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-section ul li a {
  color: #D4C4B0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #F5EFE7;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #4A4036;
}

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

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2416;
  color: #E8E2D9;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  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 {
  font-size: 15px;
  color: #D4C4B0;
  margin-bottom: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  max-width: 500px;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal h3 {
  margin-bottom: 24px;
  color: #1A1410;
}

.cookie-option {
  margin-bottom: 20px;
  padding: 16px;
  background-color: #F5EFE7;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-option input[type="checkbox"] {
  margin-top: 4px;
}

.cookie-option-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #2C2416;
}

.cookie-option-text p {
  font-size: 14px;
  color: #6B5D4F;
  margin-bottom: 0;
}

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

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 36px; }
  
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids - Stack on mobile */
  .services-grid > *,
  .recipe-grid > *,
  .blog-grid > *,
  .values-grid > *,
  .benefits-grid > *,
  .categories-grid > *,
  .course-formats-grid > *,
  .options-grid > *,
  .info-grid > *,
  .suggestions-grid > * {
    flex: 1 1 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Forms */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .form-input {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Error code */
  .error-code {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .services-grid > *,
  .recipe-grid > *,
  .blog-grid > * {
    flex: 1 1 calc(50% - 12px);
  }
  
  .values-grid > *,
  .benefits-grid > * {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ===================================
   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);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cookie-overlay,
  header,
  footer,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
}