/* ========================================
   LUMINOUS SPROUT - ELEGANT CLASSIC STYLES
   Design Style: Timeless Elegant Design
   ======================================== */

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

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fafaf8;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

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

a:hover {
  color: #5a4520;
}

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

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

blockquote {
  border-left: 3px solid #8FBC8F;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #5a5a5a;
  font-size: 18px;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e3dc;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

.main-nav a:hover {
  color: #7A6030;
  border-bottom-color: #8FBC8F;
}

/* CTA BUTTON IN HEADER */
.cta-button {
  background-color: #8FBC8F;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 1px solid #8FBC8F;
}

.cta-button:hover {
  background-color: #7aac7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(143, 188, 143, 0.3);
}

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

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

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
}

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

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

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

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

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

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

/* BUTTONS - Elegant Classic Style */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #7aac7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(143, 188, 143, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #7A6030;
  border-color: #7A6030;
}

.btn-secondary:hover {
  background-color: #7A6030;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122, 96, 48, 0.2);
}

.btn-link {
  background: none;
  color: #7A6030;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #7A6030;
  border-radius: 0;
}

.btn-link:hover {
  color: #5a4520;
  border-bottom-color: #5a4520;
}

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

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

/* HERO SECTION */
.hero {
  background: linear-gradient(to bottom, #f5f3ef 0%, #fafaf8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #e8e3dc;
}

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

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

.subheadline {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  color: #7A6030;
  font-size: 15px;
  font-weight: 400;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(to bottom, #f5f3ef 0%, #fafaf8 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #e8e3dc;
}

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

.page-hero p {
  font-size: 18px;
  color: #5a5a5a;
}

.last-updated {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

/* VALUE GRID - FLEXBOX */
.value-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

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

.value-card p {
  color: #5a5a5a;
  font-size: 15px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

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

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #5a5a5a;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  color: #7A6030;
  font-weight: 600;
  margin: 16px 0;
}

/* PROCESS STEPS - FLEXBOX */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

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

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #8FBC8F;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

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

.step p {
  color: #5a5a5a;
  font-size: 15px;
}

/* TESTIMONIALS - FLEXBOX */
.testimonials {
  background-color: #f5f3ef;
  padding: 60px 20px;
}

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

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

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

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

.testimonial-card .rating {
  color: #C9A66B;
  font-size: 18px;
  margin-bottom: 0;
}

/* STATS - FLEXBOX */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #7A6030;
  font-weight: 400;
  margin-bottom: 8px;
}

.stat span {
  font-size: 16px;
  color: #5a5a5a;
}

/* ABOUT PREVIEW */
.about-preview {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-preview h2 {
  margin-bottom: 24px;
}

.about-preview > p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #5a5a5a;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #8FBC8F 0%, #7aac7a 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 4px;
  margin: 60px 20px;
}

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

.cta-banner p,
.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #ffffff;
  color: #7A6030;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #f5f3ef;
}

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

/* LOCATION */
.location {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f3ef;
}

.address,
.hours {
  font-size: 18px;
  margin-bottom: 16px;
  color: #5a5a5a;
}

/* SERVICES DETAIL */
.services-detail .container {
  max-width: 900px;
}

.service-full {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  margin-bottom: 32px;
}

.service-full h2 {
  margin-bottom: 16px;
}

.service-full .price {
  font-size: 32px;
  color: #7A6030;
  font-weight: 600;
  margin: 24px 0;
  display: block;
}

.benefits {
  margin: 24px 0;
  padding-left: 24px;
}

.benefits li {
  margin-bottom: 12px;
  color: #4a4a4a;
  position: relative;
  padding-left: 8px;
}

.benefits li::before {
  content: '✓';
  color: #8FBC8F;
  font-weight: 600;
  position: absolute;
  left: -20px;
}

/* INGREDIENTS - FLEXBOX */
.ingredients {
  background-color: #f5f3ef;
  padding: 60px 20px;
  text-align: center;
}

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

.ingredient {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  margin-bottom: 20px;
}

.ingredient h3 {
  color: #7A6030;
  margin-bottom: 8px;
  font-size: 18px;
}

.ingredient p {
  color: #5a5a5a;
  font-size: 14px;
}

/* PACKAGES - FLEXBOX */
.packages {
  padding: 60px 20px;
}

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

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #8FBC8F;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-card:hover {
  box-shadow: 0 8px 24px rgba(143, 188, 143, 0.2);
  transform: translateY(-4px);
}

.package-card h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
}

.package-card > p {
  color: #5a5a5a;
  margin-bottom: 16px;
}

.package-card .price {
  font-size: 32px;
  color: #7A6030;
  font-weight: 600;
  margin: 16px 0;
  display: block;
}

.package-card .savings {
  color: #8FBC8F;
  font-weight: 600;
  font-size: 14px;
}

/* FAQ */
.faq {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq .container {
  max-width: 800px;
}

.faq-item,
.faq-contact .faq-item {
  background-color: #f5f3ef;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 20px;
  border-left: 4px solid #8FBC8F;
}

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

.faq-item p {
  color: #5a5a5a;
  margin-bottom: 0;
}

/* STORY SECTION */
.story {
  padding: 60px 20px;
}

.story .container {
  max-width: 800px;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* TEAM - FLEXBOX */
.team {
  padding: 60px 20px;
  background-color: #f5f3ef;
}

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

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  text-align: center;
  margin-bottom: 20px;
}

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

.team-member .role {
  color: #7A6030;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member p {
  color: #5a5a5a;
  font-size: 15px;
}

/* CERTIFICATIONS */
.certifications {
  padding: 60px 20px;
  text-align: center;
}

.cert-list {
  list-style: none;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0;
}

.cert-list li {
  background-color: #ffffff;
  padding: 16px 24px;
  margin-bottom: 12px;
  border-radius: 4px;
  border-left: 4px solid #8FBC8F;
  color: #2c2c2c;
  font-size: 16px;
}

/* SUSTAINABILITY */
.sustainability {
  padding: 60px 20px;
  background-color: #f5f3ef;
}

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

.sustainability-list li {
  padding: 16px 0 16px 32px;
  margin-bottom: 12px;
  color: #4a4a4a;
  position: relative;
}

.sustainability-list li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* PHILOSOPHY */
.philosophy {
  padding: 60px 20px;
  text-align: center;
}

.philosophy .container {
  max-width: 800px;
}

.philosophy p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.pillar {
  flex: 1 1 250px;
  text-align: center;
}

.pillar h3 {
  color: #7A6030;
  margin-bottom: 8px;
}

.pillar p {
  color: #5a5a5a;
  font-size: 15px;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f3ef;
}

.location-info p {
  font-size: 16px;
  margin-bottom: 12px;
}

/* BLOG SECTIONS */
.blog-filter {
  padding: 40px 20px;
  background-color: #ffffff;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  background-color: #f5f3ef;
  color: #2c2c2c;
  border: 1px solid #e8e3dc;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* FEATURED ARTICLE */
.featured-article {
  padding: 60px 20px;
  background-color: #f5f3ef;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background-color: #7A6030;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.excerpt {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #888;
}

/* BLOG GRID - FLEXBOX */
.blog-grid {
  padding: 60px 20px;
}

.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: 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

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

.article-card p {
  color: #5a5a5a;
  margin-bottom: 16px;
  flex-grow: 1;
}

.read-time {
  font-size: 14px;
  color: #888;
}

/* POPULAR TOPICS */
.popular-topics {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f3ef;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.tag {
  background-color: #ffffff;
  color: #7A6030;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #e8e3dc;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background-color: #8FBC8F;
  color: #ffffff;
  border-color: #8FBC8F;
}

/* EXPERT TIP */
.expert-tip {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.tip-badge {
  display: inline-block;
  background-color: #C9A66B;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.expert {
  font-style: italic;
  color: #7A6030;
  font-size: 15px;
  margin-top: 24px;
}

/* PRODUCTS */
.product-categories {
  padding: 60px 20px;
}

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

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.category-card h3 {
  color: #7A6030;
  margin-bottom: 8px;
}

.category-card p {
  color: #5a5a5a;
  font-size: 14px;
}

/* FEATURED PRODUCTS */
.featured-products {
  padding: 60px 20px;
  background-color: #f5f3ef;
}

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

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  text-align: center;
}

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

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

.product-card p {
  color: #5a5a5a;
  margin-bottom: 16px;
}

.product-card .price {
  font-size: 32px;
  color: #7A6030;
  font-weight: 600;
  margin: 16px 0;
  display: block;
}

.product-card .rating {
  color: #C9A66B;
  font-size: 16px;
  margin-bottom: 16px;
  display: block;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.badge {
  background-color: #8FBC8F;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PRODUCT BENEFITS */
.product-benefits {
  padding: 60px 20px;
}

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

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

.benefit h3 {
  color: #7A6030;
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit p {
  color: #5a5a5a;
  font-size: 14px;
}

/* GIFT SETS */
.gift-sets {
  padding: 60px 20px;
  background-color: #f5f3ef;
}

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

.gift-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #C9A66B;
  text-align: center;
  margin-bottom: 20px;
}

.gift-card h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
}

.gift-card p {
  color: #5a5a5a;
  margin-bottom: 16px;
}

.gift-card .price {
  font-size: 28px;
  color: #7A6030;
  font-weight: 600;
  display: block;
}

/* CONTACT PAGE */
.contact-methods {
  padding: 60px 20px;
}

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

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  text-align: center;
  margin-bottom: 20px;
}

.method-card h3 {
  color: #7A6030;
  margin-bottom: 12px;
}

.detail {
  font-size: 18px;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 8px;
}

.availability {
  font-size: 14px;
  color: #888;
}

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

.form-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
}

.form-info p {
  margin-bottom: 20px;
}

.form-info strong {
  display: block;
  color: #7A6030;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-info label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

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

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

/* OPENING HOURS */
.opening-hours {
  padding: 60px 20px;
  background-color: #ffffff;
}

.hours-list {
  list-style: none;
  max-width: 500px;
  margin: 40px auto 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e8e3dc;
  color: #4a4a4a;
}

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

.legal-content .container {
  max-width: 800px;
}

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

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #7A6030;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f5f3ef 0%, #fafaf8 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #8FBC8F;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.thank-you-content {
  padding: 60px 20px;
  text-align: center;
}

.thank-you-content .container {
  max-width: 700px;
}

.next-steps {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a4a4a;
}

.next-actions {
  padding: 60px 20px;
  background-color: #f5f3ef;
}

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

.action-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e3dc;
  text-align: center;
}

.action-card h3 {
  margin-bottom: 12px;
}

.action-card p {
  margin-bottom: 20px;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.navigation-links {
  padding: 40px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e3dc;
  padding: 24px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #4a4a4a;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #8FBC8F;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #7aac7a;
}

.cookie-reject {
  background-color: #e8e3dc;
  color: #2c2c2c;
}

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

.cookie-settings {
  background-color: transparent;
  color: #7A6030;
  border: 1px solid #7A6030;
}

.cookie-settings:hover {
  background-color: #7A6030;
  color: #ffffff;
}

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

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

.modal-content {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #f5f3ef;
  border-radius: 4px;
  border-left: 4px solid #8FBC8F;
}

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

.cookie-category p {
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: 12px;
}

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

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

.cookie-toggle label {
  font-size: 14px;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Flexbox adjustments for mobile */
  .value-card,
  .service-card,
  .step,
  .testimonial-card,
  .package-card,
  .ingredient,
  .team-member,
  .category-card,
  .product-card,
  .article-card,
  .method-card,
  .gift-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Section padding adjustments */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .page-hero {
    padding: 48px 16px;
  }
  
  /* Card spacing */
  .value-grid,
  .values-grid,
  .services-grid,
  .process-steps,
  .testimonial-grid,
  .ingredient-grid,
  .package-grid,
  .team-grid,
  .category-grid,
  .product-grid,
  .benefits-grid,
  .gift-grid,
  .methods-grid,
  .articles-grid,
  .actions-grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .service-card .price,
  .product-card .price,
  .package-card .price {
    font-size: 24px;
  }
  
  .modal-content {
    padding: 24px 20px;
  }
}

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