:root {
  --primary: #7c3aed;
  --secondary: #8b5cf6;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background-color: #fff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  margin-left: 1rem;
}

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

.hero-section {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

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

.hero-content {
  color: white;
  text-align: left;
  position: relative;
  z-index: 2;
}

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

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

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

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

.btn-secondary {
  background-color: #6b7280;
  border-color: #6b7280;
  color: white;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #4b5563;
  border-color: #4b5563;
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
}

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

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #eff6ff 100%);
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.benefit-card h4 {
  color: var(--primary);
  margin-top: 0;
}

.benefits-section {
  background-color: var(--light);
}

.category-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.category-card:hover {
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
}

.category-card h3 {
  color: var(--primary);
  margin-top: 1rem;
}

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

.tip-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-box:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.tip-box h5 {
  color: var(--primary);
  margin-top: 0;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1rem;
}

.testimonial-card p strong {
  color: var(--primary);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 4rem 0;
  text-align: left;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  background: var(--light);
  padding: 2rem;
  border-radius: 0.75rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.accordion .card-header {
  background-color: transparent;
  border: none;
}

.accordion .card {
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.accordion .btn-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--dark);
}

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

.accordion .btn-link.collapsed {
  color: var(--dark);
}

.accordion .collapse.show ~ .btn-link {
  color: var(--primary);
}

.card-header .btn-link {
  color: var(--dark);
}

.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 0.75rem;
  margin: 3rem 0;
}

.cta-final h2 {
  color: white;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.95);
}

.who-benefits {
  background-color: var(--light);
}

.daily-tips {
  background-color: white;
}

footer {
  background-color: var(--dark);
  color: white;
  border-top: 1px solid var(--border);
}

footer h5 {
  color: white;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

.consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.consent-content p {
  margin-bottom: 1rem;
}

.consent-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

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

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .page-header {
    padding: 2rem 0;
  }

  .consent-buttons {
    flex-direction: column;
  }

  .consent-buttons button,
  .consent-buttons a {
    width: 100%;
  }
}
