* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", Arial, sans-serif;
  }

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
  }
ul {
  padding-left: 40px; /* Bestimmt den Abstand der Liste zum linken Rand */
  list-style-position: outside; /* Standard: Punkt steht außerhalb des Textblocks */
}
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #111827;
  position: sticky;
  top: 0;
}

nav a {
  margin: 0 10px;
  color: #cbd5e1;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: #94a3b8;
}

.heroleft {
  padding: 80px 20px;
  text-align: left;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: #94a3b8;
}


.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #3b82f6;
  border-radius: 8px;
  color: white;
}

.section {
  padding: 60px 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
}

footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
  background: #111827;
}