/* style/download-center-installation-troubleshooting.css */
.page-download-center-installation-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Dark blue/black background */
  line-height: 1.6;
}

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

.page-download-center-installation-troubleshooting__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A202C);
  padding: 80px 0;
  text-align: center;
  color: #1A202C; /* Dark text on bright background */
}

.page-download-center-installation-troubleshooting__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A202C; /* Dark text on bright background */
  font-weight: bold;
}

.page-download-center-installation-troubleshooting__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333333; /* Slightly lighter dark text */
}

.page-download-center-installation-troubleshooting__cta-button {
  display: inline-block;
  background-color: #1A202C; /* Dark background for button */
  color: #FFD700; /* Gold text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700; /* Gold border */
}

.page-download-center-installation-troubleshooting__cta-button:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #1A202C; /* Dark text on hover */
  border-color: #1A202C;
}

.page-download-center-installation-troubleshooting__faq-section {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-download-center-installation-troubleshooting__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold title */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-download-center-installation-troubleshooting__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #B0B0B0; /* Lighter text for intro */
}

.page-download-center-installation-troubleshooting__faq-item {
  background-color: #2A303C; /* Slightly lighter dark background for FAQ items */
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-installation-troubleshooting__faq-question {
  font-size: 1.8em;
  color: #FFD700; /* Gold question */
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3); /* Subtle gold border */
}

.page-download-center-installation-troubleshooting__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-download-center-installation-troubleshooting__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  padding-top: 15px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-download-center-installation-troubleshooting__faq-answer p {
  margin-bottom: 15px;
}

.page-download-center-installation-troubleshooting__faq-answer ul,
.page-download-center-installation-troubleshooting__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-download-center-installation-troubleshooting__faq-answer li {
  margin-bottom: 8px;
}

.page-download-center-installation-troubleshooting__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-download-center-installation-troubleshooting__inline-cta {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-download-center-installation-troubleshooting__inline-cta:hover {
  color: #FFC107; /* Slightly darker gold on hover */
  text-decoration: underline;
}

.page-download-center-installation-troubleshooting__cta-bottom {
  background-color: #1A202C;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-installation-troubleshooting__cta-bottom .page-download-center-installation-troubleshooting__section-title {
  color: #FFD700; /* Gold title */
}

.page-download-center-installation-troubleshooting__text-center {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-download-center-installation-troubleshooting__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center-installation-troubleshooting__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-download-center-installation-troubleshooting__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  border-color: #1A202C;
}

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

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

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

  .page-download-center-installation-troubleshooting__faq-question {
    font-size: 1.5em;
  }

  .page-download-center-installation-troubleshooting__faq-answer {
    font-size: 1em;
  }

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

  .page-download-center-installation-troubleshooting__button-group {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

  .page-download-center-installation-troubleshooting__faq-question {
    font-size: 1.3em;
  }

  .page-download-center-installation-troubleshooting__faq-item {
    padding: 20px;
  }
}