html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}
#header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,.95);
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0rem 0rem;
  z-index: 1000;
}

#header .logo img { height: 50px; object-fit: contain; }
#header nav a { margin-left: 1.5rem; color: #003366; font-weight: 600; }
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
}
section .content {
  max-width: 800px;
  min-width: 50%;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255,255,255,.9);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.hero {
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  color: white;
}
.hero .content { background: rgba(0,0,0,.4); color: white; }
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
.parallax-section .content { background: rgba(0,0,0,.5); }
.btn {
  display: inline-block;
  background: #FF6600;
  color: white;
  padding: .75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn:hover { background: #e55e00; }
.email-btn { display: inline-block; margin-top: 1rem; }
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

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

.support-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.support-card .icon {
  width: 60px;
  margin-bottom: 1rem;
}

.support-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.support-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000;
}

footer {
  color: #eee;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

footer .footer-links {
  margin-bottom: 0.5rem;
}

footer .footer-links a {
  color: #FFFFFF;          /* oder deine Akzentfarbe */
  text-decoration: none;
  margin: 0 0.4rem;
  font-weight: 600;
}

footer .footer-links a:hover,
footer .footer-links a:focus {
  text-decoration: underline;
}
