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

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

.page-register-login-troubleshooting__hero {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-register-login-troubleshooting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-register-login-troubleshooting__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF; /* Ensures contrast on the gradient background */
}

.page-register-login-troubleshooting__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-register-login-troubleshooting__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-register-login-troubleshooting__button--primary {
  background-color: #FFD700;
  color: #000080; /* Dark text for contrast on gold button */
}

.page-register-login-troubleshooting__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-troubleshooting__button--secondary {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 0 10px;
}

.page-register-login-troubleshooting__button--secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
}

.page-register-login-troubleshooting__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
  z-index: 1;
}

.page-register-login-troubleshooting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

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

.page-register-login-troubleshooting__section:nth-of-type(even) {
  background-color: #F0F0F0;
}

.page-register-login-troubleshooting__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-register-login-troubleshooting__issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register-login-troubleshooting__issue-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.page-register-login-troubleshooting__issue-card-title {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register-login-troubleshooting__issue-card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-register-login-troubleshooting__solution-steps h4 {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register-login-troubleshooting__solution-steps ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #444444;
}

.page-register-login-troubleshooting__solution-steps li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-register-login-troubleshooting__issue-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-register-login-troubleshooting__tips-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-register-login-troubleshooting__tips-list li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: #333333;
  display: flex;
  align-items: center;
}

.page-register-login-troubleshooting__tips-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-register-login-troubleshooting__tip-highlight {
  color: #000080;
}

.page-register-login-troubleshooting__tips-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login-troubleshooting__contact-methods {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-register-login-troubleshooting__contact-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login-troubleshooting__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register-login-troubleshooting__faq-question {
  font-size: 1.3em;
  color: #000080;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register-login-troubleshooting__faq-answer {
  font-size: 1em;
  color: #444444;
}

@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__issue-grid {
    grid-template-columns: 1fr;
  }

  .page-register-login-troubleshooting__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-register-login-troubleshooting__contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .page-register-login-troubleshooting__button--secondary {
    margin: 10px 0;
  }
}

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

  .page-register-login-troubleshooting__title {
    font-size: 2em;
  }

  .page-register-login-troubleshooting__subtitle {
    font-size: 0.9em;
  }

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

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

  .page-register-login-troubleshooting__issue-card-title {
    font-size: 1.4em;
  }

  .page-register-login-troubleshooting__faq-question {
    font-size: 1.1em;
  }
}