/* style/resources-troubleshoot-ae888-login.css */

:root {
  --primary-color: #FFD700; /* Gold/Yellow for highlights, from auxiliary color */
  --secondary-color: #0A192F; /* Deep Blue, from main color */
  --text-light: #ffffff; /* For dark backgrounds */
  --text-dark: #333333; /* For light backgrounds */
  --bg-dark: #000; /* Body background color */
  --bg-dark-section: #0A192F; /* Dark blue background for sections */
  --bg-light-section: #f5f5f5; /* Light grey background for sections */
  --border-color: rgba(255, 255, 255, 0.1);
}

/* Base styles for the page content, inheriting from body background */
.page-resources-troubleshoot-ae888-login {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for dark body background */
  line-height: 1.6;
  background-color: var(--bg-dark); /* Inherit from body for consistency */
}

.page-resources-troubleshoot-ae888-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-troubleshoot-ae888-login__hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
  color: var(--text-light);
  padding-top: 120px; /* Desktop: Ensure content is below fixed header, adjusted for better spacing */
}

.page-resources-troubleshoot-ae888-login__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-resources-troubleshoot-ae888-login__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-troubleshoot-ae888-login__inline-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-troubleshoot-ae888-login__inline-link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-resources-troubleshoot-ae888-login__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-troubleshoot-ae888-login__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-troubleshoot-ae888-login__cta-button:hover {
  background: #e6c200;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.page-resources-troubleshoot-ae888-login__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.page-resources-troubleshoot-ae888-login__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-resources-troubleshoot-ae888-login__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-resources-troubleshoot-ae888-login__content-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-troubleshoot-ae888-login__dark-bg {
  background-color: var(--bg-dark-section);
}

.page-resources-troubleshoot-ae888-login__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-troubleshoot-ae888-login__reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-troubleshoot-ae888-login__reason-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-resources-troubleshoot-ae888-login__reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-troubleshoot-ae888-login__reason-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-troubleshoot-ae888-login__reason-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-troubleshoot-ae888-login__reason-description {
  font-size: 1em;
  color: var(--text-light);
}

.page-resources-troubleshoot-ae888-login__solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-resources-troubleshoot-ae888-login__solution-card {
  background: #1a1a1a; /* Darker background for card on dark body */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}