/* style/resources-6ff-access-troubleshooting.css */
.page-resources-6ff-access-troubleshooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-resources-6ff-access-troubleshooting__hero-section {
  background: linear-gradient(135deg, #1A202C, #3a475d); /* Dark gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-resources-6ff-access-troubleshooting__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E0B400; /* Accent color for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-6ff-access-troubleshooting__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e5dfd3;
}

.page-resources-6ff-access-troubleshooting__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 180, 0, 0.1);
}

.page-resources-6ff-access-troubleshooting__section:last-of-type {
  border-bottom: none;
}

.page-resources-6ff-access-troubleshooting__section-title {
  font-size: 2.2em;
  color: #E0B400; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-6ff-access-troubleshooting__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e5dfd3;
  text-align: justify;
}

.page-resources-6ff-access-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-6ff-access-troubleshooting__grid-item {
  background-color: #2a3447; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-6ff-access-troubleshooting__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-6ff-access-troubleshooting__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.5));
}

.page-resources-6ff-access-troubleshooting__item-title {
  font-size: 1.4em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-6ff-access-troubleshooting__item-description {
  font-size: 0.95em;
  color: #cbd5e0;
}

.page-resources-6ff-access-troubleshooting__ordered-list,
.page-resources-6ff-access-troubleshooting__unordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-resources-6ff-access-troubleshooting__ordered-list li {
  background-color: #2a3447;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-resources-6ff-access-troubleshooting__ordered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #E0B400;
  color: #1A202C;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-resources-6ff-access-troubleshooting__list-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-resources-6ff-access-troubleshooting__list-description {
  font-size: 1em;
  color: #e5dfd3;
  margin-bottom: 10px;
}

.page-resources-6ff-access-troubleshooting__unordered-list li {
  color: #cbd5e0;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-resources-6ff-access-troubleshooting__unordered-list li::before {
  content: '•';
  color: #E0B400;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-resources-6ff-access-troubleshooting__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  margin-right: 15px; /* Spacing for multiple buttons */
}

.page-resources-6ff-access-troubleshooting__button--primary {
  background-color: #E0B400;
  color: #1A202C;
}

.page-resources-6ff-access-troubleshooting__button--primary:hover {
  background-color: #ffc800;
  transform: translateY(-2px);
}

.page-resources-6ff-access-troubleshooting__button--secondary {
  background-color: #2a3447;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-resources-6ff-access-troubleshooting__button--secondary:hover {
  background-color: #E0B400;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-resources-6ff-access-troubleshooting__cta-group {
  text-align: center;
  margin-top: 40px;
}

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

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

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

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

.page-resources-6ff-access-troubleshooting__faq-answer {
  font-size: 1em;
  color: #cbd5e0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(224, 180, 0, 0.1);
  margin-top: 10px;
}

.page-resources-6ff-access-troubleshooting__faq-answer.active {
  display: block;
}

@media (max-width: 768px) {
  .page-resources-6ff-access-troubleshooting__main-title {
    font-size: 2.2em;
  }

  .page-resources-6ff-access-troubleshooting__subtitle {
    font-size: 1em;
  }

  .page-resources-6ff-access-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-resources-6ff-access-troubleshooting__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-6ff-access-troubleshooting__button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-resources-6ff-access-troubleshooting__cta-group .page-resources-6ff-access-troubleshooting__button:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-6ff-access-troubleshooting__main-title {
    font-size: 1.8em;
  }

  .page-resources-6ff-access-troubleshooting__section-title {
    font-size: 1.5em;
  }

  .page-resources-6ff-access-troubleshooting__ordered-list li {
    padding-left: 50px;
  }

  .page-resources-6ff-access-troubleshooting__ordered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 10px;
    top: 15px;
  }

  .page-resources-6ff-access-troubleshooting__list-title {
    font-size: 1.3em;
  }
}