/* style/platform-access-troubleshooting.css */
.page-platform-access-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-platform-access-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-platform-access-troubleshooting__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-platform-access-troubleshooting__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-platform-access-troubleshooting__hero-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-platform-access-troubleshooting__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-platform-access-troubleshooting__section:last-of-type {
  border-bottom: none;
}

.page-platform-access-troubleshooting__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-platform-access-troubleshooting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-platform-access-troubleshooting__introduction p,
.page-platform-access-troubleshooting__common-issues p,
.page-platform-access-troubleshooting__advanced-tips p,
.page-platform-access-troubleshooting__faq p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-platform-access-troubleshooting__issue-card {
  background-color: #2A313C;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-access-troubleshooting__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-platform-access-troubleshooting__issue-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for issue titles */
  margin-bottom: 15px;
}

.page-platform-access-troubleshooting__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-platform-access-troubleshooting__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-platform-access-troubleshooting__list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-platform-access-troubleshooting__list ul {
  list-style: disc;
  padding-left: 40px;
  margin-top: 10px;
}

.page-platform-access-troubleshooting__list ul li {
  padding-left: 0;
}

.page-platform-access-troubleshooting__list ul li::before {
  content: '';
}

.page-platform-access-troubleshooting__btn-primary,
.page-platform-access-troubleshooting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-platform-access-troubleshooting__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C;
}

.page-platform-access-troubleshooting__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-platform-access-troubleshooting__btn-secondary {
  background-color: #3A475A; /* Darker blue button */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-platform-access-troubleshooting__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-platform-access-troubleshooting__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-platform-access-troubleshooting__call-to-action-text {
  text-align: center;
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-platform-access-troubleshooting__final-cta {
  text-align: center;
  background-color: #2A313C;
  padding: 80px 0;
}

.page-platform-access-troubleshooting__final-cta p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-platform-access-troubleshooting__faq-item {
  background-color: #2A313C;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-platform-access-troubleshooting__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-platform-access-troubleshooting__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-platform-access-troubleshooting__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-platform-access-troubleshooting__faq-answer {
  color: #B0B0B0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-left: 10px;
}

.page-platform-access-troubleshooting__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Links within text */
.page-platform-access-troubleshooting a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-platform-access-troubleshooting a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-platform-access-troubleshooting__hero-title {
    font-size: 2em;
  }
  .page-platform-access-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-platform-access-troubleshooting__issue-title {
    font-size: 1.5em;
  }
  .page-platform-access-troubleshooting__btn-primary,
  .page-platform-access-troubleshooting__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    margin: 8px 0;
    display: block;
  }
  .page-platform-access-troubleshooting__hero {
    padding: 60px 0;
  }
  .page-platform-access-troubleshooting__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-platform-access-troubleshooting__hero-title {
    font-size: 1.6em;
  }
  .page-platform-access-troubleshooting__section-title {
    font-size: 1.5em;
  }
  .page-platform-access-troubleshooting__issue-title {
    font-size: 1.3em;
  }
  .page-platform-access-troubleshooting__hero-subtitle {
    font-size: 1em;
  }
  .page-platform-access-troubleshooting__list li {
    padding-left: 25px;
  }
}