body { font-family: 'Segoe UI', Tahoma, sans-serif; line-height: 1.6; color: #333; margin: 0; }
.container { max-width: 960px; margin: auto; padding: 20px; }
header { background: #2c3e50; color: #fff; padding: 20px 0; }
header nav a { color: #fff; margin-left: 20px; text-decoration: none; }
h2 { border-bottom: 2px solid #2c3e50; padding-bottom: 10px; }

/* Postup sekcia */
.steps { display: flex; justify-content: space-between; gap: 20px; text-align: center; }
.step { flex: 1; padding: 20px; background: #f4f4f4; border-radius: 8px; }
.step span { font-size: 2em; font-weight: bold; color: #2c3e50; }

footer { background: #2c3e50; color: #fff; text-align: center; padding: 20px 0; margin-top: 40px; }

/* Mobilné zobrazenie */
@media (max-width: 600px) {
    .steps { flex-direction: column; }
}