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

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

.page-register-login-troubleshooting__hero {
  position: relative;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-register-login-troubleshooting__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  width: 300px;
  height: auto;
  z-index: 0;
}

.page-register-login-troubleshooting__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-register-login-troubleshooting__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e9ecef;
  position: relative;
  z-index: 1;
}

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

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

.page-register-login-troubleshooting__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
}

.page-register-login-troubleshooting__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register-login-troubleshooting__issue-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-register-login-troubleshooting__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-register-login-troubleshooting__issue-card-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-register-login-troubleshooting__issue-card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-register-login-troubleshooting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
  white-space: nowrap;
}

.page-register-login-troubleshooting__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

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

.page-register-login-troubleshooting__btn--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-register-login-troubleshooting__btn--secondary:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-register-login-troubleshooting__app-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-register-login-troubleshooting__step-card {
  background-color: #ffffff;
  border-left: 5px solid #007bff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register-login-troubleshooting__step-title {
  font-size: 1.25em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-register-login-troubleshooting__step-text {
  color: #666;
}

.page-register-login-troubleshooting__app-image {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register-login-troubleshooting__contact-methods {
  background-color: #f1f1f1;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
}

.page-register-login-troubleshooting__contact-methods p {
  margin-bottom: 15px;
  color: #444;
}

.page-register-login-troubleshooting__contact-methods p:last-child {
  margin-bottom: 0;
}

.page-register-login-troubleshooting__contact-image {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register-login-troubleshooting__faq-items {
  margin-top: 30px;
}

.page-register-login-troubleshooting__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register-login-troubleshooting__faq-question {
  padding: 18px 25px;
  font-size: 1.15em;
  color: #333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-register-login-troubleshooting__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #007bff;
  transition: transform 0.3s ease;
}

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

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

.page-register-login-troubleshooting__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-register-login-troubleshooting__faq-answer p {
  margin-bottom: 10px;
  color: #555;
}

.page-register-login-troubleshooting__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-register-login-troubleshooting__cta {
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 40px;
}

.page-register-login-troubleshooting__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ffc107;
}

.page-register-login-troubleshooting__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e9ecef;
}

.page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-register-login-troubleshooting__hero-title {
    font-size: 2.2em;
  }
  .page-register-login-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-register-login-troubleshooting__issue-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-register-login-troubleshooting__hero {
    padding: 80px 0 120px 0;
  }
  .page-register-login-troubleshooting__hero-image {
    width: 200px;
    right: 10px;
    bottom: 10px;
  }
  .page-register-login-troubleshooting__hero-title {
    font-size: 2em;
  }
  .page-register-login-troubleshooting__hero-subtitle {
    font-size: 1em;
  }
  .page-register-login-troubleshooting__section {
    padding: 40px 0;
  }
  .page-register-login-troubleshooting__section-title {
    font-size: 1.6em;
  }
  .page-register-login-troubleshooting__section-description {
    font-size: 0.95em;
  }
  .page-register-login-troubleshooting__issue-grid {
    grid-template-columns: 1fr;
  }
  .page-register-login-troubleshooting__app-image,
  .page-register-login-troubleshooting__contact-image {
    max-width: 100%;
  }
  .page-register-login-troubleshooting__cta {
    padding: 60px 0;
  }
  .page-register-login-troubleshooting__cta-title {
    font-size: 2em;
  }
  .page-register-login-troubleshooting__cta-description {
    font-size: 1em;
  }
  .page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-register-login-troubleshooting__hero {
    padding: 60px 0 100px 0;
  }
  .page-register-login-troubleshooting__hero-image {
    width: 150px;
  }
  .page-register-login-troubleshooting__hero-title {
    font-size: 1.8em;
  }
  .page-register-login-troubleshooting__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-register-login-troubleshooting__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-register-login-troubleshooting__faq-answer {
    padding: 10px 20px;
  }
}