/* Basis-Stile */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.ta-left {
  text-align: left;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.links a {
  color: #009ADA;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.links a:hover {
  color: #015289;
}

h1 {
  font-size: 1.8rem;
  color: #009ADA;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.4rem;
  color: #009ADA;
  margin-top: 30px;
  text-align: center;
}

p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #009ADA;
  text-decoration: none;
  transition: color 0.3s;
}

.back-link:hover {
  color: #015289;
}

body.transition-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}