:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --text: #212529;
  --text-light: #6c757d;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --border: #dee2e6;
}

* {
  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);
  background: var(--bg);
}

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

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

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

p {
  margin-bottom: 1.2rem;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 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);
}

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

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

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

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

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

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

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

.section {
  padding: 4rem 0;
}

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

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

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

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

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

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

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.cta-soft {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.cta-soft:hover {
  background: var(--primary-dark);
  color: white;
}

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

.faq-item h3 {
  color: var(--primary);
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

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

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

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

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

.form-disclaimer {
  background: #d1ecf1;
  border-left: 4px solid #17a2b8;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #0c5460;
}

.footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer a {
  color: #adb5bd;
}

.footer a:hover {
  color: white;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #343a40;
  color: white;
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-banner button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-banner button:hover {
  background: var(--primary-dark);
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  margin-top: 2rem;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
  }
  
  .section {
    padding: 2rem 0;
  }
}
