:root {
  --primary-color: #1B5E20;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --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-dark);
  background-color: var(--bg-white);
}

.navbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.navbar-brand:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link {
  color: var(--text-medium);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

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

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

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

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

p {
  margin-bottom: 1rem;
}

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

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

.hero p {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.section {
  padding: 4rem 0;
}

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

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

.content-image-left {
  float: left;
  margin: 0 2rem 1rem 0;
}

.content-image-right {
  float: right;
  margin: 0 0 1rem 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #145A1C;
  border-color: #145A1C;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: var(--bg-white);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.disclaimer-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--bg-white);
}

.footer-link {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info {
  margin-bottom: 0.5rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  body {
    font-size: 1rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    padding: 2rem 0;
  }
}
