:root {
  --color-coral: #ff6b6b;
  --color-navy: #1a237e;
  --color-pink: #ff1493;
  --color-blue: #00d4ff;
  --color-gold: #ffd700;
  --color-dark: #0a0e27;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-navy) 100%);
  overflow-x: hidden;
}

.navbar {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-pink);
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-pink);
  transition: width 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(26, 35, 126, 0.9));
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(0, 212, 255, 0.05) 30%,
      rgba(0, 212, 255, 0.05) 70%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(255, 20, 147, 0.05) 30%,
      rgba(255, 20, 147, 0.05) 70%,
      transparent 70%
    );
  background-size: 100px 100px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, -100px 100px;
  }
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.btn-gradient {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gradient::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;
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
  color: #fff;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.section-dark {
  background: var(--color-dark);
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background: var(--color-light);
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: inherit;
}

.section-dark .section-title {
  color: #fff;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 3rem;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.floating-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 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(255, 20, 147, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
  border-color: var(--color-pink);
}

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

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

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.wave-section {
  position: relative;
}

.wave-pattern {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, transparent 25%, var(--color-dark) 25%, var(--color-dark) 75%, transparent 75%);
  background-size: 100px 100px;
}

.wave-pattern-reverse {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, transparent 25%, var(--color-light) 25%, var(--color-light) 75%, transparent 75%);
  background-size: 100px 100px;
}

.nutrient-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nutrient-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
}

.nutrient-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.nutrient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nutrient-card:hover .nutrient-image img {
  transform: scale(1.1);
}

.nutrient-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  padding: 1rem 1rem 0.5rem;
}

.nutrient-desc {
  color: var(--color-gray);
  padding: 0 1rem 1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.calculator-card {
  max-width: 600px;
  margin: 0 auto;
}

.calculator-card .form-group {
  margin-bottom: 2rem;
}

.calculator-card label {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.custom-range {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.custom-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.range-value {
  display: inline-block;
  color: var(--color-pink);
  font-weight: 600;
  margin-left: 1rem;
}

.wellness-result {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 20, 147, 0.1);
  border-radius: 10px;
  color: #fff;
  display: none;
}

.wellness-result.show {
  display: block;
}

.tip-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  transition: width 0.3s ease;
}

.tip-focus::before {
  background: var(--color-blue);
}

.tip-vitality::before {
  background: var(--color-pink);
}

.tip-recovery::before {
  background: var(--color-gold);
}

.tip-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.tip-card:hover {
  transform: translateX(10px);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.15);
}

.tip-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.tip-focus .tip-badge {
  background: var(--color-blue);
}

.tip-vitality .tip-badge {
  background: var(--color-pink);
}

.tip-recovery .tip-badge {
  background: var(--color-gold);
}

.tip-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.tip-card p {
  color: var(--color-gray);
}

.guide-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--color-pink);
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateX(10px);
  border-left-color: var(--color-blue);
}

.guide-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.guide-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guide-card p {
  color: rgba(255, 255, 255, 0.8);
}

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

.habit-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.habit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.habit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.habit-item p {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-card {
  height: 100%;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.testimonial-author strong {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.overlay-card {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 212, 255, 0.1));
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.overlay-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.1), transparent);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
}

.expert-content {
  position: relative;
  z-index: 1;
}

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

.expert-quote {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.expert-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.expert-title {
  color: rgba(255, 255, 255, 0.7);
}

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

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem;
}

.faq-header h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-pink);
  transition: transform 0.3s ease;
}

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

.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

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

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.1), transparent),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1), transparent);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

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

.footer {
  background: var(--color-dark);
  padding: 3rem 0 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-text {
  line-height: 1.6;
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.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-pink);
  padding-left: 5px;
}

.footer-contact {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

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

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

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

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

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

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

.btn-accept {
  background: linear-gradient(135deg, var(--color-pink), var(--color-blue));
  color: #fff;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-about,
.hero-contact {
  min-height: 60vh;
}

.legal-section {
  background: var(--color-light);
  padding: 8rem 0 5rem;
  min-height: 100vh;
}

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

.legal-updated {
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-content {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: var(--color-navy);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--color-navy);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-content a {
  color: var(--color-pink);
  font-weight: 600;
}

.disclaimer-warning {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 212, 255, 0.1));
  border-left: 4px solid var(--color-pink);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.section-light .about-text {
  color: #333;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.principle-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-pink);
}

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

.principle-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.principle-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--color-gray);
  margin: 0;
}

.office-hours {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 212, 255, 0.1));
  border-radius: 10px;
  padding: 1.5rem;
}

.office-hours h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.office-hours p {
  color: var(--color-gray);
  margin: 0;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 0.2rem rgba(255, 20, 147, 0.1);
}

.custom-control-label {
  color: #333;
}

.custom-control-label a {
  color: var(--color-pink);
  font-weight: 600;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-coral), var(--color-navy));
  padding: 8rem 0;
}

.thank-you-card {
  padding: 4rem;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-pink);
  width: 100px;
  height: 100px;
  background: rgba(255, 20, 147, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.thank-you-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.neon-title {
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
}

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

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

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

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

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

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

  .btn-gradient {
    padding: 0.75rem 1.5rem;
  }

  .habits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-content {
    padding: 1.5rem;
  }
}
