.page-download-center-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for good contrast on light backgrounds */
  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, #003366 0%, #004488 100%); /* Deeper blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-troubleshooting__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFCC00; /* Golden yellow for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-troubleshooting__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-download-center-troubleshooting__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-download-center-troubleshooting__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-download-center-troubleshooting__btn--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue */
}

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

.page-download-center-troubleshooting__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Golden yellow */
  border: 2px solid #FFCC00;
}

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

.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.2;
  z-index: 0;
}

.page-download-center-troubleshooting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.page-download-center-troubleshooting__section-title {
  font-size: 2.2em;
  color: #003366; /* Deep blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-download-center-troubleshooting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Golden yellow */
  border-radius: 2px;
}

.page-download-center-troubleshooting__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-download-center-troubleshooting__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.page-download-center-troubleshooting__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.page-download-center-troubleshooting__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-download-center-troubleshooting__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-download-center-troubleshooting__accordion-header {
  font-size: 1.25em;
  color: #003366;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff; /* Lighter blue background for headers */
  transition: background-color 0.3s ease;
}

.page-download-center-troubleshooting__accordion-header:hover {
  background-color: #e6f2ff;
}

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

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

.page-download-center-troubleshooting__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #ffffff;
  color: #4a4a4a;
}

.page-download-center-troubleshooting__accordion-content.open {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 20px 25px;
}

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

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

.page-download-center-troubleshooting__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-download-center-troubleshooting__inline-link:hover {
  color: #FFCC00;
}

.page-download-center-troubleshooting__contact-info {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #e0f2f7; /* Light blue background */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.1);
}

.page-download-center-troubleshooting__contact-info p {
  font-size: 1.15em;
  color: #003366;
  margin-bottom: 20px;
}

.page-download-center-troubleshooting__btn--contact {
  background-color: #003366; /* Deep blue */
  color: #ffffff;
  padding: 15px 35px;
  margin-top: 20px;
}

.page-download-center-troubleshooting__btn--contact:hover {
  background-color: #004488;
}

.page-download-center-troubleshooting__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(90deg, #003366, #004488);
  border-radius: 10px;
  color: #ffffff;
}

.page-download-center-troubleshooting__final-cta .page-download-center-troubleshooting__btn {
  margin: 0 10px;
}

.page-download-center-troubleshooting__final-cta .page-download-center-troubleshooting__btn--secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.page-download-center-troubleshooting__final-cta .page-download-center-troubleshooting__btn--secondary:hover {
  background-color: #ffffff;
  color: #003366;
}

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

.page-download-center-troubleshooting__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-download-center-troubleshooting__floating-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-troubleshooting__floating-promo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #003366;
  font-weight: bold;
}

.page-download-center-troubleshooting__promo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

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

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

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

  .page-download-center-troubleshooting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-download-center-troubleshooting__btn {
    width: 80%;
    margin: 0 auto;
  }

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

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

  .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__floating-promo {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
  }

  .page-download-center-troubleshooting__promo-icon {
    width: 25px;
    height: 25px;
  }

  .page-download-center-troubleshooting__promo-text {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-download-center-troubleshooting__hero {
    padding: 60px 0;
  }

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

  .page-download-center-troubleshooting__hero-subtitle {
    font-size: 0.9em;
  }

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

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

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