body {
  margin: 0;
  padding: 20px;
  background-color: #63B2F7;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: white;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 500px;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
}

p.subline {
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- RESPONSIVE LINE BREAK --- */

.desktop-br {
  display: block;
}

@media (max-width: 768px) {
  .desktop-br {
    display: none;
  }
}


/* --- FEATURE LIST (CHECKMARKS) --- */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  text-align: left;
  display: inline-block;
  color: white;
}

.feature-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0.9;
}


/* --- PERSÖNLICHE KONTAKT-KARTE --- */

.contact-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  padding: 15px 30px 15px 20px;
  border-radius: 60px;
  margin-bottom: 40px;
  text-align: left;
  transition: transform 0.2s, background-color 0.2s;
}

/* Optional: Leichter Hover-Effekt für die ganze Karte */
.contact-profile:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Das Profilbild */
.profile-pic {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container für Text */
.profile-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Der Name */
.profile-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  display: block;
  margin-bottom: 2px;
}

/* Die Links (Tel & Mail) */
.profile-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.profile-link:hover {
  color: white;
  text-decoration: underline;
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

/* Anpassung für sehr kleine Handys */
@media (max-width: 400px) {
  .contact-profile {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
  }
}

.tools-section {
  margin-bottom: 50px;
}

.tools-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: block;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* --- TAGS & LINKS STYLE --- */
.tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

a.tag:hover {
  background-color: white;
  color: #63B2F7;
  border-color: white;
  cursor: pointer;
  transform: translateY(-1px);
  text-decoration: none;
}

a.tag:visited {
  color: white;
}

a.tag:visited:hover {
  color: #63B2F7;
}


/* --- FOOTER STYLE --- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  margin-top: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  margin-bottom: 10px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* --- STYLES FÜR IMPRESSUM & DATENSCHUTZ SEITE --- */

body.legal-page {
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  height: auto;
}

.legal-content {
  text-align: left;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.back-btn {
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-bottom: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.back-btn:hover {
  text-decoration: underline;
  opacity: 1;
}

.legal-logo {
  display: block;
  max-width: 180px;
  margin-bottom: 20px;
}

.legal-content h1 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-top: 20px;
  font-size: 1.8rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: white;
  margin-top: 30px;
}

.legal-text-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.separator {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 50px 0;
}