.page-download-center-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

.page-download-center-troubleshooting__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4f91 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-download-center-troubleshooting__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-download-center-troubleshooting__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
  line-height: 1.2;
}

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

.page-download-center-troubleshooting__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 300px;
  height: 300px;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-troubleshooting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(15deg);
}

.page-download-center-troubleshooting__section {
  padding: 60px 0;
}

.page-download-center-troubleshooting__section--dark {
  background-color: #003366;
  color: #fff;
}

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

.page-download-center-troubleshooting__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-download-center-troubleshooting__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

/* Buttons */
.page-download-center-troubleshooting__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-download-center-troubleshooting__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center-troubleshooting__button--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download-center-troubleshooting__button--secondary {
  background-color: #003366; /* Dark blue */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-download-center-troubleshooting__button--secondary:hover {
  background-color: #0a4f91; /* Lighter blue */
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

/* Accordion */
.page-download-center-troubleshooting__faq-list {
  background-color: #fff;
}

.page-download-center-troubleshooting__accordion {
  margin-top: 30px;
}

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

.page-download-center-troubleshooting__accordion-header {
  background-color: #003366; /* Dark blue header */
  color: #FFD700; /* Gold text */
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-download-center-troubleshooting__accordion-header.active {
  background-color: #0a4f91; /* Slightly lighter blue when active */
}

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

.page-download-center-troubleshooting__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #fff;
  color: #333;
}

.page-download-center-troubleshooting__accordion-content.show {
  max-height: 1000px; /* Arbitrary large value to allow content to show */
  padding: 25px;
}

.page-download-center-troubleshooting__accordion-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-download-center-troubleshooting__accordion-content ul,
.page-download-center-troubleshooting__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-download-center-troubleshooting__accordion-content li {
  margin-bottom: 8px;
}

.page-download-center-troubleshooting__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-troubleshooting__cta {
  background-color: #003366; /* Dark blue CTA background */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-download-center-troubleshooting__cta .page-download-center-troubleshooting__section-title {
  color: #FFD700; /* Gold title for CTA */
  margin-bottom: 25px;
}

.page-download-center-troubleshooting__cta p {
  font-size: 1.2em;
  margin-bottom: 35px;
  color: #e0e0e0;
}

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

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

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

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

  .page-download-center-troubleshooting__accordion-content {
    padding: 15px 20px;
  }

  .page-download-center-troubleshooting__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-download-center-troubleshooting__hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-download-center-troubleshooting__hero-image-wrapper {
    position: static;
    width: 200px;
    height: 200px;
    margin-top: 20px;
    transform: none;
    opacity: 0.2;
  }
}

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

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

  .page-download-center-troubleshooting__accordion-header {
    font-size: 1em;
  }

  .page-download-center-troubleshooting__button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}