* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.status-badge {
  background: #1a1a1a;
  color: #888;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid #2a2a2a;
}

.main-content {
  margin-top: 80px;
  padding: 4rem 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #888;
  margin-bottom: 2rem;
  font-weight: 400;
}

.description {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: #333;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-description {
  color: #888;
  font-size: 0.95rem;
}

.contact-section {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
}

.footer {
  border-top: 1px solid #1a1a1a;
  padding: 2rem;
  text-align: center;
  color: #666;
  margin-top: 4rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-links span {
  color: #444;
}

.trustpilot-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

.trustpilot-widget {
  width: 100%;
  max-width: 500px;
  /* oder mehr, je nach gewünschter Breite */
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .main-content {
    margin-top: 120px;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}
