/* style/resources-888tong-platform-analysis.css */
.page-resources-888tong-platform-analysis {
  font-family: 'Arial', sans-serif;
  color: #1A1A1A; /* Dark text for light background */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for overall page */
}

.page-resources-888tong-platform-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-888tong-platform-analysis__hero {
  background: linear-gradient(135deg, #FFD700 0%, #1A1A1A 100%); /* Gold to Dark gradient */
  color: #FFFFFF; /* White text on dark/gold background */
  padding: 100px 0;
  text-align: center;
}

.page-resources-888tong-platform-analysis__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for hero title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-888tong-platform-analysis__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0; /* Slightly lighter white for subtitle */
}

.page-resources-888tong-platform-analysis__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-888tong-platform-analysis__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent; /* Default transparent border */
}

.page-resources-888tong-platform-analysis__button--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A1A1A; /* Dark text on gold */
  border-color: #FFD700;
}

.page-resources-888tong-platform-analysis__button--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #000000; /* Black text on hover */
}

.page-resources-888tong-platform-analysis__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700; /* Gold border */
}

.page-resources-888tong-platform-analysis__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A; /* Dark text on gold hover */
}

.page-resources-888tong-platform-analysis__section {
  padding: 60px 0;
  text-align: left;
}

.page-resources-888tong-platform-analysis__section:nth-of-type(even) {
  background-color: #ededed; /* Slightly darker background for alternating sections */
}

.page-resources-888tong-platform-analysis__heading {
  font-size: 2.2em;
  color: #1A1A1A; /* Dark heading */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-888tong-platform-analysis__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-resources-888tong-platform-analysis__subheading {
  font-size: 1.6em;
  color: #FFD700; /* Gold subheading */
  margin-bottom: 15px;
}

.page-resources-888tong-platform-analysis__image {
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-888tong-platform-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-888tong-platform-analysis__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-resources-888tong-platform-analysis__feature-item p {
  color: #444444;
}

.page-resources-888tong-platform-analysis__app-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-888tong-platform-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-888tong-platform-analysis__list li {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
}

.page-resources-888tong-platform-analysis__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-resources-888tong-platform-analysis__list li strong {
  color: #1A1A1A;
}

.page-resources-888tong-platform-analysis__conclusion .page-resources-888tong-platform-analysis__call-to-action {
  margin-top: 50px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-888tong-platform-analysis__hero-title {
    font-size: 2em;
  }

  .page-resources-888tong-platform-analysis__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-888tong-platform-analysis__heading {
    font-size: 1.8em;
  }

  .page-resources-888tong-platform-analysis__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-888tong-platform-analysis__button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-888tong-platform-analysis__hero-actions, .page-resources-888tong-platform-analysis__app-actions {
    flex-direction: column;
    align-items: center;
  }
}