
.hero {
  text-align: center;
  background: #fff;
  padding: 80px 20px;
  color: #202124;
}

.hero-logo {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 15px;
  color: #0f2442; /* dein Navy-Blau */
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #5f6368;
  margin: 0 0 30px;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #0f2442; /* Navy */
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #0f2442;
  transition: all .25s;
}

.hero-btn:hover {
  background: #0f2442;
  color: #fff;
}