/* 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, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  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::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

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

.page-download-center-troubleshooting__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-download-center-troubleshooting__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-download-center-troubleshooting__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-download-center-troubleshooting__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-download-center-troubleshooting__cta-button--secondary:hover {
  background-color: #002244;
  color: #ffe066;
  transform: translateY(-3px);
}

.page-download-center-troubleshooting__cta-button--outline {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-download-center-troubleshooting__cta-button--outline:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-download-center-troubleshooting__hero-image-wrapper {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-download-center-troubleshooting__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-download-center-troubleshooting__why-tt88 {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-download-center-troubleshooting__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-download-center-troubleshooting__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-download-center-troubleshooting__feature-item:hover {
  transform: translateY(-5px);
}

.page-download-center-troubleshooting__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-download-center-troubleshooting__feature-item h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-download-center-troubleshooting__feature-item p {
  color: #666;
  font-size: 0.95em;
}

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

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

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

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

.page-download-center-troubleshooting__faq-question:hover {
  background-color: #002244;
}

.page-download-center-troubleshooting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-download-center-troubleshooting__faq-item.active .page-download-center-troubleshooting__faq-question::after {
  transform: rotate(45deg);
}

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

.page-download-center-troubleshooting__faq-item.active .page-download-center-troubleshooting__faq-answer {
  max-height: 500px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-download-center-troubleshooting__faq-answer p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1em;
}

.page-download-center-troubleshooting__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-download-center-troubleshooting__contact-support {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #f0f5fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-download-center-troubleshooting__contact-support p {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-download-center-troubleshooting__final-cta {
  padding: 80px 0;
  background: linear-gradient(to right, #003366, #1a4d80);
  color: #fff;
  text-align: center;
}

.page-download-center-troubleshooting__final-cta .page-download-center-troubleshooting__section-title {
  color: #FFCC00;
}

.page-download-center-troubleshooting__final-cta .page-download-center-troubleshooting__text-content {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-download-center-troubleshooting__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-text {
  color: #FFCC00;
}

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

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

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

  .page-download-center-troubleshooting__features-grid {
    grid-template-columns: 1fr;
  }

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

  .page-download-center-troubleshooting__faq-answer {
    padding: 15px 20px;
  }

  .page-download-center-troubleshooting__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-download-center-troubleshooting__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@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__section-title {
    font-size: 1.8em;
  }

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

  .page-download-center-troubleshooting__faq-answer {
    padding: 12px 15px;
  }

  .page-download-center-troubleshooting__contact-support {
    padding: 30px 20px;
  }

  .page-download-center-troubleshooting__contact-support p {
    font-size: 1em;
  }
}