.hero {
  text-align: center;
  background: #f5f5f5;
}

.hero img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
}

.app-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #ddd;
  margin: 12px 0;
}

.app-item img {
  width: 60px;
  height: 60px;
}

/* FAQ content images center */
.faq-content img,
.faq-answer img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    height: auto;
}

/* Responsive mobile */
@media(max-width:768px) {

  .app-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.trending-section {
  padding: 20px;
  background: #fff;
}

.bonus-banner {
  background: #03a9f4;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 10px;
}

.trending-heading {
  text-align: center;
  background: red;
  color: white;
  padding: 10px;
  font-size: 1.2rem;
  border-radius: 6px;
  margin: 20px 0 10px;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-rank {
  font-weight: bold;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
  color: #999;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.app-details h4 {
  color: #000;
  margin: 0;
  font-size: 1rem;
}

.app-details p {
  color: #000;
  margin: 3px 0;
  font-size: 0.9rem;
}

.green-text {
  color: green;
  font-weight: 500;
}

.download-btn.red {
  margin-left: auto;
  background: red;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.3);
}


.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;
  flex-direction: column;   /* IMPORTANT FIX */
  gap: 15px;
}

.faq-content table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 10px;
}

.faq-content table th,
.faq-content table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.faq-content table th {
    background: #f5f5f5;
    font-weight: 600;
}

.faq-content table,
.faq-content table th,
.faq-content table td {
    color: #000 !important;
}


.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: #080808;
}

.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;
  }
}

/* ===== FAQ LIST FIX ===== */
.faq-answer ul {
    list-style: disc !important;
    padding-left: 22px;
    margin: 12px 0;
}

.faq-answer ol {
    list-style: decimal !important;
    padding-left: 22px;
    margin: 12px 0;
}

.faq-answer li {
    margin-bottom: 6px;
    color: #333;
    line-height: 1.6;
}

/* ===== FAQ Interlink Highlight (CKEditor Safe) ===== */

.interlink-box {
    background: #f1f5ff;
    padding: 12px 15px;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    margin: 12px 0;
    font-weight: 500;
    color: #1f2937;
}

/* mobile */
@media (max-width: 768px) {
    .interlink-box {
        font-size: 15px;
    }
}



