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

.page-resources-bong789-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-bong789-registration-guide__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient for hero */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-bong789-registration-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Golden yellow for main title */
}

.page-resources-bong789-registration-guide__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-bong789-registration-guide__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Golden yellow for CTA buttons */
  color: #003366; /* Deep sea blue text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-bong789-registration-guide__cta-button:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  color: #001a33;
}

.page-resources-bong789-registration-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-bong789-registration-guide__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep sea blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-bong789-registration-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-bong789-registration-guide__overview-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-bong789-registration-guide__text-block {
  flex: 1;
  min-width: 300px;
}

.page-resources-bong789-registration-guide__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-resources-bong789-registration-guide__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-bong789-registration-guide__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-bong789-registration-guide__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-bong789-registration-guide__benefits-list li {
  background-color: #f0f8ff; /* Light blue background for list items */
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-resources-bong789-registration-guide__icon {
  color: #FFCC00; /* Golden yellow for icons */
  font-size: 1.8em;
  min-width: 30px;
  text-align: center;
}

.page-resources-bong789-registration-guide__text-center {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-resources-bong789-registration-guide__link-inline {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-bong789-registration-guide__link-inline:hover {
  color: #001a33;
  border-color: #e6b800;
}

.page-resources-bong789-registration-guide__intro-text {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-bong789-registration-guide__step-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.page-resources-bong789-registration-guide__step-header {
  background-color: #003366; /* Deep sea blue for step headers */
  color: #ffffff;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-resources-bong789-registration-guide__step-number {
  background-color: #FFCC00; /* Golden yellow for step number badge */
  color: #003366;
  font-size: 1.8em;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.page-resources-bong789-registration-guide__step-title {
  font-size: 1.8em;
  margin: 0;
  color: #ffffff;
}

.page-resources-bong789-registration-guide__step-content {
  padding: 30px;
  font-size: 1.1em;
}

.page-resources-bong789-registration-guide__step-content p {
  margin-bottom: 15px;
}

.page-resources-bong789-registration-guide__step-image {
  margin-top: 25px;
  border: 1px solid #ddd;
}

.page-resources-bong789-registration-guide__small-button {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-resources-bong789-registration-guide__form-fields {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-bong789-registration-guide__form-fields li {
  margin-bottom: 10px;
}

.page-resources-bong789-registration-guide__final-cta-text {
  font-size: 1.5em;
  font-weight: bold;
  color: #003366;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-resources-bong789-registration-guide__large-button {
  padding: 18px 40px;
  font-size: 1.4em;
  margin-top: 20px;
}

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

.page-resources-bong789-registration-guide__tip-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-bong789-registration-guide__tip-item:hover {
  transform: translateY(-5px);
}

.page-resources-bong789-registration-guide__tip-item .page-resources-bong789-registration-guide__icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.page-resources-bong789-registration-guide__tip-item h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-bong789-registration-guide__faq-item {
  background-color: #f0f8ff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-resources-bong789-registration-guide__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer; /* Indicating it might be expandable */
}

.page-resources-bong789-registration-guide__faq-answer {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 0;
}

.page-resources-bong789-registration-guide__call-to-action {
  background: linear-gradient(90deg, #003366, #004080); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  margin-top: 40px;
  border-radius: 8px;
}

.page-resources-bong789-registration-guide__cta-content {
  max-width: 900px;
}

.page-resources-bong789-registration-guide__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-resources-bong789-registration-guide__final-cta {
  margin-right: 20px;
}

.page-resources-bong789-registration-guide__login-cta {
  background-color: transparent;
  border: 2px solid #FFCC00;
  color: #FFCC00;
}

.page-resources-bong789-registration-guide__login-cta:hover {
  background-color: #FFCC00;
  color: #003366;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-bong789-registration-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-bong789-registration-guide__hero-subtitle {
    font-size: 1.2em;
  }
  .page-resources-bong789-registration-guide__section-title {
    font-size: 2em;
  }
  .page-resources-bong789-registration-guide__overview-content {
    flex-direction: column;
  }
  .page-resources-bong789-registration-guide__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-resources-bong789-registration-guide__step-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .page-resources-bong789-registration-guide__step-number {
    margin-bottom: 10px;
  }
  .page-resources-bong789-registration-guide__step-title {
    font-size: 1.5em;
  }
  .page-resources-bong789-registration-guide__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-bong789-registration-guide__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-resources-bong789-registration-guide__final-cta {
    margin-right: 0;
  }
}