:root {
  --primary-color: #2c5aa0;
  --primary-hover: #234a87;
  --secondary-color: #5c9ead;
  --accent-color: #e8f4f8;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  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;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar {
  padding: 1rem 0;
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.benefit-card,
.tip-card,
.value-card,
.who-card,
.help-card,
.next-step-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover,
.tip-card:hover,
.value-card:hover,
.who-card:hover,
.help-card:hover,
.next-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.benefit-card h3,
.tip-card h4,
.value-card h4,
.who-card h4,
.help-card h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p,
.tip-card p,
.value-card p,
.who-card p,
.help-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

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

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

.category-content,
.product-info {
  padding: 25px;
}

.category-content h3,
.product-info h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.category-content p,
.product-info p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  font-style: normal;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-dark);
  margin-bottom: 0;
}

.footer {
  background-color: #1a1a1a;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer p {
  color: #adb5bd;
  margin-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: var(--white);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.98);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.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 {
  color: var(--white);
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  margin-bottom: 0;
}

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

.contact-info-box h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto;
}

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

.policy-section {
  margin-bottom: 40px;
}

.policy-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.policy-section h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 600;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

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

.policy-section p {
  margin-bottom: 15px;
}

.disclaimer-intro .alert {
  border-left: 4px solid var(--primary-color);
}

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

.education-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

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

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

.contact-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-section {
    padding: 50px 0;
  }

  .page-hero h2 {
    font-size: 32px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

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