:root {
  --primary-color: #7c4dff;
  --primary-dark: #5e35d1;
  --primary-light: #b085ff;
  --text-dark: #1a1a2e;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
  --gradient-start: #7c4dff;
  --gradient-end: #b085ff;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.btn-primary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
}

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

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

.content-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.info-card,
.category-card,
.ingredient-card,
.integration-card,
.selection-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card:hover,
.category-card:hover,
.ingredient-card:hover,
.integration-card:hover,
.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.15);
}

.info-card h4,
.category-card h4,
.ingredient-card h4,
.integration-card h4,
.selection-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-card img,
.category-card img,
.ingredient-card img,
.integration-card img,
.selection-card img {
  border-radius: 10px;
}

.disclaimer-box {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.05), rgba(176, 133, 255, 0.05));
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

.testimonials-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
}

.cta-section {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  opacity: 0.95;
}

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

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

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

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

.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-legal li {
  margin: 0 1rem 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

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

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

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

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

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

.product-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.15);
}

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

.product-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.ingredients-block {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.ingredients-block h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.ingredients-block ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.ingredients-block li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.product-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: auto;
}

.product-info-section {
  background: var(--bg-light);
  padding: 3rem 0;
}

.info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.15);
}

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

.values-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

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

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
}

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

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

.contact-note {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.05), rgba(176, 133, 255, 0.05));
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.thank-you-section {
  padding: 8rem 0;
  background: var(--bg-light);
}

.thank-you-card {
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-card h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin-top: 3rem;
}

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

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

.legal-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.disclaimer-alert {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(176, 133, 255, 0.1));
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.disclaimer-alert h2 {
  color: var(--primary-color);
  margin-top: 0;
}

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

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

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

  .content-section h2 {
    font-size: 1.75rem;
  }

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

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal li {
    margin: 0.25rem 0;
  }
}
