* {
  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: #333;
  background-color: #fff;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #7c3aed;
  letter-spacing: -0.5px;
}

.header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #7c3aed;
}

.hero {
  position: relative;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
}

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

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

.btn-primary {
  background-color: #7c3aed;
  border-color: #7c3aed;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-primary {
  color: #7c3aed;
  border-color: #7c3aed;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.bg-primary {
  background-color: #7c3aed !important;
}

.benefit-card,
.tip-card,
.advice-card,
.approach-card {
  padding: 2rem;
  height: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #fff;
  border: 1px solid #e5e7eb;
}

.benefit-card:hover,
.tip-card:hover,
.advice-card:hover,
.approach-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 48px;
  color: #7c3aed;
  font-weight: 700;
}

.category-card,
.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #fff;
}

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

.category-card img,
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.category-content,
.product-content {
  padding: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #7c3aed;
}

.testimonial-author strong {
  color: #333;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #888;
  font-size: 0.9rem;
}

.faq-item {
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #7c3aed;
}

.faq-item h5 {
  color: #7c3aed;
  margin-bottom: 0.75rem;
}

.footer {
  background-color: #1f2937;
  color: #d1d5db;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7c3aed;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2937;
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner a {
  color: #7c3aed;
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
}

.cookie-banner .btn-light:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
}

.cookie-banner .btn-outline-light {
  color: #fff;
  border-color: #fff;
}

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

.page-hero {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: #fff;
}

.value-item,
.benefit-info {
  margin-bottom: 1rem;
}

.commitment-box {
  background-color: #f9fafb;
  border-left: 4px solid #7c3aed;
}

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

.commitment-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.commitment-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-info-card {
  background-color: #f9fafb;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thank-you-box {
  background-color: #f9fafb;
  border: 2px solid #7c3aed;
}

.success-icon {
  display: inline-block;
}

.legal-content h2 {
  color: #7c3aed;
  font-weight: 600;
}

.legal-content h4,
.legal-content h5 {
  color: #333;
  font-weight: 600;
}

.legal-content ul {
  margin-left: 1.5rem;
}

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

.legal-content a {
  color: #7c3aed;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #6d28d9;
}

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

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

  .hero-image img {
    height: 400px;
  }
}
