/* ============================================
   OMAS KOCHBUCH - SCANDINAVIAN CLEAN DESIGN
   Traditionelle deutsche Rezepte für die moderne Küche
   ============================================ */

/* ============================================
   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.7;
  color: #2b2b2b;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN STYLE
   ============================================ */

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

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

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

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

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

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

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

/* ============================================
   HEADER - MINIMAL SCANDINAVIAN STYLE
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

header .container {
  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 {
  font-size: 15px;
  font-weight: 400;
  color: #4a4a4a;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
}

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

.main-nav a:hover {
  color: #8B4513;
}

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

/* ============================================
   MOBILE MENU - SCANDINAVIAN CLEAN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #2b2b2b;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  color: #2b2b2b;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #2b2b2b;
  padding: 8px;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

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

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

/* ============================================
   BUTTONS - SCANDINAVIAN MINIMALIST
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

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

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

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

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

/* ============================================
   HERO SECTIONS - CLEAN & MINIMAL
   ============================================ */

.hero {
  background: linear-gradient(135deg, #F4E4C1 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
}

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

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

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

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

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

.page-hero {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

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

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

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

/* ============================================
   CARDS - SCANDINAVIAN CLEAN STYLE
   ============================================ */

.benefits-grid,
.services-grid,
.testimonial-grid,
.collections-grid,
.time-grid,
.tips-grid,
.region-grid,
.festival-grid,
.category-grid,
.values-grid,
.stats-grid,
.contact-grid,
.faq-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card,
.service-card,
.testimonial-card,
.collection-card,
.time-card,
.tip-card,
.region-card,
.festival-card,
.category-card,
.value-card,
.stat-card,
.contact-card,
.faq-item,
.link-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.benefit-card:hover,
.service-card:hover,
.collection-card:hover,
.time-card:hover,
.tip-card:hover,
.region-card:hover,
.festival-card:hover,
.category-card:hover,
.value-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B4513;
}

.benefit-card img,
.tip-card img,
.category-card img,
.value-card img,
.contact-card img,
.link-card img {
  width: 48px;
  height: 48px;
}

.benefit-card h3,
.service-card h3,
.collection-card h3,
.time-card h3,
.tip-card h3,
.region-card h3,
.festival-card h3,
.category-card h3,
.value-card h3,
.contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.benefit-card p,
.service-card p,
.collection-card p,
.time-card p,
.tip-card p,
.region-card p,
.festival-card p,
.category-card p,
.value-card p,
.contact-card p {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 1.6;
}

/* ============================================
   SERVICE CARDS - SPECIAL STYLING
   ============================================ */

.service-card {
  position: relative;
}

.service-card.popular {
  border-color: #8B4513;
  border-width: 2px;
}

.service-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #8B4513;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

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

.recipe-count,
.response-time {
  font-size: 14px;
  color: #8B4513;
  font-weight: 500;
}

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

.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 32px;
  text-align: left;
  max-width: 500px;
}

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

.testimonial-card .author {
  font-size: 14px;
  color: #6a6a6a;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #8B4513;
  font-size: 18px;
}

/* ============================================
   CTA SECTIONS - CONVERSION FOCUSED
   ============================================ */

.cta-banner,
.conversion-banner,
.service-highlight,
.cta-section {
  background-color: #F4E4C1;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 20px;
}

.cta-banner h2,
.conversion-banner h2,
.service-highlight h2,
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.cta-banner p,
.conversion-banner p,
.service-highlight p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #4a4a4a;
}

.guarantee,
.pricing-teaser {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 16px;
}

.feature-list {
  list-style: none;
  margin: 24px auto;
  max-width: 400px;
  text-align: left;
}

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

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 700;
  font-size: 18px;
}

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

.text-image-section,
.brand-story {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.text-section h2 {
  text-align: left;
  margin-bottom: 20px;
}

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

/* ============================================
   STATISTICS - CLEAN PRESENTATION
   ============================================ */

.statistics {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

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

.stat-card {
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-card h3 {
  font-size: 48px;
  color: #8B4513;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  font-size: 16px;
  color: #6a6a6a;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 60px 20px;
}

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

.faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e8e8e8;
  padding: 24px;
  border-radius: 8px;
  max-width: 100%;
  align-items: flex-start;
}

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

.faq-item p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   LEGAL PAGES - READABLE CONTENT
   ============================================ */

.legal-hero {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.legal-hero h1 {
  font-size: 42px;
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 16px;
  color: #6a6a6a;
}

.legal-content {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #2b2b2b;
}

.legal-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

.error-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

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

.popular-links,
.help-section {
  padding: 60px 20px;
  text-align: center;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  min-height: 180px;
}

.link-card img {
  width: 48px;
  height: 48px;
}

.link-card span {
  font-size: 16px;
  font-weight: 500;
  color: #2b2b2b;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

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

.next-steps,
.quick-start,
.support {
  padding: 60px 20px;
  text-align: center;
}

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

.step-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.step-card img {
  width: 48px;
  height: 48px;
}

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

.resource-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B4513;
}

.return-home {
  padding: 60px 20px;
  text-align: center;
}

/* ============================================
   FOOTER - MINIMAL SCANDINAVIAN
   ============================================ */

footer {
  background-color: #2b2b2b;
  color: #e8e8e8;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

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

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

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

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

.footer-nav a:hover {
  color: #F4E4C1;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

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

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

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cookie-settings-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.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-settings-modal h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

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

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

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

.cookie-toggle.active {
  background-color: #2C5F2D;
}

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

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

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

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

/* ============================================
   BADGES & LABELS
   ============================================ */

.badge {
  display: inline-block;
  background-color: #8B4513;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero p {
    font-size: 18px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Header adjustments */
  header {
    padding: 16px 0;
  }

  .logo img {
    height: 40px;
  }

  /* Section spacing */
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }

  /* CTA buttons stack on mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  /* Cards adjustments */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .collection-card,
  .time-card,
  .tip-card,
  .region-card,
  .festival-card,
  .category-card,
  .value-card,
  .stat-card,
  .contact-card,
  .link-card,
  .step-card,
  .resource-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Text-image sections stack */
  .text-image-section,
  .brand-story {
    flex-direction: column;
    gap: 24px;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  /* Error page */
  .error-code {
    font-size: 80px;
  }

  /* Statistics */
  .stat-card h3 {
    font-size: 36px;
  }

  /* CTA sections */
  .cta-banner h2,
  .conversion-banner h2,
  .service-highlight h2 {
    font-size: 28px;
  }

  .cta-banner p,
  .conversion-banner p,
  .service-highlight p {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }

  .benefits-grid,
  .services-grid {
    gap: 20px;
  }

  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #8B4513;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: #F4E4C1;
  color: #1a1a1a;
}

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

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}
