:root {
  --primary-purple: #6b4e9b;
  --primary-purple-dark: #533a7b;
  --primary-purple-light: #8b6ebb;
  --accent-purple: #9b7bc7;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --background-light: #f8f7fa;
  --white: #ffffff;
  --border-color: #e0dce8;
}

* {
  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;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-purple);
}

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 78, 155, 0.3);
}

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

.hero-image {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--accent-purple) 100%);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 78, 155, 0.15);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.info-card,
.feature-box,
.integration-box,
.practical-card,
.choice-card,
.approach-card,
.value-box {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover,
.feature-box:hover,
.integration-box:hover,
.practical-card:hover,
.choice-card:hover {
  transform: translateY(-3px);
}

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

.page-header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
  color: var(--white);
}

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 78, 155, 0.15);
}

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

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

.product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.ingredients-block {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid var(--primary-purple);
}

.ingredients-block h6 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.info-disclaimer,
.disclaimer-box,
.disclaimer-section {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-purple);
}

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

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.user-name {
  color: var(--primary-purple);
  font-weight: 600;
  font-style: normal;
}

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

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

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

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

.cta-section h2 {
  font-weight: 700;
}

.contact-info-box {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-purple);
}

.contact-note {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--border-color);
  padding: 0.75rem;
}

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

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

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

.check-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto;
}

.contact-details {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
}

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

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

.policy-content h4 {
  color: var(--primary-purple-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin: 0 auto;
}

.value-box {
  text-align: center;
}

.description-structure {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
}

.main-footer {
  background: var(--text-dark);
  color: var(--white);
}

.main-footer h5 {
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

  .hero-image {
    height: 400px;
  }

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