/* style/download-center-troubleshooting.css */
.page-download-center-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0d123d; /* A darker shade of main color for overall background */
  line-height: 1.6;
}

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

.page-download-center-troubleshooting__hero-section {
  background: linear-gradient(135deg, #1A237E, #0d123d);
  padding: 80px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-download-center-troubleshooting__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-download-center-troubleshooting__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-download-center-troubleshooting__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A237E; /* Dark blue for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-download-center-troubleshooting__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-download-center-troubleshooting__content-section {
  padding: 60px 0;
  background-color: #1A237E; /* Main dark blue for content sections */
  color: #F8F8F8;
}

.page-download-center-troubleshooting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-download-center-troubleshooting__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-download-center-troubleshooting__sub-section-subtitle {
  font-size: 1.4em;
  color: #E0E0E0; /* Light gray for sub-section subtitles */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-download-center-troubleshooting__list,
.page-download-center-troubleshooting__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-download-center-troubleshooting__ordered-list {
  list-style-type: decimal;
}

.page-download-center-troubleshooting__list li,
.page-download-center-troubleshooting__ordered-list li {
  margin-bottom: 10px;
  color: #F8F8F8;
}

.page-download-center-troubleshooting__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-troubleshooting__faq-accordion {
  margin-top: 40px;
}

.page-download-center-troubleshooting__faq-item {
  background-color: #2c388d; /* A slightly lighter dark blue for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-center-troubleshooting__faq-question {
  width: 100%;
  background-color: #3f4c9f; /* A medium dark blue for FAQ question button */
  color: #FFD700; /* Gold for FAQ question text */
  padding: 18px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-download-center-troubleshooting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-download-center-troubleshooting__faq-question:hover {
  background-color: #4a58b0;
}

.page-download-center-troubleshooting__faq-answer {
  padding: 0 25px;
  background-color: #2c388d;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download-center-troubleshooting__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-download-center-troubleshooting__faq-answer p {
  color: #F8F8F8;
  margin-bottom: 10px;
}

.page-download-center-troubleshooting__link-inline {
  color: #FFD700; /* Gold for inline links */
  text-decoration: underline;
  font-weight: bold;
}

.page-download-center-troubleshooting__link-inline:hover {
  color: #e5c100;
}

.page-download-center-troubleshooting__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-download-center-troubleshooting__cta-button--secondary {
  background-color: #FFD700;
  color: #1A237E;
  margin-right: 20px;
}

.page-download-center-troubleshooting__cta-button--secondary:hover {
  background-color: #e5c100;
}

.page-download-center-troubleshooting__text-link {
  color: #FFD700;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-download-center-troubleshooting__text-link:hover {
  color: #e5c100;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-download-center-troubleshooting__main-title {
    font-size: 2.5em;
  }

  .page-download-center-troubleshooting__subtitle {
    font-size: 1.1em;
  }

  .page-download-center-troubleshooting__section-title {
    font-size: 2em;
  }

  .page-download-center-troubleshooting__sub-section-title {
    font-size: 1.5em;
  }

  .page-download-center-troubleshooting__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-center-troubleshooting__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-download-center-troubleshooting__faq-answer.active {
    padding: 10px 20px;
  }

  .page-download-center-troubleshooting__cta-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-download-center-troubleshooting__cta-button--secondary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-download-center-troubleshooting__main-title {
    font-size: 2em;
  }

  .page-download-center-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-download-center-troubleshooting__sub-section-title {
    font-size: 1.3em;
  }

  .page-download-center-troubleshooting__cta-button {
    width: 100%;
    max-width: 280px;
  }

  .page-download-center-troubleshooting__text-link {
    font-size: 1em;
  }
}