/* style/resources-e88-troubleshooting.css */

:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --accent-color: #32CD32;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #1a2a46;
  --border-color: #e0e0e0;
}

.page-resources-e88-troubleshooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

.page-resources-e88-troubleshooting__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-resources-e88-troubleshooting__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-resources-e88-troubleshooting__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__section-title .highlight {
  color: var(--secondary-color);
}

.page-resources-e88-troubleshooting__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

/* Hero Banner */
.page-resources-e88-troubleshooting__hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6b 100%);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.page-resources-e88-troubleshooting__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__hero-title .highlight {
  color: var(--secondary-color);
}

.page-resources-e88-troubleshooting__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-e88-troubleshooting__cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-e88-troubleshooting__cta-button:hover {
  background-color: #28a745;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Introduction */
.page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__text-content {
  flex: 2;
  font-size: 17px;
}

.page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__text-content p {
  margin-bottom: 15px;
}

.page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__image-content {
  flex: 1;
  text-align: center;
}

.page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Guide */
.page-resources-e88-troubleshooting__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-resources-e88-troubleshooting__step {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-e88-troubleshooting__step:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-e88-troubleshooting__step-title {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__step p {
  flex: 2;
  font-size: 16px;
}

.page-resources-e88-troubleshooting__image-step {
  flex: 1;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-resources-e88-troubleshooting__tips {
  background-color: #eaf7f4;
  border-left: 5px solid var(--accent-color);
  padding: 25px 30px;
  margin-top: 50px;
  border-radius: 8px;
}

.page-resources-e88-troubleshooting__tips-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__tips ul {
  list-style-type: disc;
  padding-left: 25px;
}

.page-resources-e88-troubleshooting__tips li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-resources-e88-troubleshooting__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Troubleshooting */
.page-resources-e88-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-e88-troubleshooting__card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-e88-troubleshooting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-e88-troubleshooting__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__card p {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-e88-troubleshooting__card-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-resources-e88-troubleshooting__card-link:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Security */
.page-resources-e88-troubleshooting__security {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-e88-troubleshooting__security .page-resources-e88-troubleshooting__section-title {
  color: var(--text-light);
}

.page-resources-e88-troubleshooting__security .page-resources-e88-troubleshooting__section-description {
  color: #ccc;
}

.page-resources-e88-troubleshooting__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-e88-troubleshooting__feature-item {
  background-color: #1a2a46;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-e88-troubleshooting__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-e88-troubleshooting__feature-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__feature-item p {
  font-size: 15px;
  color: #e0e0e0;
}

/* Devices */
.page-resources-e88-troubleshooting__device-options {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-e88-troubleshooting__device-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 450px;
  flex: 1 1 45%;
}

.page-resources-e88-troubleshooting__device-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-e88-troubleshooting__device-title {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__device-card p {
  font-size: 16px;
  margin-bottom: 25px;
}

.page-resources-e88-troubleshooting__device-button {
  padding: 12px 30px;
  font-size: 16px;
}

/* Benefits */
.page-resources-e88-troubleshooting__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-e88-troubleshooting__benefit-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-e88-troubleshooting__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-e88-troubleshooting__benefit-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-e88-troubleshooting__benefit-item p {
  font-size: 15px;
  color: #555;
}

/* FAQ */
.page-resources-e88-troubleshooting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--text-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 19px;
  color: var(--primary-color);
  font-weight: bold;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #dc3545; /* Red for close */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #444;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Enough to contain content */
  padding: 15px 25px 25px 25px;
  background-color: #f9f9f9;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact CTA */
.page-resources-e88-troubleshooting__contact-cta {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  padding: 80px 0;
}

.page-resources-e88-troubleshooting__contact-content .page-resources-e88-troubleshooting__section-title {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-resources-e88-troubleshooting__contact-content .page-resources-e88-troubleshooting__section-description {
  color: #333;
  margin-bottom: 40px;
}

.page-resources-e88-troubleshooting__contact-button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-e88-troubleshooting__contact-button:hover {
  background-color: #1a2a46;
  color: var(--secondary-color);
}

.page-resources-e88-troubleshooting .internal-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-e88-troubleshooting .internal-link:hover {
  color: #28a745;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-e88-troubleshooting__hero-title {
    font-size: 40px;
  }
  .page-resources-e88-troubleshooting__section-title {
    font-size: 30px;
  }
  .page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-e88-troubleshooting__introduction .page-resources-e88-troubleshooting__image-content {
    order: -1;
    margin-bottom: 30px;
  }
  .page-resources-e88-troubleshooting__step {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-e88-troubleshooting__step:nth-child(even) {
    flex-direction: column;
  }
  .page-resources-e88-troubleshooting__image-step {
    max-width: 100%;
    margin-top: 20px;
  }
  .page-resources-e88-troubleshooting__device-options {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-e88-troubleshooting__device-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-e88-troubleshooting__hero-title {
    font-size: 32px;
  }
  .page-resources-e88-troubleshooting__hero-description {
    font-size: 18px;
  }
  .page-resources-e88-troubleshooting__section-title {
    font-size: 26px;
  }
  .page-resources-e88-troubleshooting__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-resources-e88-troubleshooting__step-title {
    font-size: 24px;
  }
  .page-resources-e88-troubleshooting__card-title {
    font-size: 20px;
  }
  .page-resources-e88-troubleshooting__feature-title, .page-resources-e88-troubleshooting__benefit-title {
    font-size: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 17px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-e88-troubleshooting__hero-title {
    font-size: 28px;
  }
  .page-resources-e88-troubleshooting__section-title {
    font-size: 22px;
  }
  .page-resources-e88-troubleshooting__hero-description {
    font-size: 16px;
  }
  .page-resources-e88-troubleshooting__section {
    padding: 40px 0;
  }
  .page-resources-e88-troubleshooting__step {
    padding: 20px;
  }
  .page-resources-e88-troubleshooting__card, .page-resources-e88-troubleshooting__feature-item, .page-resources-e88-troubleshooting__benefit-item {
    padding: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
}