:root {
  --primary-color: #0E5A38;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-soft: #f8f9fa;
  --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f0f5f3 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-gradient);
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

main {
  margin-top: 80px;
}

.hero-section {
  padding: 5rem 0;
  background: white;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(14, 90, 56, 0.1);
}

.section {
  padding: 4rem 0;
}

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

.section h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 600;
}

.section p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}

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

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

.info-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(14, 90, 56, 0.12);
}

.info-card h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #0a4429;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 90, 56, 0.25);
  color: white;
  text-decoration: none;
}

.disclaimer-box {
  background: #fff8e6;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 90, 56, 0.1);
}

footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

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

table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

table th {
  background: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: left;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section h2 {
    font-size: 1.6rem;
  }
  
  nav a {
    margin-left: 1rem;
    font-size: 0.85rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
  }
  
  .hero-image {
    max-width: 100%;
    margin-top: 2rem;
  }
}
