:root {
  --primary-color: #33691E;
  --text-color: #2c3e50;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  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.1rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #ffffff;
}

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

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

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 32px;
  width: 32px;
  margin-right: 10px;
  object-fit: contain;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.2s;
}

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

main {
  margin-top: 80px;
}

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

.hero h1 {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 600px;
  margin: 2rem auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
}

.content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-with-image.reverse {
  flex-direction: row-reverse;
}

.content-with-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

.content-with-image .text-content {
  flex: 1;
}

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

.disclaimer-box h3 {
  margin-top: 0;
}

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

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #2e5d1a;
  color: #ffffff;
}

.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-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

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

.submit-button {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #2e5d1a;
}

.contact-info {
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner button {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cookie-banner button:hover {
  background-color: #2e5d1a;
}

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

.category-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .content-with-image {
    flex-direction: column;
  }
  
  .content-with-image.reverse {
    flex-direction: column;
  }
  
  .content-with-image img {
    max-width: 100%;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
