:root {
  --bio-green: #0A6B42;
  --bio-green-light: #0f8152;
  --bio-green-dark: #085032;
  --text-primary: #2c3e50;
  --text-secondary: #546e7a;
  --bg-light: #f8faf9;
  --bg-white: #ffffff;
  --border-color: #e0e7e4;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(to bottom, #ffffff 0%, #f8faf9 100%);
  overflow-x: hidden;
}

.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(10, 107, 66, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bio-green);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--bio-green);
}

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

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--bio-green);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 107, 66, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.disclaimer-box {
  background: #fef9e7;
  border-left: 4px solid var(--bio-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10, 107, 66, 0.08);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.info-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(10, 107, 66, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 107, 66, 0.12);
}

.info-card h3 {
  color: var(--bio-green);
  margin-bottom: 1rem;
  margin-top: 0;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

.bio-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 107, 66, 0.05);
}

.bio-table thead {
  background: var(--bio-green);
  color: var(--bg-white);
}

.bio-table th,
.bio-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.bio-table th {
  font-weight: 600;
  font-size: 0.95rem;
}

.bio-table tbody tr:hover {
  background: var(--bg-light);
}

.bio-table tbody tr:last-child td {
  border-bottom: none;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.cta-button {
  display: inline-block;
  background: var(--bio-green);
  color: var(--bg-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(10, 107, 66, 0.2);
}

.cta-button:hover {
  background: var(--bio-green-light);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 107, 66, 0.3);
  text-decoration: none;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(10, 107, 66, 0.08);
}

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

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

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

.form-control:focus {
  outline: none;
  border-color: var(--bio-green);
  box-shadow: 0 0 0 3px rgba(10, 107, 66, 0.1);
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section p,
.footer-section a {
  color: #b0bec5;
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-section a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #546e7a;
  padding-top: 1.5rem;
  text-align: center;
  color: #b0bec5;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 2px solid var(--bio-green);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

.btn-accept {
  background: var(--bio-green);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: var(--bio-green-light);
}

@media (min-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-with-image.reverse {
    direction: rtl;
  }
  
  .content-with-image.reverse > * {
    direction: ltr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section h2 {
    font-size: 2.5rem;
  }
}
