:root {
  --primary-purple: #7b68bc;
  --primary-purple-dark: #5e4d9b;
  --primary-purple-light: #9b88d8;
  --text-dark: #1a1a2e;
  --text-medium: #3f3f5c;
  --text-light: #6b6b7f;
  --bg-white: #ffffff;
  --bg-light: #f8f7fc;
  --bg-gradient-start: #7b68bc;
  --bg-gradient-end: #9b88d8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.header-main {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-white);
}

.logo-text {
  color: var(--bg-white);
}

.navbar-brand:hover .logo-text {
  color: var(--bg-white);
  opacity: 0.9;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bg-white);
  opacity: 0.8;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(123, 104, 188, 0.85) 0%, rgba(155, 136, 216, 0.85) 100%);
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--bg-white);
  font-size: 1.25rem;
}

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

.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

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

.content-section h2 {
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card,
.info-card,
.component-card,
.habit-card,
.adaptation-card,
.choice-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.info-card:hover,
.component-card:hover,
.habit-card:hover,
.adaptation-card:hover,
.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(123, 104, 188, 0.15);
}

.feature-image,
.info-image,
.component-image,
.habit-image,
.adaptation-image,
.choice-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.approach-card,
.offer-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  height: 100%;
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 1rem;
  margin-bottom: 0;
}

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

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

.faq-item h3 {
  color: var(--primary-purple);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

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

.cta-section p {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

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

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

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

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

.product-card {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(123, 104, 188, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-purple);
}

.product-description {
  padding: 0 1.5rem;
  color: var(--text-medium);
}

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

.ingredients-block h4 {
  font-size: 1rem;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.ingredients-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ingredients-block li {
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.95rem;
}

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

.product-note {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

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

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

.contact-section h2 {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid #e0e0e8;
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(123, 104, 188, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

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

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

.contact-note {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-note h3 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

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

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

.thank-you-actions .btn {
  margin: 0.5rem;
}

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

.policy-section h2 {
  color: var(--primary-purple);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-section h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  margin-bottom: 1.5rem;
}

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

.disclaimer-notice {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-notice h2 {
  color: var(--bg-white);
}

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

.footer-main {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-main h4 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-main p {
  color: var(--bg-white);
  opacity: 0.9;
}

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

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

.footer-links a {
  color: var(--bg-white);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

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

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

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

.footer-legal a {
  color: var(--bg-white);
  opacity: 0.9;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  opacity: 1;
}

.copyright,
.disclaimer-text {
  color: var(--bg-white);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

.cookie-content a {
  color: var(--primary-purple-light);
}

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

.cookie-buttons .btn {
  white-space: nowrap;
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--text-dark);
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

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

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

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