:root {
  --color-lavender: #e6e6fa;
  --color-teal: #5fb3b3;
  --color-lime: #c0ff00;
  --color-fuchsia: #ff00ff;
  --color-amber: #ffbf00;
  --color-charcoal: #2c2c2c;
  --color-dark: #1a1a1a;
  --color-light: #f5f5f5;
  --color-white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #e6e6fa 0%, #5fb3b3 100%);
  --gradient-neon: linear-gradient(135deg, #c0ff00 0%, #ff00ff 50%, #ffbf00 100%);
  --shadow-neon: 0 0 20px rgba(192, 255, 0, 0.3);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--gradient-primary);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(192, 255, 0, 0.2);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.neon-text {
  color: var(--color-lime);
  text-shadow: 0 0 10px rgba(192, 255, 0, 0.5);
  transition: var(--transition-smooth);
}

.neon-text:hover {
  color: var(--color-lime);
  text-shadow: 0 0 20px rgba(192, 255, 0, 0.8), 0 0 30px rgba(192, 255, 0, 0.4);
}

.nav-link {
  color: var(--color-light) !important;
  margin: 0 0.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(192,255,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-glass);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-neon);
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-neon);
  color: var(--color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(192, 255, 0, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(192, 255, 0, 0.5);
  color: var(--color-dark);
  text-decoration: none;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-charcoal);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  border: 2px solid var(--color-lime);
  cursor: pointer;
  margin-left: 1rem;
}

.cta-button-outline:hover {
  background: var(--color-lime);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 255, 0, 0.3);
  text-decoration: none;
}

.cta-button-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.floating-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(192, 255, 0, 0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition-smooth);
}

.floating-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(192, 255, 0, 0.2);
}

.floating-card:hover::before {
  left: 100%;
}

.ritual-card {
  text-align: center;
  height: 100%;
}

.ritual-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(192, 255, 0, 0.3);
}

.ritual-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.ritual-card p {
  color: #555;
  line-height: 1.6;
}

.bg-wave {
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}

.bg-wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg viewBox="0 0 1200 600" xmlns="http://www.w3.org/2000/svg"><path d="M0,100 Q300,0 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(95,179,179,0.05)"/></svg>');
  background-size: cover;
  opacity: 0.5;
}

.nutrients-section .container,
.supplements-section .container {
  position: relative;
  z-index: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glass);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.nutrient-card img {
  border-radius: 10px;
  margin-bottom: 1rem;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.nutrient-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.nutrient-card p {
  font-size: 0.95rem;
  color: #555;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: var(--shadow-glass);
}

.calculator-panel {
  max-width: 100%;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(95, 179, 179, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  background: var(--color-white);
  border-color: var(--color-lime);
  box-shadow: 0 0 15px rgba(192, 255, 0, 0.3);
  outline: none;
}

.calculator-result {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(192, 255, 0, 0.1);
  border-radius: 15px;
  border: 2px solid var(--color-lime);
  display: none;
}

.calculator-result.show {
  display: block;
  animation: slideIn 0.5s ease-out;
}

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

.neon-border {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.neon-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-neon);
  border-radius: 15px;
  z-index: -1;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.neon-border:hover::before {
  opacity: 1;
  box-shadow: 0 0 30px rgba(192, 255, 0, 0.5);
}

.supplement-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(192, 255, 0, 0.2);
  line-height: 1;
}

.supplement-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.supplement-card p {
  color: #555;
  margin-bottom: 0;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-neon);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.supplement-card:hover .card-accent {
  transform: scaleX(1);
}

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

.neon-glow {
  color: var(--color-lime);
  text-shadow: 0 0 20px rgba(192, 255, 0, 0.5), 0 0 40px rgba(192, 255, 0, 0.3);
}

.tip-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.tip-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.tip-icon {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tip-icon.lime {
  color: var(--color-lime);
  text-shadow: 0 0 15px rgba(192, 255, 0, 0.5);
}

.tip-icon.fuchsia {
  color: var(--color-fuchsia);
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.tip-icon.amber {
  color: var(--color-amber);
  text-shadow: 0 0 15px rgba(255, 191, 0, 0.5);
}

.tip-box h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-light);
}

.tip-box p {
  color: #ccc;
  margin-bottom: 0;
}

.wave-section {
  position: relative;
  overflow: hidden;
}

.wave-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 1200 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z" fill="rgba(255,255,255,0.2)"/></svg>');
  background-size: cover;
}

.planning-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.wellness-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.wellness-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.wellness-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-weight: 700;
}

.habit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  height: 100%;
}

.habit-card:hover {
  border-color: var(--color-lime);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(192, 255, 0, 0.2);
}

.habit-number {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-neon);
  color: var(--color-dark);
  border-radius: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.habit-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.habit-card p {
  color: #555;
  margin-bottom: 0;
}

.faq-accordion {
  max-width: 100%;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--color-lime);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-lime);
  transition: var(--transition-smooth);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #555;
  line-height: 1.8;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  height: 100%;
}

.neon-highlight {
  position: relative;
}

.neon-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-neon);
  border-radius: 15px 0 0 15px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--color-lime);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: var(--color-charcoal);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #888;
  font-size: 0.9rem;
}

.glass-overlay {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.glass-overlay::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 255, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.quote-icon {
  font-size: 5rem;
  color: var(--color-lime);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.expert-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.expert-info strong {
  display: block;
  color: var(--color-lime);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.expert-info span {
  color: #aaa;
}

.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="2" fill="rgba(192,255,0,0.1)"/></svg>');
  opacity: 0.5;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.site-footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: #aaa;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--color-lime);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-lime);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-lime);
  padding-left: 5px;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  list-style: none;
  padding: 0;
  color: #aaa;
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  border-top: 2px solid var(--color-lime);
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  color: var(--color-light);
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cookie-btn.accept {
  background: var(--color-lime);
  color: var(--color-dark);
}

.cookie-btn.accept:hover {
  background: var(--color-amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192, 255, 0, 0.4);
}

.cookie-btn.reject {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-btn.settings {
  background: transparent;
  color: var(--color-lime);
  border: 2px solid var(--color-lime);
}

.cookie-btn.settings:hover {
  background: var(--color-lime);
  color: var(--color-dark);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1rem;
}

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

.cookie-modal-content {
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-option p {
  margin: 0.5rem 0 0 2rem;
  color: #555;
  font-size: 0.9rem;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.page-hero {
  background: var(--gradient-primary);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-charcoal);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.content-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.principle-card {
  text-align: center;
  height: 100%;
}

.principle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.lime-glow {
  background: var(--color-lime);
  box-shadow: 0 0 20px rgba(192, 255, 0, 0.5);
}

.fuchsia-glow {
  background: var(--color-fuchsia);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.amber-glow {
  background: var(--color-amber);
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.5);
}

.teal-glow {
  background: var(--color-teal);
  box-shadow: 0 0 20px rgba(95, 179, 179, 0.5);
}

.principle-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.principle-card p {
  color: #555;
  line-height: 1.6;
}

.role-content {
  color: var(--color-light);
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.role-content h4 {
  color: var(--color-lime);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.role-content .wellness-list li {
  color: #ccc;
}

.approach-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.approach-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.approach-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.approach-icon {
  font-size: 3rem;
  color: var(--color-lime);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  opacity: 0.2;
}

.expert-card {
  height: 100%;
}

.quote-mark {
  font-size: 4rem;
  color: var(--color-lime);
  opacity: 0.3;
  line-height: 1;
}

.expert-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.expert-meta strong {
  display: block;
  color: var(--color-lime);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.expert-meta span {
  color: #aaa;
  font-size: 0.9rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
  height: 100%;
}

.contact-info-card {
  padding: 2rem;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail strong {
  display: block;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.info-box {
  padding: 2rem;
  border-left: 4px solid var(--color-lime);
}

.info-box h3 {
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.info-box p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--color-dark);
  box-shadow: 0 10px 40px rgba(192, 255, 0, 0.4);
}

.thank-you-title {
  font-size: 2.5rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.thank-you-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-hero {
  background: var(--gradient-primary);
  padding: 5rem 0 3rem;
  text-align: center;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 1rem;
  color: var(--color-charcoal);
}

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

.legal-document {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
  font-size: 1.8rem;
  color: var(--color-charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-lime);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  font-size: 1.4rem;
  color: var(--color-charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-document p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-document ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-document li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-document a {
  color: var(--color-lime);
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.legal-document a:hover {
  color: var(--color-amber);
}

.contact-box {
  background: rgba(192, 255, 0, 0.1);
  border: 2px solid var(--color-lime);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-box p {
  margin: 0;
  line-height: 1.8;
}

.disclaimer-warning {
  background: rgba(255, 191, 0, 0.1);
  border: 2px solid var(--color-amber);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-warning h3 {
  color: var(--color-amber);
  margin-top: 0;
}

.disclaimer-warning p {
  margin-bottom: 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-table th {
  background: rgba(192, 255, 0, 0.2);
  color: var(--color-charcoal);
  font-weight: 600;
}

.cookie-table td {
  color: #555;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-text-panel {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .cta-button-outline {
    margin-left: 0;
    margin-top: 1rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .glass-panel,
  .legal-document {
    padding: 2rem 1.5rem;
  }

  .thank-you-card {
    padding: 3rem 2rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .cta-button,
  .cta-button-outline {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
}
