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

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2D5F7E;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

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

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

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

/* ===========================
   SCANDINAVIAN CLEAN COLORS
   =========================== */

:root {
  --primary: #2D5F7E;
  --secondary: #7BA8A0;
  --accent: #E8D4B8;
  --light-bg: #F9F8F6;
  --white: #FFFFFF;
  --text-dark: #4A5568;
  --text-light: #718096;
  --border-light: #E2E8F0;
  --shadow-soft: rgba(45, 95, 126, 0.08);
}

/* ===========================
   MOBILE MENU TOGGLE BUTTON
   =========================== */

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border: none;
  background-color: var(--primary);
  color: var(--white);
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
}

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px 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;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  color: var(--text-dark);
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* ===========================
   HEADER STYLES
   =========================== */

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.tagline {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   BUTTON STYLES
   =========================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.btn-primary:hover {
  background-color: #244e67;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 95, 126, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  background: linear-gradient(135deg, #F9F8F6 0%, #E8D4B8 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

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

.hero h1 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 16px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

/* ===========================
   PAGE HERO
   =========================== */

.page-hero {
  background: linear-gradient(135deg, #F9F8F6 0%, #E8D4B8 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

.last-update {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 8px;
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits {
  background-color: var(--white);
}

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

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: var(--light-bg);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 126, 0.12);
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-dark);
  font-size: 15px;
}

/* ===========================
   PRODUCTS GRID
   =========================== */

.featured-products,
.products-content {
  background-color: var(--light-bg);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 40px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 95, 126, 0.15);
}

.product-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-dark);
  font-size: 15px;
  flex-grow: 1;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 16px;
}

.featured-products > .container > .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials {
  background-color: var(--white);
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  background-color: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
  font-size: 15px;
  margin-bottom: 0;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 16px;
}

/* ===========================
   CTA BANNER
   =========================== */

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  margin: 60px 24px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-banner .btn-primary {
  background-color: var(--white);
  color: var(--primary);
}

.cta-banner .btn-primary:hover {
  background-color: var(--light-bg);
}

.guarantee {
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* ===========================
   PROMOTION BANNER
   =========================== */

.promotion-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #f5e6d3 100%);
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 60px 24px;
}

.promotion-banner h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.promotion-banner p {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===========================
   BRAND STORY SECTION
   =========================== */

.brand-story {
  background-color: var(--white);
}

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

.text-section p {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.milestone {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: var(--light-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.milestone h3 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.milestone p {
  color: var(--text-dark);
  font-size: 15px;
}

/* ===========================
   MISSION & VISION
   =========================== */

.mission-vision {
  background-color: var(--light-bg);
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.mission-box,
.vision-box {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.mission-box h3,
.vision-box h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.mission-box p,
.vision-box p {
  color: var(--text-dark);
  line-height: 1.7;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.value-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-dark);
  font-size: 14px;
}

/* ===========================
   STATISTICS SECTION
   =========================== */

.statistics {
  background-color: var(--white);
  text-align: center;
}

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

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.stat-card h3 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 16px;
  opacity: 0.95;
}

/* ===========================
   GUIDE CATEGORIES
   =========================== */

.guide-categories {
  background-color: var(--light-bg);
}

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

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 95, 126, 0.15);
  background-color: var(--accent);
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.category-card p {
  color: var(--text-dark);
  font-size: 15px;
}

/* ===========================
   TECHNIQUES & TIPS GRIDS
   =========================== */

.massage-techniques,
.stress-management,
.aromatherapy-guide {
  background-color: var(--white);
}

.techniques-grid,
.tips-grid,
.oils-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.technique-card,
.tip-card,
.oil-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--light-bg);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.technique-card h3,
.tip-card h3,
.oil-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.technique-card p,
.tip-card p,
.oil-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

.benefits {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  font-style: italic;
  margin-top: 12px;
}

.safety-note {
  background-color: #fff4e6;
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin-top: 32px;
  border-radius: 8px;
}

.safety-note h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.safety-note p {
  color: var(--text-dark);
  line-height: 1.7;
}

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

.product-faq,
.faq-contact {
  background-color: var(--light-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.faq-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-dark);
  line-height: 1.7;
}

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

.cta-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cta-text a:hover {
  color: var(--secondary);
}

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

.contact-options,
.departments,
.location-info {
  background-color: var(--white);
}

.contact-grid,
.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card,
.department-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background-color: var(--light-bg);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all 0.3s ease;
}

.contact-card:hover,
.department-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 126, 0.12);
}

.contact-card h3,
.department-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-detail,
.dept-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.contact-card p,
.department-card p {
  color: var(--text-dark);
  font-size: 15px;
}

.location-details {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--light-bg);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-soft);
}

.address {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.location-details h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.location-details p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-cta {
  text-align: center;
  background-color: var(--accent);
  padding: 48px 32px;
  border-radius: 12px;
  margin-top: 60px;
}

.contact-cta h2 {
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 16px;
  margin-bottom: 24px;
}

.email-display {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 24px;
}

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

.legal-content {
  background-color: var(--white);
}

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

.legal-content h2 {
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 20px 0 20px 32px;
}

.legal-content ul li {
  list-style: disc;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(123, 168, 160, 0.3);
}

.thank-you-content h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 24px;
}

.subtitle {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.confirmation-text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.next-steps,
.explore-more {
  background-color: var(--white);
  padding: 60px 20px;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background-color: var(--light-bg);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

.suggestion-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.suggestion-card p {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.urgent-note {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 32px;
}

.special-offer {
  background: linear-gradient(135deg, var(--accent) 0%, #f5e6d3 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 24px;
}

.offer-headline {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.promo-code {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  background-color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  display: inline-block;
  margin: 24px 0;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.code-validity {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

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

footer {
  background-color: #2D5F7E;
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-column h4 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-column a {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  padding-left: 8px;
  color: var(--accent);
}

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

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px var(--shadow-soft);
  padding: 24px;
  z-index: 999;
  display: none;
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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 300px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background-color: var(--primary);
  color: var(--white);
}

.accept-all:hover {
  background-color: #244e67;
}

.reject-all {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.reject-all:hover {
  background-color: var(--light-bg);
}

.cookie-settings {
  background-color: transparent;
  color: var(--primary);
  text-decoration: underline;
}

.cookie-settings:hover {
  color: var(--secondary);
}

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

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

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--white);
  max-width: 600px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  color: var(--primary);
  font-size: 24px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary);
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.category-header h4 {
  color: var(--primary);
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

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

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

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

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

input:checked + .slider {
  background-color: var(--secondary);
}

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

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

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

.modal-actions button {
  flex: 1;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences {
  background-color: var(--primary);
  color: var(--white);
}

.save-preferences:hover {
  background-color: #244e67;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }

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

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

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

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

  /* Flexbox layouts for mobile */
  .benefits-grid,
  .products-grid,
  .testimonials-grid,
  .categories-grid,
  .techniques-grid,
  .tips-grid,
  .oils-grid,
  .contact-grid,
  .departments-grid,
  .steps-grid,
  .suggestions-grid,
  .values-grid,
  .stats-grid,
  .milestones,
  .mission-content {
    flex-direction: column;
  }

  .benefit-card,
  .product-card,
  .testimonial-card,
  .category-card,
  .technique-card,
  .tip-card,
  .oil-card,
  .contact-card,
  .department-card,
  .step-card,
  .suggestion-card,
  .value-card,
  .stat-card,
  .milestone,
  .mission-box,
  .vision-box {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Hero adjustments */
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

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

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

  /* Section padding */
  section {
    padding: 32px 16px;
  }

  /* CTA banner */
  .cta-banner,
  .promotion-banner,
  .special-offer {
    margin: 40px 16px;
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  /* Mobile menu width */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  /* Typography for small screens */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  /* Button sizing */
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }

  /* Trust badges */
  .trust-badges {
    flex-direction: column;
  }

  /* Promo code */
  .promo-code {
    font-size: 28px;
    padding: 12px 24px;
  }
}

/* ===========================
   ACCESSIBILITY & UTILITIES
   =========================== */

*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}