body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #a6d608, #f9cb2f);
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background: #f8f8f8;
  padding: 40px 20px 20px;
}

.puzzle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.puzzle-wrapper img {
  max-width: 80px;
  height: auto;
}

h1 {
  margin: 0;
}

.slogan {
  font-style: italic;
  margin-top: 10px;
  color: #444;
}

.info {
  margin-top: 30px;
  font-weight: bold;
}

.buttons {
  margin-top: 20px;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #007b7f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

form {
  margin: 30px auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #ccc;
}

input, textarea {
  padding: 8px;
  font-size: 16px;
}

input[type="submit"] {
  background: #007b7f;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-options {
  margin-top: 20px;
}


  .side-column {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.site-header {
  background: #f8f8f8;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
}

.header-side {
  width: 160px;
  display: flex;
  justify-content: center;
}

.header-main {
  flex: 1;
  min-width: 300px;
}

.puzzle-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.puzzle {
  max-width: 80px;
  height: auto;
}

.header-center {
  text-align: center;
  max-width: 600px;
}

.header-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-buttons a {
  padding: 10px;
  background-color: #007b7f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
  width: 140px;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .header-side {
    width: auto;
    margin-bottom: 20px;
  }

  .header-buttons a {
    width: 160px;
  }

  .puzzle-text-wrapper {
    flex-direction: column;
  }
}

.main-nav {
  background: linear-gradient(135deg, #a6d608, #f9cb2f);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.main-nav li a {
  text-decoration: none;
  color: #015b5e;
  font-weight: bold;
  font-size: 16px;
}

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