body {
  margin: 0;
  padding: 0;
  background: url('/bilder/bg-main.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 60px 20px;
}

h2 {
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 20px;
  color: #cccccc;
}

h1 {
  font-size: 3em;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.buttons {
  margin-top: 35px;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 24px;
  background: rgba(30,30,30,0.7);
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.buttons a:hover {
  background: #333;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .buttons a {
    display: block;
    margin: 10px auto;
    max-width: 280px;
  }
}