body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f5f5f5;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  width: 90%;
  margin: 40px auto;
  padding: 10px 30px 20px;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
}

@media (max-width: 500px) {
  .container {
    background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.75) 100%);
    padding: 10px 20px;
    max-width: 100%;
    margin-left: 6px;
    margin-right: 6px;
    backdrop-filter: blur(6px);
  }
}

header {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  user-select: none;
}

h1 {
  color: #124D77;
  margin-bottom: 10px;
}

.tagline-container {
  margin-top: -14px;
  margin-left: 5px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

.tagline-container img {
  margin-top: 8px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section, .impressum-section, .datenschutz-section {
  padding: 5px 0;
  text-align: justify;
  border-bottom: 1px solid #eee;
}

.about-section p, .impressum-section p, .datenschutz-section p {
  margin-bottom: 15px;
}

.impressum-section h3, .datenschutz-section h3 {
  color: #124D77;
  margin-top: 20px;
  margin-bottom: 10px;
}

.datenschutz-section h1 {
  color: #124D77;
  margin-top: 10px;
  margin-bottom: 20px;
}

.datenschutz-section h2 {
  color: #124D77;
  margin-top: 30px;
  margin-bottom: 15px;
}

.datenschutz-section h4 {
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: bold;
}

.datenschutz-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.datenschutz-section ul li {
  margin-bottom: 8px;
}

.source-info {
  margin-top: 30px;
  font-size: 0.85em;
  color: #666;
  text-align: right;
}

.contact-info {
  padding: 5px 0;
}

.contact-link {
  color: #124D77;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0e3a5c;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #424242;
  font-size: 0.9em;
  padding-bottom: 10px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-link {
  color: #124D77;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0e3a5c;
}