@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300;400;700&display=swap');

:root {
  --primary-color: #4a7c2c; /* Ein freundlicheres Naturgrün */
  --secondary-color: #fdfbf7; /* Sanftes Cremeweiß */
  --accent-color: #e67e22; /* Warmes Orange statt hartem Rot */
  --link-color: #2980b9;
  --text-color: #2c3e50;
  --header-font: 'Comic Neue', 'Arial', sans-serif;
  --body-font: 'Arial', sans-serif;
}

body {
  font-family: var(--body-font);
  background-color: #e9ecef;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  max-width: 850px;
  background-color: var(--secondary-color);
  padding: 40px 60px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 10px solid var(--primary-color);
  border-radius: 12px;
}

h1 {
  font-family: var(--header-font);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: 700;
}

.content-image {
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.highlight-green {
  color: var(--primary-color);
  font-weight: bold;
}

.contact-section {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid var(--accent-color);
  margin: 40px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-section p {
  margin: 5px 0;
  font-weight: bold;
  color: var(--accent-color);
}

.contact-section a {
  color: var(--accent-color);
  text-decoration: underline;
}

.download-section {
  text-align: center;
  margin: 40px 0;
}

.btn-download {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(74, 124, 44, 0.3);
}

.btn-download:hover {
  background-color: #3d6624;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(74, 124, 44, 0.4);
}

.contact-info {
  margin-top: 60px;
  text-align: center;
  font-size: 0.95em;
  color: #7f8c8d;
  border-top: 1px solid #ecf0f1;
  padding-top: 30px;
}

.contact-info a {
  color: var(--link-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.btn-contact {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: bold;
  transition: all 0.2s;
}

.btn-contact:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  body {
    padding: 0;
  }
  .container {
    padding: 30px 20px;
    margin: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  h1 {
    font-size: 1.8em;
  }
}
