/* style/resources-tr88-app-features-benefits.css */
.page-resources-tr88-app-features-benefits {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from shared, but specified for clarity */
}

.page-resources-tr88-app-features-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-tr88-app-features-benefits__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Hero Section */
.page-resources-tr88-app-features-benefits__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-tr88-app-features-benefits__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-tr88-app-features-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: 700;
}

.page-resources-tr88-app-features-benefits__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.6;
}

/* Buttons */
.page-resources-tr88-app-features-benefits__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-tr88-app-features-benefits__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-tr88-app-features-benefits__btn-primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

/* Features Section */
.page-resources-tr88-app-features-benefits__features-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-resources-tr88-app-features-benefits__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-tr88-app-features-benefits__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-tr88-app-features-benefits__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-tr88-app-features-benefits__feature-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 250px; /* Max width for feature icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-tr88-app-features-benefits__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-tr88-app-features-benefits__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Benefits Section */
.page-resources-tr88-app-features-benefits__benefits-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-tr88-app-features-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-tr88-app-features-benefits__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-tr88-app-features-benefits__benefit-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-tr88-app-features-benefits__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Download Section */
.page-resources-tr88-app-features-benefits__download-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-tr88-app-features-benefits__download-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.page-resources-tr88-app-features-benefits__download-steps {
  flex: 1;
}

.page-resources-tr88-app-features-benefits__step-item {
  margin-bottom: 30px;
}

.page-resources-tr88-app-features-benefits__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-tr88-app-features-benefits__step-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-tr88-app-features-benefits__download-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-resources-tr88-app-features-benefits__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-tr88-app-features-benefits__video-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-resources-tr88-app-features-benefits__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Comparison Section */
.page-resources-tr88-app-features-benefits__comparison-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-tr88-app-features-benefits__comparison-table {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.page-resources-tr88-app-features-benefits__comparison-column {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-tr88-app-features-benefits__column-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.page-resources-tr88-app-features-benefits__comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-tr88-app-features-benefits__comparison-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1em;
}

.page-resources-tr88-app-features-benefits__comparison-list li::before {
  content: '✔';
  color: #EA7C07; /* Login color for checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-resources-tr88-app-features-benefits__comparison-conclusion {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-resources-tr88-app-features-benefits__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-tr88-app-features-benefits__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-tr88-app-features-benefits__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-tr88-app-features-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f0f0f0;
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  user-select: none;
}

.page-resources-tr88-app-features-benefits__faq-question:hover {
  background-color: #e5e5e5;
}

.page-resources-tr88-app-features-benefits__faq-qtext {
  flex-grow: 1;
}

.page-resources-tr88-app-features-benefits__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-resources-tr88-app-features-benefits__faq-item[open] .page-resources-tr88-app-features-benefits__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-resources-tr88-app-features-benefits__faq-answer {
  padding: 15px 25px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  color: #555555;
  font-size: 0.95em;
}

/* Conclusion Section */
.page-resources-tr88-app-features-benefits__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-tr88-app-features-benefits__conclusion-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-tr88-app-features-benefits__hero-title {
    font-size: 3em;
  }

  .page-resources-tr88-app-features-benefits__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-tr88-app-features-benefits__hero-title {
    font-size: 2.5em;
  }

  .page-resources-tr88-app-features-benefits__hero-description {
    font-size: 1em;
  }

  .page-resources-tr88-app-features-benefits__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-resources-tr88-app-features-benefits__features-grid,
  .page-resources-tr88-app-features-benefits__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-tr88-app-features-benefits__download-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-tr88-app-features-benefits__comparison-table {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-tr88-app-features-benefits__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-tr88-app-features-benefits__hero-section,
  .page-resources-tr88-app-features-benefits__features-section,
  .page-resources-tr88-app-features-benefits__benefits-section,
  .page-resources-tr88-app-features-benefits__download-section,
  .page-resources-tr88-app-features-benefits__comparison-section,
  .page-resources-tr88-app-features-benefits__faq-section,
  .page-resources-tr88-app-features-benefits__conclusion-section {
    padding: 60px 0;
  }

  .page-resources-tr88-app-features-benefits__container {
    padding: 0 15px;
  }

  /* Mobile responsive for images */
  .page-resources-tr88-app-features-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive for videos */
  .page-resources-tr88-app-features-benefits video,
  .page-resources-tr88-app-features-benefits__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-tr88-app-features-benefits__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-resources-tr88-app-features-benefits__cta-button,
  .page-resources-tr88-app-features-benefits__btn-primary,
  .page-resources-tr88-app-features-benefits__btn-secondary,
  .page-resources-tr88-app-features-benefits a[class*="button"],
  .page-resources-tr88-app-features-benefits a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-tr88-app-features-benefits__cta-buttons,
  .page-resources-tr88-app-features-benefits__button-group,
  .page-resources-tr88-app-features-benefits__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-tr88-app-features-benefits__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Fixed header offset for video section if it's the first */
  }
}