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

:root {
  --color-coral: #ff7e6b;
  --color-indigo: #3e3b6a;
  --color-lavender: #b8a5c9;
  --color-neon-magenta: #ff2e97;
  --color-lime: #bfff0b;
  --color-gold: #ffd700;
  --color-dark: #1a1a2e;
  --color-darker: #0f0f1e;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-light);
  background: var(--color-darker);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 46, 151, 0.2);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-coral), var(--color-neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--color-light);
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--color-neon-magenta);
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon-magenta), var(--color-lime));
  transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-indigo) 50%, var(--color-darker) 100%);
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 126, 107, 0.15), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(184, 165, 201, 0.15), transparent 50%);
  pointer-events: none;
}

.organic-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--color-coral);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-neon-magenta);
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--color-lime);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

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

.floating-panel {
  background: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(255, 46, 151, 0.2);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.floating-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(255, 46, 151, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender), var(--color-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-neon-magenta), var(--color-coral));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 46, 151, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 46, 151, 0.5);
  color: white;
  text-decoration: none;
}

.cta-button:hover::before {
  left: 100%;
}

.content-section {
  padding: 6rem 0;
  position: relative;
}

.bg-dark-panel {
  background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-indigo) 50%, var(--color-darker) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-coral), var(--color-neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.feature-card {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 46, 151, 0.2);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 46, 151, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: var(--color-neon-magenta);
  box-shadow: 0 20px 40px rgba(255, 46, 151, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.nutrient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.nutrient-item {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(191, 255, 11, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.nutrient-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-lime);
  box-shadow: 0 15px 35px rgba(191, 255, 11, 0.2);
}

.nutrient-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nutrient-content {
  padding: 1.5rem;
}

.nutrient-content h4 {
  color: var(--color-lime);
  margin-bottom: 0.75rem;
}

.nutrient-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.habit-tracker {
  background: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.habit-item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.habit-item:hover {
  background: rgba(255, 46, 151, 0.1);
  transform: translateX(10px);
}

.habit-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-neon-magenta);
  border-radius: 6px;
  margin-right: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.habit-item:hover .habit-checkbox {
  background: var(--color-neon-magenta);
  box-shadow: 0 0 15px rgba(255, 46, 151, 0.5);
}

.habit-label {
  color: var(--color-light);
  font-weight: 500;
  flex-grow: 1;
}

.habit-tooltip {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 15, 30, 0.95);
  border: 1px solid var(--color-neon-magenta);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  z-index: 10;
}

.habit-item:hover .habit-tooltip {
  display: block;
}

.wave-section {
  position: relative;
}

.wave-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,46,151,0.05)"/></svg>');
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
}

.floating-card {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.floating-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  border-color: var(--color-lime);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(191, 255, 11, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.floating-card:hover .card-glow {
  opacity: 1;
}

.floating-card h4 {
  color: var(--color-lime);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.floating-card p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.meal-timeline {
  position: relative;
  padding-left: 2rem;
}

.meal-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-coral), var(--color-neon-magenta), var(--color-lime));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2.75rem;
  top: 0;
  background: var(--color-neon-magenta);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 46, 151, 0.3);
}

.timeline-content {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.timeline-content h4 {
  color: var(--color-coral);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.7);
}

.exercise-card {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 126, 107, 0.2);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.exercise-card:hover {
  border-color: var(--color-coral);
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 126, 107, 0.2);
}

.exercise-card h4 {
  color: var(--color-coral);
  margin-bottom: 1rem;
}

.exercise-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.exercise-benefit {
  color: var(--color-lime);
  font-size: 0.9rem;
  font-style: italic;
}

.routine-list {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.routine-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.routine-item:hover {
  transform: translateX(10px);
}

.routine-number {
  background: linear-gradient(135deg, var(--color-neon-magenta), var(--color-coral));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.routine-text h5 {
  color: var(--color-light);
  margin-bottom: 0.5rem;
}

.routine-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.faq-container {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  color: var(--color-neon-magenta);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-answer {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-lime);
  text-decoration: underline;
}

.testimonial-card {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: rotate(2deg) translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 46, 151, 0.2);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--color-coral);
  font-weight: 600;
  font-size: 0.95rem;
}

.expert-section {
  background: linear-gradient(135deg, var(--color-indigo), var(--color-darker));
}

.expert-quote {
  background: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.quote-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-neon-magenta), var(--color-lime));
}

.quote-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-left: 1.5rem;
}

.quote-author {
  color: var(--color-coral);
  font-weight: 600;
  padding-left: 1.5rem;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-darker), var(--color-indigo), var(--color-darker));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 46, 151, 0.1), transparent 50%);
  animation: rotate 30s linear infinite;
}

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

.cta-panel {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-light);
}

.cta-panel p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.footer {
  background: var(--color-darker);
  border-top: 1px solid rgba(255, 46, 151, 0.2);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  color: var(--color-light);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-neon-magenta);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

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

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--color-lime);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--color-neon-magenta), var(--color-coral));
  color: white;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 46, 151, 0.4);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--color-darker), var(--color-indigo));
  position: relative;
  overflow: hidden;
}

.bio-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 46, 151, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(191, 255, 11, 0.1), transparent 40%);
  pointer-events: none;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-coral), var(--color-neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-content h2,
.about-content h3 {
  color: var(--color-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--color-coral), var(--color-neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content h3 {
  font-size: 1.5rem;
  color: var(--color-lime);
}

.about-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.principle-item {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.principle-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-neon-magenta);
  box-shadow: 0 15px 35px rgba(255, 46, 151, 0.2);
}

.principle-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-neon-magenta), var(--color-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.principle-item h4 {
  color: var(--color-light);
  margin-bottom: 0.75rem;
}

.principle-item p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-panel,
.contact-form-panel {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-info-panel h3,
.contact-form-panel h3 {
  color: var(--color-neon-magenta);
  margin-bottom: 2rem;
}

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

.contact-detail h5 {
  color: var(--color-coral);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.8);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-neon-magenta);
  color: var(--color-light);
  box-shadow: 0 0 0 0.2rem rgba(255, 46, 151, 0.25);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.8);
}

.form-check-label a {
  color: var(--color-lime);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-neon-magenta), var(--color-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin: 0 auto 2rem;
}

.legal-section {
  padding: 8rem 0 4rem;
  background: var(--color-darker);
}

.legal-content {
  background: rgba(15, 15, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--color-coral), var(--color-neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  color: var(--color-neon-magenta);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--color-coral);
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

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

.contact-box {
  background: rgba(255, 46, 151, 0.1);
  border: 1px solid var(--color-neon-magenta);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.disclaimer-warning {
  background: rgba(255, 46, 151, 0.15);
  border: 2px solid var(--color-neon-magenta);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-warning h2 {
  color: var(--color-neon-magenta);
  margin-top: 0;
}

.disclaimer-footer {
  background: rgba(191, 255, 11, 0.1);
  border: 1px solid var(--color-lime);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.cookie-table {
  margin: 1.5rem 0;
}

.cookie-table table {
  background: rgba(15, 15, 30, 0.4);
}

.cookie-table th {
  background: rgba(255, 46, 151, 0.2);
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-table td {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-preferences-section {
  background: rgba(191, 255, 11, 0.1);
  border: 1px solid var(--color-lime);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

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

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

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

  .floating-panel {
    padding: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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

  .navbar-dark .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}

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

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .routine-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
