/*body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #222;
}*/

body {
  background-color: #f9f9f9;
  color: #1a1a1a;
  font-family: 'Segoe UI', sans-serif;
}

.logo-container {
  padding: 20px;
  text-align: center;
}

.site-logo {
  max-height: 300px;
  height: auto;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}


/* Header mit Farbverlauf */
/*header {
  background: linear-gradient(135deg, #006d77, #83c5be);
  color: white;
  padding: 80px 20px;
  text-align: center;
}*/

.hero {
  /*background: linear-gradient(135deg, #e63946, #fca311);*/
  background: linear-gradient(135deg, #006d77, #83c5be);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.button {
  background-color: white;
  color: #e63946;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.button:hover {
  background-color: #f1f1f1;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
}

.card h3 {
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.9em;
  color: #777;
}


/* --- Logo & Header zentriert, Logo links --- */
.main-header {
  background: linear-gradient(135deg, #006d77, #83c5be);
  padding: 5px 20px;
  position: relative;
  text-align: center;
}

.logo-container {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.site-logo {
  height: 300px;        /* vorher: 300px */
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.header-title h1 {
  margin: 0;
  font-size: 2em;
  color: white;
}

.cta-button {
  background-color: #ffffff;
  color: #006d77;
  border: 2px solid #006d77;
  padding: 10px 22px;
  font-size: 1.1rem;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #006d77;
  color: #ffffff;
}

.card .cta-button {
  display: block;
  margin: 20px auto 0 auto; /* oben etwas Abstand, dann zentriert */
  text-align: center;
}


