/* style/resources-mu9-new-user-guide.css */
.page-resources-mu9-new-user-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #001f3f; /* Main dark blue background */
}

.page-resources-mu9-new-user-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-mu9-new-user-guide__hero {
  background: linear-gradient(135deg, #001f3f 0%, #002b5c 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-resources-mu9-new-user-guide__hero-content {
  max-width: 800px;
}

.page-resources-mu9-new-user-guide__title {
  font-size: 3.2em;
  color: #ffcc00; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mu9-new-user-guide__subtitle {
  font-size: 1.2em;
  color: #cccccc; /* Lighter grey for subtitle */
  margin-bottom: 30px;
}

.page-resources-mu9-new-user-guide__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-mu9-new-user-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-mu9-new-user-guide__button--primary {
  background-color: #ffcc00; /* Gold primary button */
  color: #001f3f; /* Dark blue text on gold */
}

.page-resources-mu9-new-user-guide__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-mu9-new-user-guide__button--secondary {
  background-color: transparent;
  color: #ffcc00; /* Gold text for secondary */
  border: 2px solid #ffcc00;
}

.page-resources-mu9-new-user-guide__button--secondary:hover {
  background-color: rgba(255, 204, 0, 0.1);
  transform: translateY(-2px);
}

.page-resources-mu9-new-user-guide__hero-image-wrapper {
  margin-top: 30px;
  max-width: 90%;
}

.page-resources-mu9-new-user-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-mu9-new-user-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-mu9-new-user-guide__section:nth-of-type(even) {
  background-color: #002b5c; /* Slightly lighter dark blue for alternating sections */
}

.page-resources-mu9-new-user-guide__section-title {
  font-size: 2.5em;
  color: #ffcc00;
  margin-bottom: 20px;
}

.page-resources-mu9-new-user-guide__section-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-mu9-new-user-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mu9-new-user-guide__feature-item {
  background-color: #003366; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-mu9-new-user-guide__feature-item:hover {
  transform: translateY(-10px);
}

.page-resources-mu9-new-user-guide__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5)); /* Gold glow for icons */
}

.page-resources-mu9-new-user-guide__feature-title {
  font-size: 1.5em;
  color: #ffcc00;
  margin-bottom: 15px;
}

.page-resources-mu9-new-user-guide__feature-text {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-resources-mu9-new-user-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.page-resources-mu9-new-user-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #003366;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
}

.page-resources-mu9-new-user-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #ffcc00;
  color: #001f3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #001f3f;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.page-resources-mu9-new-user-guide__step-title {
  font-size: 2em;
  color: #ffcc00;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-mu9-new-user-guide__step-text {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-bottom: 25px;
}

.page-resources-mu9-new-user-guide__step-text ul {
  list-style-type: disc;
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  padding-left: 20px;
  color: #cccccc;
}

.page-resources-mu9-new-user-guide__step-text ul li {
  margin-bottom: 10px;
}

.page-resources-mu9-new-user-guide__step-text strong {
  color: #ffcc00;
}

.page-resources-mu9-new-user-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-mu9-new-user-guide__promotion-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-resources-mu9-new-user-guide__promotion-list li {
  background-color: #003366;
  color: #E0E0E0;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-mu9-new-user-guide__promotion-list li strong {
  color: #ffcc00;
  margin-right: 10px;
}

.page-resources-mu9-new-user-guide__app-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.page-resources-mu9-new-user-guide__app-content {
  text-align: left;
  max-width: 600px;
}

.page-resources-mu9-new-user-guide__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-mu9-new-user-guide__app-benefits li {
  color: #E0E0E0;
  margin-bottom: 10px;
  font-size: 1.05em;
  position: relative;
  padding-left: 25px;
}

.page-resources-mu9-new-user-guide__app-benefits li::before {
  content: '✓';
  color: #ffcc00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-mu9-new-user-guide__app-image-wrapper {
  max-width: 400px;
}

.page-resources-mu9-new-user-guide__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-mu9-new-user-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-mu9-new-user-guide__faq-item {
  background-color: #003366;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-mu9-new-user-guide__faq-question {
  font-size: 1.3em;
  color: #ffcc00;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-mu9-new-user-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-mu9-new-user-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-mu9-new-user-guide__faq-answer {
  color: #E0E0E0;
  font-size: 1em;
  display: none;
  margin-top: 10px;
}

.page-resources-mu9-new-user-guide__faq-answer.active {
  display: block;
}

.page-resources-mu9-new-user-guide__section--final-cta {
  background-color: #ffcc00; /* Gold background for final CTA */
  color: #001f3f; /* Dark blue text on gold */
  padding: 80px 0;
}

.page-resources-mu9-new-user-guide__final-cta-content .page-resources-mu9-new-user-guide__section-title {
  color: #001f3f;
}

.page-resources-mu9-new-user-guide__final-cta-content .page-resources-mu9-new-user-guide__section-description {
  color: #333333;
  margin-bottom: 50px;
}

.page-resources-mu9-new-user-guide__final-cta-content .page-resources-mu9-new-user-guide__button--primary {
  background-color: #001f3f;
  color: #ffcc00;
  border: 2px solid #001f3f;
}

.page-resources-mu9-new-user-guide__final-cta-content .page-resources-mu9-new-user-guide__button--primary:hover {
  background-color: #002b5c;
  color: #ffcc00;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-resources-mu9-new-user-guide__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 0;
  }
  .page-resources-mu9-new-user-guide__hero-content {
    text-align: left;
    flex: 1;
  }
  .page-resources-mu9-new-user-guide__cta-group {
    justify-content: flex-start;
  }
  .page-resources-mu9-new-user-guide__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    max-width: 50%;
  }
  .page-resources-mu9-new-user-guide__app-flex {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .page-resources-mu9-new-user-guide__app-content {
    flex: 1;
  }
  .page-resources-mu9-new-user-guide__app-image-wrapper {
    flex: 1;
    max-width: 40%;
  }
  .page-resources-mu9-new-user-guide__step-item {
    flex-direction: row;
    text-align: left;
    padding: 50px;
  }
  .page-resources-mu9-new-user-guide__step-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-resources-mu9-new-user-guide__step-item img {
    max-width: 40%;
    margin: 0 30px;
  }
  .page-resources-mu9-new-user-guide__step-number {
    position: static;
    transform: none;
    margin-right: 30px;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .page-resources-mu9-new-user-guide__title {
    font-size: 2.2em;
  }
  .page-resources-mu9-new-user-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-mu9-new-user-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-mu9-new-user-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-mu9-new-user-guide__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-mu9-new-user-guide__app-flex {
    flex-direction: column;
  }
  .page-resources-mu9-new-user-guide__app-content {
    text-align: center;
  }
  .page-resources-mu9-new-user-guide__app-benefits {
    text-align: left;
    padding-left: 20px;
  }
  .page-resources-mu9-new-user-guide__step-item img {
    margin-top: 20px;
  }
}