:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #f3f4f6;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --success: #10b981;
  --info: #3b82f6;
}

* {
  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;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

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

.hero-section {
  margin-top: 76px;
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

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

.page-header {
  margin-top: 76px;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
}

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

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

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

.card {
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-category-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: var(--white);
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

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

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

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

.audience-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.audience-icon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.info-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.advantage-item h5 {
  color: var(--primary-color);
  font-weight: 600;
}

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

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.accordion .card-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
}

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

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

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

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

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

.product-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.badge-primary {
  background-color: var(--primary-color);
}

.badge-success {
  background-color: var(--success);
}

.badge-info {
  background-color: var(--info);
}

.approach-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.approach-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
}

.commitment-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.commitment-card h4 {
  color: var(--primary-color);
}

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

.not-item h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-info-box,
.business-hours-box,
.faq-prompt {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.help-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.help-item h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.legal-page {
  padding-top: 100px;
  padding-bottom: 3rem;
  min-height: calc(100vh - 200px);
}

.legal-page h1 {
  color: var(--primary-color);
  font-weight: 700;
}

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

.legal-page h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1.5rem;
}

.contact-box {
  background: var(--secondary-color);
  border-radius: 8px;
}

.footer {
  margin-top: 0;
}

.footer-links {
  padding-left: 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(--white);
}

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

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

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

.cookie-banner .btn-light {
  background: var(--white);
  color: var(--primary-color);
  border: none;
}

.cookie-banner .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

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

.routine-tips {
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }

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

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

  .product-category-card {
    margin-bottom: 2rem;
  }

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

@media (max-width: 576px) {
  .hero-image {
    height: 300px;
  }

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