* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #222;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.image-banner {
  width: 100%;
  height: 150px; /* Höhe anpassen je nach PNG */
  background: url('core_Luftfrachtkontrolle.png') center/contain no-repeat;
  background-color: #f4f4f4; /* Fallback-Hintergrund */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero {
  min-height: flex;
  width: 100%;
  background: url('Abby_Entspant.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5%;
  position: relative;
  overflow: hidden;
}


.hero-text {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  max-width: 600px;
  animation: slideIn 1.5s ease-out forwards;
  transform: translateX(-100%);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}
.contact-slide {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 5%;
  overflow: hidden;
}

.contact-form {
  background-color: #ffffffcc;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  animation: slideInRight 1.5s ease-out forwards;
  transform: translateX(100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
  }
}

.contact-slide {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 5%;
  overflow: hidden;
}

.contact-info {
  background-color: #ffffffcc;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  animation: slideInRight 1.5s ease-out forwards;
  transform: translateX(100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-info p {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #222;
}

.toggle-impressum {
  background: none;
  border: none;
  color: #0af;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: underline;
  padding-left: 3rem;
}

.impressum {
  margin-top: 1rem;
  color: #ccc;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding-left: 3rem;
}

.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

