body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9fafb;
}

.julius-sans-one-regular {
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

.header {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header h1 {
  color: red;
  font-size: 2rem;
  margin: 0;
  display: inline-block;
}

.nav-link {
  color: #1f2937;
  text-decoration: none;
  font-size: 1rem;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: red;
}

.impressum-section {
  padding: 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: red;
  margin-bottom: 2rem;
  text-align: center;
}

.impressum-content {
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.impressum-content h3 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 1.5rem;
  color: #1f2937;
  margin: 1.5rem 0 0.5rem;
}

.impressum-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.impressum-content a {
  color: red;
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum-content a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 1rem 0;
  text-align: center;
  margin-top: 2rem;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer .nav-link {
  color: #ffffff;
  margin: 0 0.5rem;
}

.footer .nav-link:hover {
  color: red;
}

@media (max-width: 640px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .impressum-content {
    padding: 1rem;
  }

  .impressum-content h3 {
    font-size: 1.2rem;
  }

  .impressum-content p {
    font-size: 0.9rem;
  }
}