:root {
  --primary-color: #1B5E20;
  --text-color: #333333;
  --light-bg: #F8F9FA;
  --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.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

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

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

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

p {
  margin-bottom: 1.2rem;
}

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

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  transition: color 0.2s;
}

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

.main-content {
  margin-top: 80px;
}

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

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

.section {
  padding: 3rem 0;
}

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

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

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

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

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

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

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

.btn-primary:hover {
  background-color: #145518;
  color: #ffffff;
  text-decoration: none;
}

.footer {
  background-color: #2C2C2C;
  color: #CCCCCC;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: #CCCCCC;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

.footer a:hover {
  color: #ffffff;
}

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

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

.footer-bottom {
  border-top: 1px solid #444444;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

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

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

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

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

.disclaimer-box h3 {
  color: #F57C00;
  font-size: 1.3rem;
}

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

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2C2C;
  color: #ffffff;
  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-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner button {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}

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

@media (max-width: 991px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .content-with-image {
    flex-direction: column;
  }
  
  .content-with-image img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  body {
    font-size: 1rem;
  }
}
