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

.page-registration-login-login-troubleshooting__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-registration-login-login-troubleshooting__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-registration-login-login-troubleshooting__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
  line-height: 1.2;
}

.page-registration-login-login-troubleshooting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-login-login-troubleshooting__hero-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-login-login-troubleshooting__hero-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-registration-login-login-troubleshooting__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.page-registration-login-login-troubleshooting__hero-image {
  max-width: 600px;
  height: auto;
  object-fit: contain;
  transform: translateX(10%) translateY(10%);
}

.page-registration-login-login-troubleshooting__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-registration-login-login-troubleshooting__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-registration-login-login-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-registration-login-login-troubleshooting__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-registration-login-login-troubleshooting__common-issues {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

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

.page-registration-login-login-troubleshooting__issue-card {
  background-color: #f0f8ff;
  border-left: 5px solid #003366;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-registration-login-login-troubleshooting__issue-card:hover {
  transform: translateY(-5px);
}

.page-registration-login-login-troubleshooting__issue-card-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-registration-login-login-troubleshooting__issue-card p {
  color: #666;
  font-size: 0.95em;
}

.page-registration-login-login-troubleshooting__troubleshooting-guide {
  background-color: #f8f9fa;
}

.page-registration-login-login-troubleshooting__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-registration-login-login-troubleshooting__step-card {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid #FFCC00;
}

.page-registration-login-login-troubleshooting__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-registration-login-login-troubleshooting__step-card p {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-registration-login-login-troubleshooting__step-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-top: 15px;
  border-radius: 5px;
}

.page-registration-login-login-troubleshooting__faq {
  background-color: #e6f2ff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-registration-login-login-troubleshooting__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-registration-login-login-troubleshooting__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFCC00;
}

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

.page-registration-login-login-troubleshooting__faq-answer {
  color: #555;
  font-size: 0.95em;
}

.page-registration-login-login-troubleshooting__contact-support {
  text-align: center;
}

.page-registration-login-login-troubleshooting__contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-login-login-troubleshooting__channel-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-registration-login-login-troubleshooting__channel-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-registration-login-login-troubleshooting__channel-card p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-registration-login-login-troubleshooting__channel-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-registration-login-login-troubleshooting__channel-button:hover {
  background-color: #004d99;
}

.page-registration-login-login-troubleshooting__contact-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-login-login-troubleshooting__security-tips {
  background-color: #f0faff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-registration-login-login-troubleshooting__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-registration-login-login-troubleshooting__security-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFCC00;
  font-size: 1.05em;
  color: #444;
}

.page-registration-login-login-troubleshooting__security-list li strong {
  color: #003366;
}

.page-registration-login-login-troubleshooting__security-image {
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-login-login-troubleshooting__cta-section {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-registration-login-login-troubleshooting__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-registration-login-login-troubleshooting__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-registration-login-login-troubleshooting__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-registration-login-login-troubleshooting__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-login-login-troubleshooting__cta-button--primary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
}

.page-registration-login-login-troubleshooting__cta-button--primary:hover {
  background-color: #004080;
  border-color: #004080;
  transform: translateY(-3px);
}

.page-registration-login-login-troubleshooting__cta-button--secondary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-registration-login-login-troubleshooting__cta-button--secondary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
}

.page-registration-login-login-troubleshooting__cta-image {
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-registration-login-login-troubleshooting__hero-title {
    font-size: 2.5em;
  }
  .page-registration-login-login-troubleshooting__hero-description {
    font-size: 1.1em;
  }
  .page-registration-login-login-troubleshooting__section-title {
    font-size: 2em;
  }
  .page-registration-login-login-troubleshooting__issue-grid,
  .page-registration-login-login-troubleshooting__steps-container,
  .page-registration-login-login-troubleshooting__contact-channels {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-registration-login-login-troubleshooting__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-registration-login-login-troubleshooting__hero {
    padding: 60px 15px;
  }
  .page-registration-login-login-troubleshooting__hero-title {
    font-size: 2em;
  }
  .page-registration-login-login-troubleshooting__hero-description {
    font-size: 1em;
  }
  .page-registration-login-login-troubleshooting__section {
    padding: 40px 15px;
  }
  .page-registration-login-login-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-registration-login-login-troubleshooting__section-intro {
    font-size: 0.95em;
  }
  .page-registration-login-login-troubleshooting__issue-card-title,
  .page-registration-login-login-troubleshooting__step-title,
  .page-registration-login-login-troubleshooting__faq-question,
  .page-registration-login-login-troubleshooting__channel-title {
    font-size: 1.2em;
  }
  .page-registration-login-login-troubleshooting__cta-title {
    font-size: 1.8em;
  }
  .page-registration-login-login-troubleshooting__cta-description {
    font-size: 1em;
  }
  .page-registration-login-login-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-registration-login-login-troubleshooting__hero-image-wrapper {
    display: none; /* Hide decorative image on smaller screens */
  }
}

@media (max-width: 480px) {
  .page-registration-login-login-troubleshooting__hero-title {
    font-size: 1.8em;
  }
  .page-registration-login-login-troubleshooting__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-login-login-troubleshooting__section-title {
    font-size: 1.5em;
  }
  .page-registration-login-login-troubleshooting__cta-title {
    font-size: 1.5em;
  }
  .page-registration-login-login-troubleshooting__cta-button {
    width: 100%;
    max-width: 280px;
  }
}