:root {
  --primary-color: #7a9b7c;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --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;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.navbar-brand:hover {
  color: var(--primary-color);
  opacity: 0.8;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
}

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

main {
  margin-top: 70px;
}

.hero-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.hero-section p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.section {
  padding: 60px 0;
}

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

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.content-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #6a8a6c;
  border-color: #6a8a6c;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.product-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.disclaimer-box {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.disclaimer-box h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: #856404;
}

.disclaimer-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #856404;
}

.form-control {
  border-radius: 4px;
  padding: 12px;
}

footer {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 40px 0 20px;
}

footer h4 {
  font-size: 1.125rem;
  margin-bottom: 15px;
  color: #ffffff;
}

footer p,
footer a {
  font-size: 0.9rem;
  color: #adb5bd;
  margin-bottom: 8px;
}

footer a {
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid #495057;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #adb5bd;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 20px;
  z-index: 1001;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 10px;
  color: #ffffff;
}

.cookie-banner button {
  background-color: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background-color: #6a8a6c;
}

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

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

  .section h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 40px 0;
  }

  .content-image,
  .hero-image {
    max-width: 100%;
  }
}
