/* style/download-center-troubleshooting.css */
.page-download-center-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-download-center-troubleshooting__hero {
  background: linear-gradient(135deg, #1A237E, #FFC107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-troubleshooting__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff; /* Ensure high contrast */
}

.page-download-center-troubleshooting__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee; /* Slightly lighter for subtitle */
}

.page-download-center-troubleshooting__btn-download {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-download-center-troubleshooting__btn-download:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
}

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

.page-download-center-troubleshooting__section-title {
  font-size: 2.2em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
}

.page-download-center-troubleshooting__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-download-center-troubleshooting__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-download-center-troubleshooting__faq-question {
  font-size: 1.2em;
  color: #1A237E;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.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: #e0e0e0;
}

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

.page-download-center-troubleshooting__faq-answer.open {
  max-height: 500px; /* Adjust as needed, will be dynamically calculated by JS */
  padding: 15px 25px;
}

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

.page-download-center-troubleshooting__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-download-center-troubleshooting__btn-register {
  display: inline-block;
  background-color: #1A237E;
  color: #FFC107;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-download-center-troubleshooting__btn-register:hover {
  background-color: #0d125e;
  transform: translateY(-2px);
}

.page-download-center-troubleshooting__cta-section {
  background-color: #1A237E;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-troubleshooting__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFC107;
}

.page-download-center-troubleshooting__cta-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #eee;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-troubleshooting__btn-main-cta {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-download-center-troubleshooting__btn-main-cta:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
}

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

  .page-download-center-troubleshooting__subtitle,
  .page-download-center-troubleshooting__cta-text {
    font-size: 1em;
  }

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

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

  .page-download-center-troubleshooting__btn-download,
  .page-download-center-troubleshooting__btn-main-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
}