.page-download-center-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  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, #0A192F 0%, #364966 100%); /* Gradient for hero section */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  position: relative;
  overflow: hidden;
}

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

.page-download-center-troubleshooting__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-download-center-troubleshooting__section {
  padding: 80px 0;
  text-align: center;
}

.page-download-center-troubleshooting__section:nth-of-type(even) {
  background-color: #1A2B42; /* Slightly lighter dark blue for alternating sections */
}

.page-download-center-troubleshooting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-download-center-troubleshooting__section-description {
  font-size: 1.1em;
  color: #C0C0C0; /* Lighter gray for descriptions */
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-download-center-troubleshooting__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

.page-download-center-troubleshooting__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-download-center-troubleshooting__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-download-center-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-download-center-troubleshooting__issue-card {
  background-color: #1A2B42; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-troubleshooting__issue-card:hover {
  transform: translateY(-5px);
  background-color: #2A3C53;
}

.page-download-center-troubleshooting__issue-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-download-center-troubleshooting__issue-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for issue titles */
  margin-bottom: 15px;
}

.page-download-center-troubleshooting__issue-text {
  color: #E0E0E0;
  font-size: 1em;
}

.page-download-center-troubleshooting__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-download-center-troubleshooting__step-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  border-left: 5px solid #FFD700;
  position: relative;
  padding-left: 70px;
}

.page-download-center-troubleshooting__step-number {
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  line-height: 1;
}

.page-download-center-troubleshooting__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-download-center-troubleshooting__step-text {
  color: #E0E0E0;
  font-size: 1em;
}

.page-download-center-troubleshooting__image-section {
  margin-top: 60px;
  background-color: #1A2B42;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-download-center-troubleshooting__image-caption {
  font-style: italic;
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-download-center-troubleshooting__safety-tips {
  background-color: #0A192F;
}

.page-download-center-troubleshooting__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: left;
}

.page-download-center-troubleshooting__list li {
  background-color: #1A2B42;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  color: #E0E0E0;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-center-troubleshooting__list-highlight {
  color: #FFD700;
}

.page-download-center-troubleshooting__safety-image {
  max-width: 400px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.page-download-center-troubleshooting__faq-item {
  background-color: #1A2B42;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-troubleshooting__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-troubleshooting__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-download-center-troubleshooting__faq-answer {
  color: #E0E0E0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.page-download-center-troubleshooting__contact-cta {
  background-color: #0A192F;
  padding-bottom: 100px;
}

.page-download-center-troubleshooting__cta-buttons {
  margin-top: 40px;
}

.page-download-center-troubleshooting__support-image {
  max-width: 500px;
  height: auto;
  margin-top: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

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

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

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

  .page-download-center-troubleshooting__grid,
  .page-download-center-troubleshooting__steps {
    grid-template-columns: 1fr;
  }

  .page-download-center-troubleshooting__step-item {
    padding-left: 20px;
    padding-top: 60px;
  }

  .page-download-center-troubleshooting__step-number {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

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

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

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

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

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

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

  .page-download-center-troubleshooting__issue-card, .page-download-center-troubleshooting__step-item {
    padding: 20px;
  }
}