:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #f3f4f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
}

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

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

.navbar {
  border-bottom: 1px solid var(--border-color);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.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);
  transition: all 0.3s ease;
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(109, 40, 217, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
}

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

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

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

.product-detail-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.product-detail-body {
  padding: 2rem;
}

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

.product-detail-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

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

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

.info-box,
.ingredient-box,
.approach-card,
.routine-box,
.definition-box,
.quick-faq {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-box h3,
.info-box h4,
.ingredient-box h4,
.approach-card h4,
.routine-box h4,
.quick-faq h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.definition-are {
  border-left: 4px solid var(--success-color);
}

.definition-not {
  border-left: 4px solid var(--danger-color);
}

.info-notice {
  background: #fef3c7;
  border-left: 4px solid var(--warning-color);
  padding: 1.5rem;
  border-radius: 8px;
}

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

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

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

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

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

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

.cta-text {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.footer h5 {
  color: white;
  font-weight: 600;
  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: white;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-legal a:hover {
  color: white;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: white;
  opacity: 0.95;
}

.intro-text {
  font-size: 1.125rem;
  color: var(--text-dark);
}

.disclaimer-text {
  font-size: 1rem;
  color: var(--danger-color);
  background: #fee2e2;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--danger-color);
}

.contact-info-box,
.business-hours {
  background: var(--secondary-color);
  border-radius: 8px;
  padding: 1.5rem;
}

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

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

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

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

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.thank-you-list {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.thank-you-contact,
.thank-you-info {
  background: var(--secondary-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.legal-content {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.legal-content h4 {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

.cookie-banner.hidden {
  display: none;
}

.category-list,
.approach-list,
.suitable-list,
.values-list {
  list-style: none;
  padding-left: 0;
}

.category-list li,
.approach-list li,
.suitable-list li,
.values-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.category-list li:before,
.approach-list li:before,
.suitable-list li:before,
.values-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

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

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

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

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

  .thank-you-title {
    font-size: 1.75rem;
  }

  .hero-section {
    height: 400px;
  }
}
