* {
  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: #2c2c2c;
  background-color: #fafafa;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #1B5E20;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2E7D32;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  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 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B5E20;
}

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

.nav-menu a {
  color: #2c2c2c;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: #1B5E20;
}

main {
  margin-top: 80px;
}

.hero {
  background-color: #ffffff;
  padding: 4rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.section {
  padding: 3.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.section:nth-child(even) {
  background-color: #fafafa;
}

.section-content {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.section-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.section-image img {
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
}

.section-text {
  flex: 1;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background-color: transparent;
  border: 1px solid #1B5E20;
  color: #1B5E20;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background-color: #1B5E20;
  color: #ffffff;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c2c2c;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  font-size: 1rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #1B5E20;
}

.disclaimer {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #4a4a4a;
}

.footer {
  background-color: #2c2c2c;
  color: #cccccc;
  padding: 3rem 0 1.5rem;
}

.footer a {
  color: #cccccc;
}

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

.footer-section {
  margin-bottom: 2rem;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #1B5E20;
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-content {
    flex-direction: column;
  }
  
  .section-image {
    flex: none;
    max-width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
