/* style/resources-mm99-login-troubleshooting.css */

/* Variables */
:root {
  --mm99-primary-color: #0A1931;
  --mm99-accent-color: #FFD700;
  --mm99-text-light: #F5F5F5;
  --mm99-text-dark: #333333;
  --mm99-background-light: #FFFFFF;
  --mm99-background-dark: #1A2A4A;
  --mm99-border-color: #E0E0E0;
}

.page-resources-mm99-login-troubleshooting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--mm99-text-dark);
  background-color: var(--mm99-background-light);
}

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

.page-resources-mm99-login-troubleshooting__article-width {
  max-width: 800px;
}

.page-resources-mm99-login-troubleshooting__hero {
  background: linear-gradient(135deg, var(--mm99-primary-color) 0%, #1A2A4A 100%);
  color: var(--mm99-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-resources-mm99-login-troubleshooting__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--mm99-accent-color);
  line-height: 1.2;
}

.page-resources-mm99-login-troubleshooting__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-resources-mm99-login-troubleshooting__content-section {
  padding: 60px 0;
  background-color: var(--mm99-background-light);
}

.page-resources-mm99-login-troubleshooting__heading {
  font-size: 2.2em;
  color: var(--mm99-primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid var(--mm99-accent-color);
  padding-bottom: 10px;
}

.page-resources-mm99-login-troubleshooting__sub-heading {
  font-size: 1.8em;
  color: var(--mm99-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-mm99-login-troubleshooting__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--mm99-text-dark);
}

.page-resources-mm99-login-troubleshooting__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--mm99-text-dark);
}

.page-resources-mm99-login-troubleshooting__list li {
  margin-bottom: 8px;
}

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

.page-resources-mm99-login-troubleshooting__button--primary {
  background-color: var(--mm99-accent-color);
  color: var(--mm99-primary-color);
}

.page-resources-mm99-login-troubleshooting__button--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-resources-mm99-login-troubleshooting__button--secondary {
  background-color: var(--mm99-primary-color);
  color: var(--mm99-text-light);
  border: 2px solid var(--mm99-accent-color);
}

.page-resources-mm99-login-troubleshooting__button--secondary:hover {
  background-color: #051020; /* Slightly darker primary */
  transform: translateY(-2px);
}

.page-resources-mm99-login-troubleshooting__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-mm99-login-troubleshooting__related-resources {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--mm99-border-color);
}

.page-resources-mm99-login-troubleshooting__related-resources .page-resources-mm99-login-troubleshooting__sub-heading {
  text-align: center;
  margin-bottom: 25px;
}

.page-resources-mm99-login-troubleshooting__related-resources .page-resources-mm99-login-troubleshooting__list {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.page-resources-mm99-login-troubleshooting__related-resources .page-resources-mm99-login-troubleshooting__list li {
  margin-bottom: 10px;
}

.page-resources-mm99-login-troubleshooting__link {
  color: var(--mm99-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-mm99-login-troubleshooting__link:hover {
  color: var(--mm99-accent-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-mm99-login-troubleshooting__title {
    font-size: 2em;
  }

  .page-resources-mm99-login-troubleshooting__subtitle {
    font-size: 1em;
  }

  .page-resources-mm99-login-troubleshooting__heading {
    font-size: 1.8em;
  }

  .page-resources-mm99-login-troubleshooting__sub-heading {
    font-size: 1.5em;
  }

  .page-resources-mm99-login-troubleshooting__paragraph,
  .page-resources-mm99-login-troubleshooting__list {
    font-size: 1em;
  }

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

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

  .page-resources-mm99-login-troubleshooting__title {
    font-size: 1.6em;
  }

  .page-resources-mm99-login-troubleshooting__heading {
    font-size: 1.5em;
  }

  .page-resources-mm99-login-troubleshooting__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-mm99-login-troubleshooting__button {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
}