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

:root {
  --primary-bg: #f9fbeb;
  --accent-dark: #c0ca33;
  --accent-olive: #827717;
  --text-dark: #827717;
  --white: #ffffff;
  --light-bg: #f0f4c3;
  --shadow-light: 0 7px 14px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 9px 28px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  font-size: 17.5px;
  line-height: 1.76;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

header.scrolled {
  box-shadow: var(--shadow-light);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1900px;
  margin: 0 auto;
  padding: 20px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header-container {
    padding: 16px 24px;
  }
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.8px;
}

.logo:hover {
  color: var(--accent-dark);
}

.nav-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-btn {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  transition: color 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-btn:hover {
  color: var(--accent-dark);
  animation: pulse-link 0.2s ease-in-out;
}

@keyframes pulse-link {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

main {
  max-width: 1900px;
  margin: 0 auto;
}

section {
  padding: 120px 72px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 60px 24px;
  }
}

.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 72px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

h1 {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 40px;
  color: var(--text-dark);
  word-spacing: 0.1em;
}

h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

p {
  margin-bottom: 20px;
  max-width: 700px;
  color: var(--text-dark);
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--light-bg) 100%);
  overflow: hidden;
  padding: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  padding: 60px;
  border-radius: 8px;
  max-width: 700px;
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
  
  .hero-content {
    padding: 40px 30px;
  }
  
  .hero-content h1 {
    font-size: 44px;
  }
}

.intro-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.biochemie-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 120px 0;
}

@media (max-width: 768px) {
  .biochemie-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.biochemie-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.biochemie-text h3 {
  margin-bottom: 20px;
}

.biochemie-text p {
  margin-bottom: 16px;
}

.table-responsive {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

table th {
  background-color: var(--accent-olive);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: -0.3px;
}

table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e8eae0;
  color: var(--text-dark);
}

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

.lebensmittel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.lebensmittel-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.32s ease;
}

.lebensmittel-card:hover {
  box-shadow: var(--shadow-hover);
}

.lebensmittel-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.32s ease, brightness 0.32s ease;
}

.lebensmittel-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.lebensmittel-card-content {
  padding: 24px;
}

.lebensmittel-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.lebensmittel-card p {
  font-size: 15px;
  margin: 0;
}

.pflanzen-block {
  margin: 80px 0;
  padding: 40px;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.pflanzen-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.pflanzen-item:nth-child(even) {
  direction: rtl;
}

.pflanzen-item:nth-child(even) > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .pflanzen-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pflanzen-item:nth-child(even) {
    direction: ltr;
  }
}

.pflanzen-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
}

.pflanzen-text h3 {
  margin-bottom: 16px;
}

.pflanzen-text p {
  margin-bottom: 14px;
  font-size: 16px;
}

.vergleich-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}

@media (max-width: 768px) {
  .vergleich-grid {
    grid-template-columns: 1fr;
  }
}

.vergleich-column {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.vergleich-column h3 {
  color: var(--accent-olive);
  margin-bottom: 24px;
  text-align: center;
}

.vergleich-column ul {
  list-style: none;
  padding: 0;
}

.vergleich-column li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-dark);
  font-size: 15px;
}

.vergleich-column li:before {
  content: "•";
  color: var(--accent-dark);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.faq-section {
  margin: 80px 0;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 17px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-bg);
  color: var(--accent-dark);
}

.faq-question.active {
  background-color: var(--accent-olive);
  color: var(--white);
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 24px;
  padding-top: 12px;
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
}

.hinweis-section {
  background-color: var(--light-bg);
  padding: 40px;
  border-left: 5px solid var(--accent-olive);
  border-radius: 4px;
  margin: 80px 0;
}

.hinweis-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-olive);
}

.hinweis-section p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
}

.abschluss-section {
  text-align: center;
  padding: 60px 0;
  margin: 80px 0;
}

.abschluss-section h2 {
  margin-bottom: 32px;
}

.abschluss-section p {
  margin: 0 auto 24px;
  max-width: 600px;
  font-size: 16px;
}

.abschluss-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.abschluss-links a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.abschluss-links a:hover {
  color: var(--accent-olive);
  text-decoration: underline;
}

.uebersicht-section {
  margin: 80px 0;
}

.uebersicht-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .uebersicht-grid {
    grid-template-columns: 1fr;
  }
}

.uebersicht-list {
  list-style: none;
  padding: 0;
}

.uebersicht-list li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid #e8eae0;
  font-size: 15px;
}

.uebersicht-list li:last-child {
  border-bottom: none;
}

.uebersicht-list li:before {
  content: "→";
  color: var(--accent-dark);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.uebersicht-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.kontakt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px 0;
}

@media (max-width: 768px) {
  .kontakt-section {
    grid-template-columns: 1fr;
  }
}

.kontakt-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.kontakt-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8dcd0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background-color: #fafbf7;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 12px;
  background-color: var(--light-bg);
  border-radius: 4px;
}

.form-btn {
  background-color: var(--accent-olive);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-btn:hover {
  background-color: #6b5f12;
  transform: scale(1.01);
}

footer {
  background-color: var(--accent-olive);
  color: var(--white);
  padding: 60px 72px 40px;
  margin-top: 120px;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 24px 30px;
  }
}

.footer-content {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 72px;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links button {
  background: none;
  border: none;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0;
}

.footer-links button:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--accent-olive);
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--accent-dark);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--accent-olive);
  font-size: 32px;
}

.modal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
}

.modal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.modal-content li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.modal-content ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.modal-content ol li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.modal-content strong {
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-olive);
  color: var(--white);
  padding: 20px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-dark);
  color: var(--text-dark);
}

.cookie-accept:hover {
  background-color: #b8bf2e;
}

.cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-more:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 44px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .lebensmittel-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
