:root {
    --wnrz-accent: #0dcaf0;
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
  }
  body {
    background-color: #1f1f1f;
    color: var(--text-light);
    font-family: "Segoe UI", sans-serif;
    padding-top: 80px; /* Platz für die feste Navbar */
  }
  .navbar {
    background-color: #121212;
  }
  .navbar-brand img {
    height: 60px;
  }
  header {
    background-color: #2a2a2a;
    padding: 80px 0;
    text-align: center;
  }
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  header p {
    font-size: 1.25rem;
    color: var(--text-muted);
  }
  section {
    padding: 60px 0;
  }
  h2 {
    font-size: 2rem;
    font-weight: 600;
  }
  .card {
    background-color: #2e2e2e;
    border: none;
    transition: transform 0.3s ease;
    color: var(--text-light);
  }
  .card:hover {
    transform: scale(1.02);
  }
  .card-title {
    color: var(--wnrz-accent);
    font-size: 1.25rem;
  }
  .card-text {
    color: var(--text-light);
    font-size: 1rem;
  }
  footer {
    background-color: #121212;
    padding: 40px 0;
    text-align: center;
    color: #ccc;
  }
  footer a {
    color: var(--wnrz-accent);
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    header h1 {
      font-size: 1.8rem;
    }
    header p {
      font-size: 1rem;
    }
  }
  