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

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

.page-download-center-installation-troubleshooting__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-installation-troubleshooting__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-installation-troubleshooting__hero .page-download-center-installation-troubleshooting__container {
  position: relative;
  z-index: 1;
}

.page-download-center-installation-troubleshooting__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFCC00;
}

.page-download-center-installation-troubleshooting__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-installation-troubleshooting__btn-primary,
.page-download-center-installation-troubleshooting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-download-center-installation-troubleshooting__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

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

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

.page-download-center-installation-troubleshooting__introduction,
.page-download-center-installation-troubleshooting__faq-section,
.page-download-center-installation-troubleshooting__additional-tips,
.page-download-center-installation-troubleshooting__cta {
  padding: 60px 0;
}

.page-download-center-installation-troubleshooting__introduction {
  background-color: #ffffff;
  text-align: center;
}

.page-download-center-installation-troubleshooting__introduction p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-download-center-installation-troubleshooting__intro-image {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-download-center-installation-troubleshooting__section-description {
  font-size: 1.1em;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-download-center-installation-troubleshooting__faq-section {
  background-color: #eaf2f8;
}

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

.page-download-center-installation-troubleshooting__accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-download-center-installation-troubleshooting__accordion-header {
  padding: 20px 25px;
  font-size: 1.3em;
  color: #003366;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-download-center-installation-troubleshooting__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFCC00;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

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

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

.page-download-center-installation-troubleshooting__accordion-content {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #444;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-download-center-installation-troubleshooting__accordion-content.active {
  max-height: 1000px; /* Adjust as needed */
  padding: 0 25px 20px;
}

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

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

.page-download-center-installation-troubleshooting__accordion-content a {
  color: #003366;
  text-decoration: underline;
}

.page-download-center-installation-troubleshooting__accordion-content a:hover {
  color: #FFCC00;
}

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

.page-download-center-installation-troubleshooting__additional-tips {
  background-color: #ffffff;
}

.page-download-center-installation-troubleshooting__additional-tips ul {
  list-style: disc;
  margin-left: 25px;
  font-size: 1.1em;
  color: #555;
}

.page-download-center-installation-troubleshooting__additional-tips ul li {
  margin-bottom: 10px;
}

.page-download-center-installation-troubleshooting__cta {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
}

.page-download-center-installation-troubleshooting__cta .page-download-center-installation-troubleshooting__section-title {
  color: #FFCC00;
}

.page-download-center-installation-troubleshooting__cta .page-download-center-installation-troubleshooting__section-description {
  color: #e0e0e0;
  margin-bottom: 30px;
}

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

.page-download-center-installation-troubleshooting .highlight {
  color: #FFCC00;
}

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

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

  .page-download-center-installation-troubleshooting__btn-primary,
  .page-download-center-installation-troubleshooting__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

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

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

  .page-download-center-installation-troubleshooting__accordion-content {
    font-size: 0.95em;
    padding: 0 20px 15px;
  }

  .page-download-center-installation-troubleshooting__intro-image,
  .page-download-center-installation-troubleshooting__content-image {
    max-width: 90%;
  }
}

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

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

  .page-download-center-installation-troubleshooting__btn-primary,
  .page-download-center-installation-troubleshooting__btn-secondary {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

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

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

  .page-download-center-installation-troubleshooting__accordion-content {
    font-size: 0.9em;
    padding: 0 15px 10px;
  }
}