:root {
  --dunkelgrau: #2C2C2C;
  --hellblau: #4A9FBF;
  --erdgruen: #6B8B3D;
  --rostrot: #C85A3A;
  --neutral-light: #F5F5F5;
  --neutral-medium: #E8E8E8;
  --neutral-dark: #1A1A1A;
}

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

html, body {
  font-family: 'Merriweather', serif;
  color: var(--dunkelgrau);
  background-color: #FFFFFF;
  line-height: 1.6;
}

body {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin: 40px 0 20px 0;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 60px 0 30px 0;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 50px 0 25px 0;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 35px 0 20px 0;
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

a {
  color: var(--hellblau);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

a:hover {
  border-bottom: 1px solid var(--hellblau);
}

button, .btn {
  font-family: 'Montserrat', sans-serif;
  background-color: transparent;
  border: 2px solid var(--dunkelgrau);
  color: var(--dunkelgrau);
  padding: 12px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

button:hover, .btn:hover {
  background-color: var(--hellblau);
  border-color: var(--hellblau);
  color: white;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-full {
  max-width: 100%;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-2-col img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 80px 0;
}

section.section-light {
  background-color: var(--neutral-light);
}

section.section-medium {
  background-color: var(--neutral-medium);
}

.section-header {
  background-color: var(--dunkelgrau);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.section-header h1 {
  color: white;
  margin-bottom: 20px;
  font-size: 56px;
}

.section-header p {
  color: var(--neutral-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.full-width-bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

header {
  background-color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dunkelgrau);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  color: var(--dunkelgrau);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid var(--hellblau);
}

footer {
  background-color: var(--dunkelgrau);
  color: var(--neutral-light);
  padding: 60px 0 20px 0;
  margin-top: 80px;
  font-family: 'Montserrat', sans-serif;
}

footer a {
  color: var(--hellblau);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
  font-size: 14px;
}

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

.disclaimer {
  background-color: var(--neutral-medium);
  padding: 30px;
  border-left: 4px solid var(--erdgruen);
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--dunkelgrau);
}

.disclaimer p {
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

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

.card {
  background-color: white;
  border: 1px solid var(--neutral-medium);
  padding: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

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

.card p {
  font-size: 14px;
  line-height: 1.8;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 14px;
}

table th {
  background-color: var(--dunkelgrau);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--neutral-medium);
}

table tr:nth-child(even) {
  background-color: var(--neutral-light);
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  max-width: 600px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner button {
  padding: 8px 20px;
  font-size: 13px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
}

.cookie-banner button.accept {
  background-color: var(--erdgruen);
  border-color: var(--erdgruen);
}

.cookie-banner button.accept:hover {
  background-color: var(--rostrot);
  border-color: var(--rostrot);
}

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

.cookie-banner a {
  color: var(--hellblau);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--neutral-medium);
  background-color: white;
  color: var(--dunkelgrau);
  font-family: 'Merriweather', serif;
  font-size: 14px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--hellblau);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  section {
    padding: 50px 0;
  }

  .section-header {
    padding: 60px 0;
  }

  .section-header h1 {
    font-size: 36px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

.text-balance {
  text-wrap: balance;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.py-60 {
  padding: 60px 0;
}

.py-80 {
  padding: 80px 0;
}

@font-face {
  font-family: 'Merriweather';
  src: url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
}
