:root {
  --primary-purple: #7c5cdb;
  --primary-purple-light: #9b7fe6;
  --primary-purple-dark: #5d41b8;
  --neutral-white: #ffffff;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --neutral-black: #1a1a1a;
  --accent-teal: #4db8c4;
  --accent-lavender: #c4b8e8;
}

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

.site-header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-white);
  transition: opacity 0.3s ease;
}

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

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

.navbar-light .navbar-nav .nav-link {
  color: var(--neutral-white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--neutral-white);
}

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

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

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 92, 219, 0.85) 0%, rgba(93, 65, 184, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--neutral-white);
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
}

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

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

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

.feature-card,
.info-card,
.ingredient-card,
.recommendation-card,
.routine-card,
.selection-card {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.info-card:hover,
.ingredient-card:hover,
.recommendation-card:hover,
.routine-card:hover,
.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 92, 219, 0.2);
}

.feature-card h4,
.info-card h4,
.ingredient-card h5,
.recommendation-card h5,
.routine-card h5,
.selection-card h5 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-box {
  background: linear-gradient(135deg, rgba(124, 92, 219, 0.1) 0%, rgba(196, 184, 232, 0.15) 100%);
  border-left: 4px solid var(--primary-purple);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h5 {
  color: var(--primary-purple-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-notice {
  background-color: var(--accent-lavender);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-purple);
}

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

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

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

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

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
  margin-bottom: 0;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  padding: 5rem 0;
  color: var(--neutral-white);
}

.cta-section h2 {
  color: var(--neutral-white);
  font-weight: 700;
}

.cta-section .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 92, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 92, 219, 0.4);
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
}

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

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

.site-footer {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--neutral-black) 100%);
  color: var(--neutral-white);
  padding: 4rem 0 2rem;
}

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

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

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

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

.footer-links a:hover {
  color: var(--primary-purple-light);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-purple-light);
}

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

.product-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(124, 92, 219, 0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.product-content {
  padding: 2rem;
  flex-grow: 1;
}

.product-title {
  color: var(--primary-purple-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-ingredients {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.product-ingredients h5 {
  color: var(--primary-purple);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-ingredients ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.product-ingredients li {
  margin-bottom: 0.5rem;
}

.format-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(124, 92, 219, 0.2);
  color: var(--neutral-gray);
  font-size: 0.95rem;
}

.product-disclaimer {
  margin-top: 3rem;
}

.value-card,
.info-box {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.info-box h5 {
  color: var(--primary-purple-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-box:not(:last-child) {
  margin-bottom: 1.5rem;
}

.contact-form {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(124, 92, 219, 0.1);
}

.contact-info-card {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-purple);
}

.contact-info-card h5 {
  color: var(--primary-purple-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.contact-info-card a:hover {
  color: var(--primary-purple-dark);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

.check-icon {
  color: var(--primary-purple);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--primary-purple-dark);
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

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

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--neutral-black) 100%);
  color: var(--neutral-white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
  line-height: 1.6;
}

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

.cookie-banner .btn-light {
  background-color: var(--neutral-white);
  color: var(--neutral-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-banner .btn-light:hover {
  background-color: var(--neutral-light);
  transform: translateY(-2px);
}

.cookie-banner .btn-outline-light {
  border: 2px solid var(--neutral-white);
  color: var(--neutral-white);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-banner .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.rounded {
  border-radius: 12px;
}

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

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

  .hero-section {
    height: 400px;
  }

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

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

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

  .footer-link {
    margin-left: 0;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .btn-light,
  .cookie-banner .btn-outline-light {
    margin-top: 1rem;
    width: 100%;
  }

  .thank-you-card {
    padding: 2rem;
  }
}

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

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

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