:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --text-color: #333333;
  --bg-color: #FFFFFF;
  --light-gray: #F5F5F5;
  --border-color: #E0E0E0;
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-color);
  background-color: var(--bg-color);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 600;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
  color: var(--text-color);
  font-weight: 600;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-color);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.header {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

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

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

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

.main-content {
  margin-top: 80px;
  padding: 3rem 0;
}

.hero-section {
  background-color: var(--light-gray);
  padding: 4rem 0;
  text-align: center;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin-top: 2rem;
}

.content-section {
  padding: 3rem 0;
}

.content-section img {
  max-width: 350px;
  height: auto;
  margin: 1rem 1.5rem 1rem 0;
  float: left;
}

.content-section img.float-right {
  float: right;
  margin: 1rem 0 1rem 1.5rem;
}

.content-section::after {
  content: "";
  display: table;
  clear: both;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.category-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 4px;
}

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

.category-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 1rem 0;
  display: block;
}

.disclaimer-box {
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2.5rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.cta-section {
  background-color: var(--light-gray);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 1.05rem;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: white;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.cookie-button:hover {
  background-color: var(--primary-dark);
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 1rem;
  }

  .content-section img,
  .content-section img.float-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
    max-width: 100%;
  }

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

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

  .hero-section {
    padding: 2rem 0;
  }
}
