.page-register-login-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-register-login-troubleshooting-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-troubleshooting-hero {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login-troubleshooting-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-register-login-troubleshooting-hero .page-register-login-troubleshooting-container {
  position: relative;
  z-index: 2;
}

.page-register-login-troubleshooting-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-login-troubleshooting-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-register-login-troubleshooting-hero-image {
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-troubleshooting-section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-register-login-troubleshooting-section:last-of-type {
  border-bottom: none;
}

.page-register-login-troubleshooting-section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-register-login-troubleshooting-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-register-login-troubleshooting-faq-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register-login-troubleshooting-faq-question {
  font-size: 1.6em;
  color: #0A2239;
  padding: 20px 30px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f2f5;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-register-login-troubleshooting-faq-question:hover {
  background-color: #e6e9ed;
}

.page-register-login-troubleshooting-faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-register-login-troubleshooting-faq-item.active .page-register-login-troubleshooting-faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register-login-troubleshooting-faq-answer {
  padding: 20px 30px;
  color: #555;
  display: none;
  background-color: #fff;
}

.page-register-login-troubleshooting-faq-item.active .page-register-login-troubleshooting-faq-answer {
  display: block;
}

.page-register-login-troubleshooting-faq-answer h4 {
  font-size: 1.3em;
  color: #0A2239;
  margin-top: 25px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.page-register-login-troubleshooting-faq-answer p {
  margin-bottom: 15px;
}

.page-register-login-troubleshooting-faq-answer ol,
.page-register-login-troubleshooting-faq-answer ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-register-login-troubleshooting-faq-answer li {
  margin-bottom: 8px;
}

.page-register-login-troubleshooting-faq-answer a {
  color: #0A2239;
  text-decoration: underline;
  font-weight: bold;
}

.page-register-login-troubleshooting-faq-answer a:hover {
  color: #FFD700;
}

.page-register-login-troubleshooting-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register-login-troubleshooting-preventative-measures {
  background-color: #f0f2f5;
}

.page-register-login-troubleshooting-list {
  list-style: disc;
  margin-left: 25px;
  padding: 0;
  color: #444;
}

.page-register-login-troubleshooting-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-register-login-troubleshooting-list li strong {
  color: #0A2239;
}

.page-register-login-troubleshooting-contact-support {
  background-color: #0A2239;
  color: #fff;
}

.page-register-login-troubleshooting-contact-support .page-register-login-troubleshooting-section-title {
  color: #FFD700;
}

.page-register-login-troubleshooting-contact-support .page-register-login-troubleshooting-section-title::after {
  background-color: #fff;
}

.page-register-login-troubleshooting-contact-support p {
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

.page-register-login-troubleshooting-contact-support .page-register-login-troubleshooting-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-register-login-troubleshooting-contact-support .page-register-login-troubleshooting-list li {
  background-color: #1a3a5a;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register-login-troubleshooting-contact-support .page-register-login-troubleshooting-list li:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-5px);
}

.page-register-login-troubleshooting-cta {
  background-color: #FFD700;
  padding: 60px 0;
  text-align: center;
  color: #0A2239;
}

.page-register-login-troubleshooting-cta-text {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-troubleshooting-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.page-register-login-troubleshooting-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-register-login-troubleshooting-button-primary {
  background-color: #0A2239;
  color: #FFD700;
  border: 2px solid #0A2239;
}

.page-register-login-troubleshooting-button-primary:hover {
  background-color: #FFD700;
  color: #0A2239;
  border-color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-troubleshooting-button-secondary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-register-login-troubleshooting-button-secondary:hover {
  background-color: #0A2239;
  color: #FFD700;
  border-color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-troubleshooting-button-tertiary {
  background-color: #fff;
  color: #0A2239;
  border: 2px solid #0A2239;
}

.page-register-login-troubleshooting-button-tertiary:hover {
  background-color: #0A2239;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

  .page-register-login-troubleshooting-subtitle {
    font-size: 1em;
  }

  .page-register-login-troubleshooting-section-title {
    font-size: 2em;
  }

  .page-register-login-troubleshooting-faq-question {
    font-size: 1.4em;
    padding: 15px 20px;
  }

  .page-register-login-troubleshooting-faq-answer {
    padding: 15px 20px;
  }

  .page-register-login-troubleshooting-cta-text {
    font-size: 1.5em;
  }

  .page-register-login-troubleshooting-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-register-login-troubleshooting-button {
    width: 90%;
    max-width: 300px;
  }

  .page-register-login-troubleshooting-contact-support .page-register-login-troubleshooting-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-register-login-troubleshooting-title {
    font-size: 2em;
  }

  .page-register-login-troubleshooting-hero {
    padding: 60px 0;
  }

  .page-register-login-troubleshooting-section {
    padding: 40px 0;
  }

  .page-register-login-troubleshooting-section-title {
    font-size: 1.8em;
  }

  .page-register-login-troubleshooting-faq-question {
    font-size: 1.2em;
  }

  .page-register-login-troubleshooting-cta-text {
    font-size: 1.2em;
  }
}