* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  padding-top: 60px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #38b6ff;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 30px;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  text-decoration: none;
  margin-right: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  color: rgb(0, 20, 46);
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.content {
  padding: 30px;
  max-width: 900px;
  margin: auto;
}

.news h1 {
  font-size: 3rem;
  text-align: center;
  color: #38b6ff;
  margin-bottom: 15px;
}

.news p {
  text-align: center;
  margin-bottom: 30px;
}

.news-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
  height: auto;
  margin-bottom: 40px;
}

.socials h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.social-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-logos img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.2s;
}

.social-logos a:hover img {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .nav-links {
    font-size: 0,9rem;
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
  }
  .nabar {
    padding: 2px 10px;
  }
  .social-logos {
    flex-direction: column;
    align-items: center;
  }
}
/* Fügen Sie dies zu Ihrer styles.css hinzu */
.about-section, .history-section, .mission-section {
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

.mission-section ul {
  list-style-type: none;
  padding-left: 20px;
}

.mission-section li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.mission-section li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38b6ff;
  font-weight: bold;
}

h2 {
  color: #38b6ff;
  margin-bottom: 15px;
}
.footer-container {
  text-align: center;
  margin: 40px 0 20px;
  padding: 0 20px;
  width: 100%;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #38b6ff;
}

.footer-links a:hover::after {
  content: '';
  position: absolute;
  width: calc(100% - 20px);
  height: 2px;
  bottom: 0;
  left: 10px;
  background-color: #38b6ff;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-links a {
    padding: 8px 0;
  }
  
  .footer-links a:hover::after {
    width: 100%;
    left: 0;
  }
}