.hero {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--main-color);
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: var(--main-color);
  color: white;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}