.page-resources-hit-club-apk-installation {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--primary-color); /* Inherited from shared, will be dark */
}

.page-resources-hit-club-apk-installation__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #1A202C; /* Dark background for hero */
  color: #ffffff; /* Light text for dark background */
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  overflow: hidden;
}

.page-resources-hit-club-apk-installation__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-resources-hit-club-apk-installation__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-resources-hit-club-apk-installation__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-hit-club-apk-installation__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-hit-club-apk-installation__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-hit-club-apk-installation__btn-primary,
.page-resources-hit-club-apk-installation__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-hit-club-apk-installation__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-resources-hit-club-apk-installation__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-hit-club-apk-installation__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-resources-hit-club-apk-installation__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-hit-club-apk-installation__content-area {
  background-color: #ffffff; /* Explicitly white for main content */
  padding: 60px 20px;
  color: #333333;
}

.page-resources-hit-club-apk-installation__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-hit-club-apk-installation__section-title {
  font-size: 2.2em;
  color: #1A202C;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-hit-club-apk-installation__sub-section-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-hit-club-apk-installation__paragraph {
  margin-bottom: 15px;
  color: #333333;
}

.page-resources-hit-club-apk-installation__list,
.page-resources-hit-club-apk-installation__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-hit-club-apk-installation__ordered-list {
  list-style-type: decimal;
}

.page-resources-hit-club-apk-installation__list-item {
  margin-bottom: 10px;
}

.page-resources-hit-club-apk-installation__image-container {
  text-align: center;
  margin: 40px 0;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.page-resources-hit-club-apk-installation__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.page-resources-hit-club-apk-installation__image-caption {
  margin-top: 10px;
  font-style: italic;
  color: #555555;
  font-size: 0.9em;
}

.page-resources-hit-club-apk-installation__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-hit-club-apk-installation__button-group--center {
  justify-content: center;
}

/* FAQ Section */
.page-resources-hit-club-apk-installation__faq-list {
  margin-top: 40px;
}

.page-resources-hit-club-apk-installation__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-resources-hit-club-apk-installation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #1A202C;
  cursor: pointer;
  background-color: #FFD700;
  transition: background-color 0.3s ease;
}

.page-resources-hit-club-apk-installation__faq-question:hover {
  background-color: #e6c200;
}

.page-resources-hit-club-apk-installation__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-hit-club-apk-installation__faq-item.active .page-resources-hit-club-apk-installation__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-hit-club-apk-installation__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-hit-club-apk-installation__faq-item.active .page-resources-hit-club-apk-installation__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-hit-club-apk-installation__hero-section {
    padding: 60px 15px;
  }

  .page-resources-hit-club-apk-installation__hero-title {
    font-size: 2em;
  }

  .page-resources-hit-club-apk-installation__hero-description {
    font-size: 1em;
  }

  .page-resources-hit-club-apk-installation__content-area {
    padding: 30px 15px;
  }

  .page-resources-hit-club-apk-installation__section-title {
    font-size: 1.8em;
  }

  .page-resources-hit-club-apk-installation__sub-section-title {
    font-size: 1.4em;
  }

  .page-resources-hit-club-apk-installation__btn-primary,
  .page-resources-hit-club-apk-installation__btn-secondary {
    width: 100% !important;
    margin: 10px 0 !important;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-hit-club-apk-installation__button-group {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-hit-club-apk-installation img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-hit-club-apk-installation__section,
  .page-resources-hit-club-apk-installation__card,
  .page-resources-hit-club-apk-installation__container,
  .page-resources-hit-club-apk-installation__image-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-hit-club-apk-installation__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-hit-club-apk-installation__faq-answer {
    padding: 0 20px;
  }

  .page-resources-hit-club-apk-installation__faq-item.active .page-resources-hit-club-apk-installation__faq-answer {
    padding: 10px 20px;
  }
}