:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #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: #FFFFFF;
}

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

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

h2 {
  font-size: 1.9rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  color: var(--text-color);
  font-weight: 600;
}

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

p {
  margin-bottom: 1.2rem;
}

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

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

header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
}

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

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

.hero h1 {
  margin-bottom: 1rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.section {
  padding: 3rem 0;
}

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

.content-image {
  max-width: 350px;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

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

.category-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.category-item h3 {
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary-color);
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}

.faq {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 4px;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 4px;
}

.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;
}

.disclaimer {
  padding: 2rem;
  background: #FFF9E6;
  border-left: 4px solid #FFC107;
  margin: 2rem 0;
}

footer {
  background: var(--text-color);
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer a {
  color: #FFFFFF;
}

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 ul li {
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .image-left,
  .image-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
  }

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

  .cookie-content {
    flex-direction: column;
  }

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

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