.hero {
  text-align: center;
  background: #f5f5f5;
}

.hero img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
}

.trending-section {
  padding: 20px 20px 0 20px;
  background: #fff;
}

.bonus-banner {
  background: #03a9f4;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 10px;
}
a{
  color: #fff;
  text-decoration: none;
}

.trending-heading {
  text-align: center;
  background: red;
  color: white;
  padding: 10px;
  font-size: 1.2rem;
  border-radius: 6px;
  margin: 20px 0 10px;
}

.rank {
  font-size: 1rem;
  font-weight: bold;
  color: red;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.faq-section {
  max-width: 900px;
  margin: 10px auto auto auto;
  padding: 0 15px;
}

.faq-card {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-size: 20px;
  color: #ff6600;
  margin-bottom: 20px;
  font-weight: bold;
}

.faq-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.faq-content-screenshot {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-logo {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
}

.faq-screenshot {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-answer {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.faq-answer strong {
  color: #e60000;
}

.faq-answer ol {
  padding-left: 20px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .faq-content {
    flex-direction: column;
  }

  .faq-logo {
    margin: 0 auto;
    width: 80px;
  }

  .faq-question {
    font-size: 20px;
  }
}