* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6f42c1;
  --primary-dark: #5a32a3;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f7ff;
  --border: #e0e0e0;
  --white: #ffffff;
}

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  transition: all 0.3s;
}

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

.hero-section {
  background: linear-gradient(135deg, #f5f0ff 0%, #faf8ff 100%);
  overflow: hidden;
}

.hero-section img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card {
  transition: all 0.3s;
  border-radius: 8px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(111, 66, 193, 0.15);
}

.benefit-icon {
  font-size: 48px;
}

.product-card {
  transition: all 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

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

.product-card img {
  transition: transform 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.testimonial-card {
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.15);
}

.stars {
  font-size: 18px;
  color: #ffc107;
  letter-spacing: 2px;
}

.page-header {
  background: linear-gradient(135deg, #f5f0ff 0%, #faf8ff 100%);
  border-bottom: 1px solid var(--border);
}

.advice-box {
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.advice-box:hover {
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.1);
  transform: translateX(4px);
}

.contact-info {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.contact-hours {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.faq-box {
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.faq-box:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.1);
}

.thank-you-content {
  text-align: center;
  padding: 40px 20px;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  margin-bottom: 20px;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h3 {
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.legal-content ul {
  margin-left: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}

footer {
  background-color: #1a1a1a;
  color: var(--white);
}

footer a {
  color: #999;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary);
}

footer h5 {
  color: var(--white);
}

.text-secondary {
  color: var(--text-light) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border) !important;
}

.border-secondary {
  border-color: var(--border) !important;
}

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

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  color: var(--white);
  padding: 20px;
  border-top: 1px solid var(--primary);
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

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

.btn-accept,
.btn-reject {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  white-space: nowrap;
}

.btn-accept {
  background: var(--primary);
  color: var(--white);
}

.btn-accept:hover {
  background: var(--primary-dark);
}

.btn-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-reject:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 768px) {
  .navbar-nav {
    margin-top: 10px;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 8px 0;
  }

  .hero-section .row {
    flex-direction: column-reverse;
  }

  .display-4 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-content p {
    text-align: center;
  }

  .btn-accept,
  .btn-reject {
    width: 100%;
  }

  .product-card {
    margin-bottom: 15px;
  }

  .contact-info,
  .contact-hours {
    margin-bottom: 20px;
  }

  .text-md-right {
    text-align: left !important;
  }

  .thank-you-icon {
    width: 60px;
    height: 60px;
  }

  .thank-you-icon span {
    font-size: 36px;
  }

  .benefit-card,
  .testimonial-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .display-4 {
    font-size: 28px;
  }

  .row > [class*="col-"] {
    margin-bottom: 15px;
  }

  footer h5 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .footer-section {
    margin-bottom: 25px;
  }

  .btn-lg {
    padding: 10px 16px;
    font-size: 14px;
  }

  .alert {
    padding: 12px 15px;
    font-size: 14px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.display-4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  transition: all 0.3s;
  color: var(--text-dark);
  font-size: 16px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
  outline: none;
}

.form-check-input {
  border: 1px solid var(--border);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.text-muted {
  color: var(--text-light) !important;
}

.card {
  border-radius: 8px;
  border: 1px solid var(--border);
}

.card-body {
  padding: 24px;
}
