/* style/index-user-guide.css */
.page-index-user-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark backgrounds */
  background-color: #0A2463; /* Main background color */
}

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

.page-index-user-guide__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7c 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-index-user-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E0B94A; /* Auxiliary color for emphasis */
}

.page-index-user-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-user-guide__cta-button {
  display: inline-block;
  background-color: #E0B94A; /* Auxiliary color for buttons */
  color: #0A2463; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-user-guide__cta-button:hover {
  background-color: #f5db9c; /* Lighter shade for hover */
  transform: translateY(-3px);
}

.page-index-user-guide__section {
  padding: 60px 0;
  background-color: #0A2463; /* Consistent dark blue background */
  color: #ffffff;
}

.page-index-user-guide__section:nth-of-type(even) {
  background-color: #1a3a7c; /* Slightly different shade for alternating sections */
}

.page-index-user-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #E0B94A; /* Auxiliary color for section titles */
}

.page-index-user-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-index-user-guide__content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-index-user-guide__content-row--reverse {
  flex-direction: row-reverse;
}

.page-index-user-guide__text-content {
  flex: 1;
  min-width: 300px;
}

.page-index-user-guide__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-index-user-guide__text-content ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-index-user-guide__text-content li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-user-guide__text-content h3 {
  font-size: 1.8em;
  color: #E0B94A;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-user-guide__image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-user-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-user-guide__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-index-user-guide__grid-item:hover {
  transform: translateY(-5px);
}

.page-index-user-guide__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 185, 74, 0.5)); /* Gold glow for icons */
}

.page-index-user-guide__item-title {
  font-size: 1.5em;
  color: #E0B94A;
  margin-bottom: 15px;
}

.page-index-user-guide__item-title + p {
  color: #e0e0e0;
}

.page-index-user-guide__step-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-user-guide__step-card {
  background-color: #1a3a7c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-index-user-guide__step-number {
  background-color: #E0B94A;
  color: #0A2463;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(224, 185, 74, 0.5);
}

.page-index-user-guide__card-title {
  font-size: 1.6em;
  color: #E0B94A;
  margin-bottom: 15px;
}

.page-index-user-guide__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-user-guide__card-button {
  display: inline-block;
  background-color: #E0B94A;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push button to bottom */
  transition: background-color 0.3s ease;
}

.page-index-user-guide__card-button:hover {
  background-color: #f5db9c;
}

.page-index-user-guide__faq-list {
  margin-top: 40px;
}

.page-index-user-guide__faq-item {
  background-color: #1a3a7c;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-user-guide__faq-question {
  font-size: 1.4em;
  color: #E0B94A;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-index-user-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #E0B94A;
  transition: transform 0.3s ease;
}

.page-index-user-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-user-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.1em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-index-user-guide__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 0 25px 20px 25px;
}

.page-index-user-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-index-user-guide__inline-button {
  display: inline-block;
  background-color: #E0B94A;
  color: #0A2463;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-index-user-guide__inline-button:hover {
  background-color: #f5db9c;
}

.page-index-user-guide__cta-button--final {
  margin-top: 40px;
  font-size: 1.4em;
  padding: 18px 35px;
}

.page-index-user-guide .keyword-highlight {
  color: #E0B94A;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-user-guide__hero-title {
    font-size: 2.5em;
  }

  .page-index-user-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-user-guide__section-title {
    font-size: 2em;
  }

  .page-index-user-guide__content-row {
    flex-direction: column;
    gap: 20px;
  }

  .page-index-user-guide__content-row--reverse {
    flex-direction: column;
  }

  .page-index-user-guide__grid-3-col {
    grid-template-columns: 1fr;
  }

  .page-index-user-guide__step-card-grid {
    grid-template-columns: 1fr;
  }

  .page-index-user-guide__faq-question {
    font-size: 1.2em;
  }

  .page-index-user-guide__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-user-guide__hero-title {
    font-size: 2em;
  }

  .page-index-user-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-index-user-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-index-user-guide__section-title {
    font-size: 1.8em;
  }

  .page-index-user-guide__section-description,
  .page-index-user-guide__text-content p,
  .page-index-user-guide__text-content li {
    font-size: 0.95em;
  }

  .page-index-user-guide__item-title {
    font-size: 1.3em;
  }

  .page-index-user-guide__card-title {
    font-size: 1.4em;
  }
}