* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin-top: 80px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.container_small {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

section {
  background: white;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

section .headline-group h2,
section .headline-group h3 {
  color: #2c5f2d;
  border: none;
  margin: 0;
  padding: 0;
}

section .headline-group h2 {
  font-size: 1.8rem;
  border-bottom: 3px solid #97bc62;
}

section .headline-group h2:last-child {
  margin-bottom: 2rem;
}

section .headline-group h3 {
  color: #5a8f45;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

section h2,
section h3,
section h4 {
  color: #2c5f2d;
}

section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #97bc62;
  font-size: 1.8rem;
}

section h3 {
  margin: 1.5rem 0 0.8rem 0;
  font-size: 1.3rem;
}

section h4 {
  margin: 1.5rem 0 0.8rem 0;
  font-size: 1.2rem;
}

section .action-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

a:link,
a:visited,
a:active {
  color: #5a8f45;
  font-family: Arial, Helvetica, sans-serif;
}

a:hover,
a:focus {
  color: #2c5f2d;
}

img {
  border: 0;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.small,
.small a:link,
.small a:visited,
.small a:active,
.small a:hover,
.small a:focus {
  font-size: 0.9rem;
  text-decoration: none;
}

.info-box {
  background: #e9f5e9;
  padding: 1.5rem;
  border-left: 4px solid #2c5f2d;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.info-box strong {
  color: #2c5f2d;
}

.highlight {
  background: #fefff5;
  border: 2px dotted #2c5f2d;
  padding: 2px;
  margin-bottom: 10px;
}

.abbr {
  cursor: help;
  border-bottom: 1px dotted #2c5f2d;
}

.red {
  color: #B22222;
}

.green {
  color: #006400;
}

.orange {
  color: #FF6600;
}

.whitebg {
  background: #fff;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/* content */

section#home p {
  line-height: 2rem;
  font-size: 1.1rem;
}

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vorstand-card {
  text-align: center;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.vorstand-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid #2c5f2d;
}

.vorstand-card h4 {
  color: #2c5f2d;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.vorstand-card p {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-item {
  padding: 1rem;
  background: #f9f9f9;
  border-left: 4px solid #2c5f2d;
  border-radius: 4px;
  transition: background 0.3s;
}

.download-item:hover {
  background: #e9f5e9;
}

.download-item a {
  color: #2c5f2d;
  text-decoration: none;
  font-weight: bold;
}

.download-item a:hover {
  text-decoration: underline;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.link-item {
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 4px;
  transition: background 0.3s;
}

.link-item:hover {
  background: #e9f5e9;
}

.link-item a {
  color: #2c5f2d;
  text-decoration: none;
  font-weight: bold;
}

.link-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem 0.5rem;
  }
  
  section {
    padding: 1rem;
  }
}