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

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

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

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

p {
  margin-bottom: 1.25rem;
}

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

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

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

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
}

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

nav li {
  margin: 0;
}

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

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

.hero {
  background: var(--bg-light);
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.hero-content {
  text-align: center;
}

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

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

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: 2rem;
}

section {
  padding: 3rem 0;
}

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

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

.image-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 45%;
}

.image-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 45%;
}

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

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

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

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

.category-card h3 {
  margin-bottom: 1rem;
}

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

.disclaimer-box h3 {
  color: #F57C00;
  margin-bottom: 1rem;
}

.info-box {
  background: var(--bg-light);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

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

.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-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

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

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

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

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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  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 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.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: 1001;
  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: 1rem;
  }

  .image-left,
  .image-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }

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

  .hero {
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
  }
}
