/* ========================================
   LUMINESCENT CRYPT - SCANDINAVIAN CLEAN DESIGN
   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: #2D3142;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* ========================================
   SCANDINAVIAN CLEAN TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #2D3142;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

a {
  color: #2D3142;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #9B8E7E;
}

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

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

strong {
  font-weight: 600;
  color: #2D3142;
}

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

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

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

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DED2;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo a {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2D3142;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

.main-nav a:hover {
  color: #9B8E7E;
}

/* ========================================
   MOBILE MENU - SCANDINAVIAN SLIDE
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2D3142;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2D3142;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #9B8E7E;
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2D3142;
  padding: 12px 0;
  border-bottom: 1px solid #E8DED2;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

/* ========================================
   HERO SECTION - SCANDINAVIAN MINIMAL
   ======================================== */

.hero {
  background: linear-gradient(135deg, #E8DED2 0%, #F5F0EA 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E8DED2;
}

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

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

.hero-subtitle {
  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: #9B8E7E;
  font-style: italic;
}

/* ========================================
   BUTTONS - SCANDINAVIAN CLEAN
   ======================================== */

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

.btn-primary {
  background-color: #2D3142;
  color: #FFFFFF;
  border-color: #2D3142;
}

.btn-primary:hover {
  background-color: #3D4152;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 49, 66, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D3142;
  border-color: #2D3142;
}

.btn-secondary:hover {
  background-color: #2D3142;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 49, 66, 0.2);
}

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

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

.value-proposition,
.services-preview,
.how-it-works,
.testimonials,
.location-info,
.cta-final,
.services-list,
.packages,
.faq,
.cta-section,
.intro-section,
.ingredient-spotlight,
.avoid-list,
.blog-grid,
.workshop-promo,
.mission,
.story,
.why-choose-us,
.contact-options,
.contact-form-section,
.location-details,
.directions,
.legal-content,
.related-links,
.authority-info,
.cookie-list,
.cancellation-policy,
.liability,
.copyright,
.dispute-resolution,
.thank-you-hero,
.next-steps,
.preparation,
.explore-content,
.social-proof,
.return-nav,
.trust-section,
.return-home {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   VALUE PROPOSITION - FLEXBOX GRID
   ======================================== */

.value-proposition {
  background-color: #FFFFFF;
  border-top: 1px solid #E8DED2;
  border-bottom: 1px solid #E8DED2;
}

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

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

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D3142;
}

.value-card p {
  font-size: 15px;
  color: #4A4A4A;
}

/* ========================================
   SERVICES GRID - FLEXBOX LAYOUT
   ======================================== */

.services-preview h2,
.services-list h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2D3142;
}

.service-card .price {
  font-size: 28px;
  font-weight: 600;
  color: #9B8E7E;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}

.cta-center {
  text-align: center;
  margin-top: 32px;
}

/* ========================================
   SERVICE DETAIL - EXTENDED CARDS
   ======================================== */

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-detail h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-price {
  font-size: 24px;
  font-weight: 600;
  color: #9B8E7E;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail li {
  margin-bottom: 12px;
  font-size: 15px;
}

.service-detail .btn {
  margin-top: 24px;
}

/* ========================================
   HOW IT WORKS - STEP PROCESS
   ======================================== */

.how-it-works {
  background-color: #FAFAFA;
}

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

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

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #2D3142;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.step p {
  font-size: 15px;
  color: #4A4A4A;
}

/* ========================================
   TESTIMONIALS - LIGHT BACKGROUNDS
   ======================================== */

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

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #9B8E7E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-size: 14px;
  color: #9B8E7E;
  font-style: italic;
  font-weight: 600;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #2D3142;
  margin-top: 24px;
}

/* ========================================
   LOCATION INFO - TEXT/IMAGE SECTION
   ======================================== */

.location-info {
  background-color: #FFFFFF;
}

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

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

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

.location-text p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ========================================
   CTA SECTIONS - CENTERED
   ======================================== */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #2D3142 0%, #3D4152 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
}

.cta-final h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p {
  color: #E8DED2;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final .btn-primary,
.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #2D3142;
  border-color: #FFFFFF;
}

.cta-final .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #E8DED2;
  color: #2D3142;
}

.guarantee,
.price-note {
  font-size: 14px;
  color: #E8DED2;
  margin-top: 16px;
  font-style: italic;
}

/* ========================================
   HERO PAGE - BREADCRUMB
   ======================================== */

.hero-page {
  background-color: #F5F0EA;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E8DED2;
}

.breadcrumb {
  font-size: 14px;
  color: #9B8E7E;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #9B8E7E;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #2D3142;
}

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

.subtitle {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 16px;
}

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

/* ========================================
   BLOG CATEGORIES - NAVIGATION
   ======================================== */

.blog-categories {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DED2;
}

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

.category-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4A4A4A;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.category-nav a:hover {
  background-color: #E8DED2;
  color: #2D3142;
}

/* ========================================
   FEATURED ARTICLE - HIGHLIGHT
   ======================================== */

.featured-article {
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 8px;
  border: 2px solid #9B8E7E;
  margin-bottom: 40px;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: #9B8E7E;
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
}

.featured-article h2 {
  margin-bottom: 16px;
}

.featured-article p {
  font-size: 16px;
  margin-bottom: 12px;
}

.meta {
  font-size: 14px;
  color: #9B8E7E;
  font-style: italic;
}

/* ========================================
   ARTICLES GRID - BLOG POSTS
   ======================================== */

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

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.article-card p {
  font-size: 15px;
  color: #4A4A4A;
  margin-bottom: 12px;
}

/* ========================================
   PACKAGES - PRICING CARDS
   ======================================== */

.packages {
  background-color: #F5F0EA;
  padding: 60px 20px;
}

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

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

.package-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #9B8E7E;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.package-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.package-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2D3142;
}

.package-item p {
  font-size: 18px;
  color: #9B8E7E;
  font-weight: 600;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #4A4A4A;
  font-style: italic;
}

/* ========================================
   FAQ - ACCORDION STYLE
   ======================================== */

.faq {
  background-color: #FFFFFF;
}

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

.faq-item {
  background-color: #FAFAFA;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  margin-bottom: 16px;
}

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

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

/* ========================================
   CLEAN BEAUTY SECTIONS
   ======================================== */

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

.principle-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #2D3142;
  margin-bottom: 20px;
}

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

.ingredient-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  text-align: center;
  margin-bottom: 20px;
}

.ingredient-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2D3142;
}

.ingredient-item p {
  font-size: 14px;
  color: #4A4A4A;
}

.avoid-items {
  list-style: none;
  margin-left: 0;
}

.avoid-items li {
  background-color: #FAFAFA;
  padding: 16px;
  border-radius: 4px;
  border-left: 4px solid #9B8E7E;
  margin-bottom: 12px;
  font-size: 15px;
}

/* ========================================
   MISSION & STORY SECTIONS
   ======================================== */

.mission,
.story {
  background-color: #FFFFFF;
}

.mission h2,
.story h2 {
  text-align: center;
  margin-bottom: 24px;
}

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

.value-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background-color: #F5F0EA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D3142;
}

.value-item p {
  font-size: 15px;
  color: #4A4A4A;
}

.reasons-list {
  list-style: none;
  margin-left: 0;
  margin-top: 24px;
}

.reasons-list li {
  background-color: #F5F0EA;
  padding: 16px 16px 16px 48px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 16px;
  position: relative;
}

.reasons-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  color: #9B8E7E;
  font-weight: 600;
  font-size: 18px;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-method {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-method p {
  font-size: 15px;
  margin-bottom: 8px;
}

.form-notice {
  background-color: #F5F0EA;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #9B8E7E;
  margin-top: 32px;
}

.form-notice p {
  font-size: 15px;
  color: #2D3142;
}

.direction-info {
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  margin-top: 32px;
}

.direction-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.direction-info h3:first-child {
  margin-top: 0;
}

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

.legal-section {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  margin-bottom: 24px;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2D3142;
}

.legal-section p,
.legal-section ul {
  font-size: 15px;
  line-height: 1.7;
}

.related-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.related-nav a {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  background-color: #F5F0EA;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #E8DED2;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.related-nav a:hover {
  background-color: #E8DED2;
}

/* ========================================
   COOKIE TABLE
   ======================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background-color: #FFFFFF;
}

thead {
  background-color: #2D3142;
  color: #FFFFFF;
}

th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

td {
  padding: 16px;
  border-bottom: 1px solid #E8DED2;
  font-size: 14px;
  color: #4A4A4A;
}

tr:hover {
  background-color: #FAFAFA;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #E8DED2 0%, #F5F0EA 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #9B8E7E;
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 24px;
}

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

.step-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  text-align: center;
  margin-bottom: 20px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2D3142;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.prep-list {
  list-style: none;
  margin-left: 0;
  margin-top: 24px;
}

.prep-list li {
  background-color: #F5F0EA;
  padding: 16px 16px 16px 48px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
}

.prep-list li::before {
  content: '•';
  position: absolute;
  left: 20px;
  top: 16px;
  color: #9B8E7E;
  font-size: 24px;
}

.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.content-link {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #E8DED2;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.content-link:hover {
  background-color: #E8DED2;
  border-color: #9B8E7E;
}

.trust-statement {
  font-size: 18px;
  font-weight: 600;
  color: #2D3142;
  text-align: center;
  margin-bottom: 12px;
}

/* ========================================
   QUICK TIPS
   ======================================== */

.quick-tips {
  background-color: #F5F0EA;
  padding: 60px 20px;
}

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

.tips-list {
  list-style: none;
  margin-left: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-list li {
  background-color: #FFFFFF;
  padding: 20px 20px 20px 60px;
  border-radius: 8px;
  border-left: 4px solid #9B8E7E;
  margin-bottom: 16px;
  font-size: 16px;
  position: relative;
}

.tips-list li::before {
  content: '💡';
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 24px;
}

/* ========================================
   WORKSHOP PROMO
   ======================================== */

.workshop-promo {
  background: linear-gradient(135deg, #9B8E7E 0%, #B5A89A 100%);
  padding: 60px 40px;
  border-radius: 8px;
  color: #FFFFFF;
  text-align: center;
}

.workshop-promo h2,
.workshop-promo h3 {
  color: #FFFFFF;
}

.workshop-promo p {
  color: #FFFFFF;
}

.workshop-promo .service-price {
  color: #FFFFFF;
  font-size: 32px;
  margin: 24px 0;
}

.workshop-promo .btn-primary {
  background-color: #FFFFFF;
  color: #2D3142;
  margin-top: 24px;
}

.workshop-promo .btn-primary:hover {
  background-color: #E8DED2;
}

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

footer {
  background-color: #2D3142;
  color: #E8DED2;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 240px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #E8DED2;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 222, 210, 0.2);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D3142;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  display: block;
  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 1 400px;
}

.cookie-text p {
  color: #E8DED2;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: #9B8E7E;
  color: #FFFFFF;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #E8DED2;
  border: 2px solid #E8DED2;
}

.cookie-btn-reject:hover {
  background-color: rgba(232, 222, 210, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #E8DED2;
  border: 2px solid #E8DED2;
}

.cookie-btn-settings:hover {
  background-color: rgba(232, 222, 210, 0.1);
}

/* ========================================
   COOKIE MODAL
   ======================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 49, 66, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2D3142;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #9B8E7E;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #FAFAFA;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E8DED2;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCC;
  border-radius: 26px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: #9B8E7E;
}

.cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

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

.cookie-category p {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 0;
}

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .value-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .articles-grid,
  .package-list,
  .principles-grid,
  .ingredients-grid,
  .values-grid,
  .contact-methods,
  .steps-list,
  .content-links {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .step,
  .testimonial-card,
  .article-card,
  .package-item,
  .principle-item,
  .ingredient-item,
  .value-item,
  .contact-method,
  .step-item,
  .content-link {
    flex: 1 1 100%;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .services-preview,
  .how-it-works,
  .testimonials,
  .cta-final,
  .cta-section,
  .packages,
  .quick-tips,
  .workshop-promo {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero-page {
    padding: 40px 16px;
  }
  
  /* Cards */
  .service-detail,
  .featured-article {
    padding: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Tables */
  table {
    font-size: 13px;
  }
  
  th, td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

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

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

*:focus {
  outline: 2px solid #9B8E7E;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #9B8E7E;
  outline-offset: 2px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
}