body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}
.hero {
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  text-align: center;
  color: white;
}
.overlay {
  background: rgba(0, 0, 0, 0.65);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
h1 {
  font-size: 64px;
  margin: 0;
  color: #bb33ff;
  text-shadow: 0 0 10px #bb33ff;
}
.subtitle {
  font-size: 22px;
  margin: 20px 0;
}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  background-color: #ffcc00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}
.content, .faq {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.content h2, .faq h2 {
  color: #ffcc00;
}
.faq-item {
  background-color: #222;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 10px;
}
.faq-item h3 {
  margin: 0 0 10px 0;
  color: #ffe600;
}
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
footer a {
  color: #ffe600;
  text-decoration: none;
  margin: 0 5px;
}


/* Адаптивность для мобильных */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .overlay {
    padding: 0 10px;
    text-align: center;
  }

  .content, .faq {
    padding: 0 15px;
  }

  .faq-item {
    font-size: 14px;
  }

  footer {
    font-size: 12px;
    padding: 15px;
  }
}
