@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=PT+Serif:wght@400;700&display=swap');

:root {
  --primary-color: #2E7D32;
  --text-dark: #333333;
  --text-light: #666666;
  --border-light: #EEEEEE;
  --bg-light: #F9F9F9;
  --white: #FFFFFF;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.navbar-brand img {
  width: 32px;
  height: 32px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.22s ease;
}

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

main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

section:last-child {
  border-bottom: none;
}

h1, h2, h3 {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  line-height: 1.3;
  color: var(--text-dark);
}

h2 {
  font-size: 32px;
  line-height: 1.35;
  color: var(--text-dark);
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

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

.hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 25px;
  transition: box-shadow 0.22s ease;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-list {
  list-style: none;
  margin: 20px 0;
}

.content-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.content-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

.misconceptions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

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

.misconception-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.22s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #1b5e20;
}

.cta-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cta-secondary:hover {
  background-color: var(--bg-light);
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--white);
}

table th {
  background-color: var(--bg-light);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border-light);
  color: var(--text-dark);
}

table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

table tr:hover {
  background-color: var(--bg-light);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-section a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.22s ease;
}

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

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #CCCCCC;
  margin: 0;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #999999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 70%;
}

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

.cookie-accept {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.22s ease;
}

.cookie-accept:hover {
  background-color: #1b5e20;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.22s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 6px;
  margin: 30px 0;
}

.disclaimer-box strong {
  color: var(--text-dark);
}

.highlight {
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .misconceptions-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text {
    max-width: 100%;
  }

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

  .cookie-accept {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  nav ul {
    gap: 10px;
  }

  .navbar {
    padding: 12px 15px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  section {
    padding: 40px 0;
  }
}
