:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --success: #10b981;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

* {
  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: var(--text-dark);
  background-color: var(--white);
}

.site-header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
}

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero-section img {
  box-shadow: var(--shadow);
}

.content-section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.exercise-list,
.technique-list {
  margin-top: 2rem;
}

.exercise-item,
.technique-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.exercise-item:last-child,
.technique-item:last-child {
  border-bottom: none;
}

.exercise-item h4,
.technique-item h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.advice-list {
  list-style: none;
  padding: 0;
}

.advice-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.lifestyle-section {
  padding: 4rem 0;
}

.lifestyle-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.lifestyle-section img {
  box-shadow: var(--shadow);
}

.benefits-section {
  padding: 4rem 0;
}

.benefit-card {
  padding: 2rem;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.products-preview {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonials-section {
  padding: 4rem 0;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

.ingredients-section {
  padding: 4rem 0;
}

.ingredients-list {
  list-style: none;
  padding: 0;
}

.ingredients-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.ingredients-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.order-section {
  padding: 4rem 0;
}

.order-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-form .form-control {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.order-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.order-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.site-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: #d1d5db;
  line-height: 1.8;
}

.site-footer a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--white);
}

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

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

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.about-content {
  padding: 4rem 0;
}

.value-card {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.value-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.quality-list {
  list-style: none;
  padding: 0;
}

.quality-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.quality-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.cta-section {
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.products-catalog {
  padding: 4rem 0;
}

.product-detail-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-detail-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.product-detail-card h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ingredient-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.ingredient-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
}

.ingredient-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.usage-info {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.product-info-section {
  padding: 4rem 0;
}

.contact-section {
  padding: 4rem 0;
}

.contact-info-box {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info-box h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-form-wrapper h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.faq-section {
  padding: 4rem 0;
}

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

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.thank-you-section {
  padding: 5rem 0;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  color: var(--white);
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.next-steps {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: left;
}

.next-steps h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps-list {
  list-style: none;
  padding: 0;
}

.steps-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.cta-buttons {
  margin: 3rem 0;
}

.contact-reminder {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.additional-resources {
  padding: 4rem 0;
}

.resource-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.resource-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-content {
  padding: 4rem 0;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

.legal-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-medium);
}

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

.legal-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0;
  }

  .content-section {
    padding: 2rem 0;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
