/* style/registration-guide-account-flowchart.css */
.page-registration-guide-account-flowchart {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-registration-guide-account-flowchart__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-guide-account-flowchart__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-registration-guide-account-flowchart__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-registration-guide-account-flowchart__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.page-registration-guide-account-flowchart__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #003366; /* Deep Blue */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-registration-guide-account-flowchart__hero-cta:hover {
  background-color: #e6c200; /* Darker Gold */
  color: #001a33; /* Darker Deep Blue */
}

.page-registration-guide-account-flowchart__section-title {
  font-size: 2em;
  color: #003366; /* Deep Blue */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-registration-guide-account-flowchart__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-registration-guide-account-flowchart__content-section,
.page-registration-guide-account-flowchart__flowchart-section,
.page-registration-guide-account-flowchart__steps-section,
.page-registration-guide-account-flowchart__tips-section,
.page-registration-guide-account-flowchart__explore-section,
.page-registration-guide-account-flowchart__faq-section,
.page-registration-guide-account-flowchart__cta-final-section {
  padding: 50px 0;
}

.page-registration-guide-account-flowchart__content-section,
.page-registration-guide-account-flowchart__tips-section,
.page-registration-guide-account-flowchart__faq-section {
  background-color: #f9f9f9;
}

.page-registration-guide-account-flowchart__feature-list,
.page-registration-guide-account-flowchart__bullet-list,
.page-registration-guide-account-flowchart__form-fields {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-registration-guide-account-flowchart__feature-list li,
.page-registration-guide-account-flowchart__bullet-list li,
.page-registration-guide-account-flowchart__form-fields li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #003366; /* Deep Blue accent */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-registration-guide-account-flowchart__feature-list li strong,
.page-registration-guide-account-flowchart__bullet-list li strong,
.page-registration-guide-account-flowchart__form-fields li strong {
  color: #003366;
}

.page-registration-guide-account-flowchart__button {
  display: inline-block;
  background-color: #003366; /* Deep Blue */
  color: #FFD700; /* Gold */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-registration-guide-account-flowchart__button:hover {
  background-color: #001a33; /* Darker Deep Blue */
  color: #FFD700;
}

.page-registration-guide-account-flowchart__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-registration-guide-account-flowchart__flowchart-image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-registration-guide-account-flowchart__flowchart-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-registration-guide-account-flowchart__flowchart-caption {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 15px;
}

.page-registration-guide-account-flowchart__step-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-registration-guide-account-flowchart__step-title {
  font-size: 1.6em;
  color: #003366; /* Deep Blue */
  margin-bottom: 15px;
}

.page-registration-guide-account-flowchart__step-item p {
  margin-bottom: 15px;
}

.page-registration-guide-account-flowchart__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
  border: 1px solid #eee;
}

.page-registration-guide-account-flowchart__explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-registration-guide-account-flowchart__explore-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
}

.page-registration-guide-account-flowchart__explore-subtitle {
  color: #003366; /* Deep Blue */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-registration-guide-account-flowchart__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-registration-guide-account-flowchart__faq-question {
  font-size: 1.2em;
  color: #003366; /* Deep Blue */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-registration-guide-account-flowchart__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
}

.page-registration-guide-account-flowchart__faq-question.active::after {
  content: '-';
}

.page-registration-guide-account-flowchart__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-registration-guide-account-flowchart__faq-question.active + .page-registration-guide-account-flowchart__faq-answer {
  display: block;
}

.page-registration-guide-account-flowchart__cta-final-section {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.page-registration-guide-account-flowchart__cta-final-section .page-registration-guide-account-flowchart__section-title {
  color: #FFD700;
}

.page-registration-guide-account-flowchart__cta-final-section .page-registration-guide-account-flowchart__section-title::after {
  background-color: #FFD700;
}

.page-registration-guide-account-flowchart__cta-final-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-registration-guide-account-flowchart__hero-cta--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-registration-guide-account-flowchart__main-title {
    font-size: 2em;
  }
  .page-registration-guide-account-flowchart__hero-description {
    font-size: 1em;
  }
  .page-registration-guide-account-flowchart__section-title {
    font-size: 1.6em;
  }
  .page-registration-guide-account-flowchart__explore-grid {
    grid-template-columns: 1fr;
  }
  .page-registration-guide-account-flowchart__step-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-account-flowchart__main-title {
    font-size: 1.8em;
  }
  .page-registration-guide-account-flowchart__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-guide-account-flowchart__section-title {
    font-size: 1.4em;
  }
  .page-registration-guide-account-flowchart__hero-cta--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}