body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #fff 50%, #333333 50%);
  color: #222;
  min-height: 100vh;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
}

header {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  background: #333333;
  color: #fff;
}

.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #E53935;
  margin-bottom: 1rem;
  background: #fff;
}

h1 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.intro {
  font-size: 1.1rem;
  margin: 0.5rem 0 0 0;
  color: #ffebee;
}

/* Neuer About-Block für den langen Text */
.about {
  background: #fff;
  color: #222;
  border-radius: 12px;
  margin: 2rem 0 0 0;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(51,51,51,0.07);
}

.about h2 {
  color: #E53935;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.about p {
  margin: 1.1rem 0;
  line-height: 1.7;
}

.about blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #E53935;
  color: #E53935;
  font-style: italic;
  background: #f9f9f9;
}

/* Navigation */
main {
  padding: 2rem 1rem;
  background: transparent;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  color: #333333;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 2px 8px rgba(51,51,51,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border-left: 6px solid #E53935;
}

.nav-link:hover, .nav-link:focus {
  background: #E53935;
  color: #fff;
  box-shadow: 0 4px 16px rgba(229,57,53,0.15);
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.impressum-link {
  background: #333333;
  color: #fff;
  border-left: 6px solid #fff;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.impressum-link:hover, .impressum-link:focus {
  background: #fff;
  color: #333333;
  border-left: 6px solid #E53935;
}

/* Responsive Design */
@media (max-width: 700px) {
  .container {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  body {
    background: #333333;
  }
  .about {
    padding: 1.2rem 0.7rem;
  }
}