:root {
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --primary-light: #0086ff;
  --neutral-dark: #1a1a1a;
  --neutral-gray: #333333;
  --neutral-light-gray: #f8f9fa;
  --neutral-white: #ffffff;
  --border-radius: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-gray);
  background-color: var(--neutral-white);
}

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

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

.navbar-brand {
  font-size: 1.5rem;
}

.logo-text {
  letter-spacing: 1px;
}

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

.text-muted {
  color: #6c757d;
}

.text-dark {
  color: var(--neutral-dark) !important;
}

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

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

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

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

.hero-section {
  padding: 80px 20px 60px 20px;
  background: linear-gradient(135deg, var(--neutral-white) 0%, var(--neutral-light-gray) 100%);
}

.hero-section h1 {
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.benefits-section {
  padding: 60px 20px;
}

.benefit-card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1) !important;
}

.education-section {
  padding: 60px 20px;
}

.education-card {
  padding: 25px;
  background-color: var(--neutral-light-gray);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.testimonials-section {
  padding: 60px 20px;
}

.testimonial-card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

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

.cta-section {
  padding: 60px 20px;
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section .lead {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

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

footer h5 {
  color: var(--neutral-white);
  margin-bottom: 15px;
}

footer .text-muted {
  color: #adb5bd;
}

footer a {
  color: #adb5bd;
  transition: color 0.3s ease;
}

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

.page-header {
  padding: 60px 20px;
  background-color: var(--neutral-light-gray);
}

.page-header h1 {
  font-weight: 700;
  color: var(--neutral-dark);
}

.page-header .lead {
  color: #6c757d;
}

.product-card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-info {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-info:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1) !important;
}

.contact-form {
  background-color: var(--neutral-light-gray);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid #e0e0e0;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 10px 15px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.support-hours {
  border: 1px solid #e0e0e0;
}

.faq-item {
  margin-bottom: 20px;
}

.about-content {
  padding: 60px 20px;
}

.about-content h2 {
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.value-card {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1) !important;
}

.team-section {
  padding: 60px 20px;
}

.team-member {
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  border: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.team-member:hover img {
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.commitment-section {
  padding: 60px 20px;
}

.commitment-section h3 {
  font-weight: 700;
  color: var(--neutral-dark);
}

.policy-content {
  padding: 60px 20px;
}

.policy-content h2 {
  font-weight: 700;
  color: var(--neutral-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content p {
  line-height: 1.8;
  color: #6c757d;
}

.policy-content ul {
  line-height: 1.8;
  padding-left: 25px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.disclaimer-content {
  padding: 60px 20px;
}

.disclaimer-content h2 {
  font-weight: 700;
  color: var(--neutral-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.alert {
  border: 1px solid #d4edda;
  background-color: #f1f9f6;
  color: var(--neutral-dark);
  border-radius: var(--border-radius);
}

.alert-info {
  border-color: #b1d6f5;
  background-color: #e7f4ff;
  color: var(--neutral-dark);
}

.thank-you-section {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-section h1 {
  font-weight: 700;
  color: var(--neutral-dark);
}

.thank-you-section .lead {
  font-size: 1.2rem;
  color: #6c757d;
}

.education-box {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.education-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1) !important;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .hero-section {
    padding: 60px 15px 40px 15px;
  }

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

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

  .contact-form {
    padding: 25px 15px;
  }

  .about-content img {
    margin-top: 20px;
  }

  .navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .page-header {
    padding: 40px 15px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .benefits-section,
  .education-section,
  .testimonials-section,
  .cta-section,
  .team-section,
  .commitment-section,
  .policy-content,
  .disclaimer-content {
    padding: 40px 15px;
  }

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

  .thank-you-section {
    padding: 60px 15px;
  }
}

@media (max-width: 576px) {
  html,
  body {
    font-size: 15px;
  }

  .hero-section {
    padding: 50px 12px 30px 12px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  footer .row {
    text-align: center;
  }

  footer h5 {
    margin-top: 20px;
  }

  .cookie-banner {
    padding: 15px;
  }

  .cookie-content {
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
