
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}
.header {
  background: #003366;
  color: white;
  padding: 2rem;
  text-align: center;
}
.logo {
  max-width: 300px;
  display: block;
  margin: 0 auto 1rem;
}
.services {
  display: flex;
  flex-direction: column;
}
.service {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.service.visible {
  opacity: 1;
  transform: translateY(0);
}
.service img {
  width: auto;
  max-height: 400px;
  max-width: 80%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: opacity 0.8s ease;
}
.service h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.service p {
  font-size: 1.2rem;
  max-width: 800px;
  padding: 0 1rem;
}
.kontakt {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  padding: 2rem;
  border-top: 1px solid #ccc;
  text-align: center;
}
.mail-button {
  background: #003366;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
}
