.page-blog-qc6672-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default to white */
}

.page-blog-qc6672-registration-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #FFFFFF; /* Ensures a light background for hero text */
}

.page-blog-qc6672-registration-guide__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px; /* Space between image and text */
}

.page-blog-qc6672-registration-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-qc6672-registration-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #26A9E0; /* Brand color for H1 */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-qc6672-registration-guide__hero-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

.page-blog-qc6672-registration-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-qc6672-registration-guide__btn-primary,
.page-blog-qc6672-registration-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-qc6672-registration-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-qc6672-registration-guide__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-blog-qc6672-registration-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-qc6672-registration-guide__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a8cc7;
}

/* Specific color for Login/Register buttons using promotion link */
.page-blog-qc6672-registration-guide__cta-buttons a[href*="redirect"] {
  background-color: #EA7C07; /* Login color */
  border-color: #EA7C07;
  color: #FFFFFF;
}
.page-blog-qc6672-registration-guide__cta-buttons a[href*="redirect"]:hover {
  background-color: #c96a06;
  border-color: #c96a06;
}

.page-blog-qc6672-registration-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Explicitly set for content area */
  color: #333333;
}

.page-blog-qc6672-registration-guide__section-wrapper {
  max-width: 900px; /* Narrower content for readability */
  margin: 0 auto;
}

.page-blog-qc6672-registration-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.page-blog-qc6672-registration-guide__subsection-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-qc6672-registration-guide p {
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-qc6672-registration-guide__list,
.page-blog-qc6672-registration-guide__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #333333;
}

.page-blog-qc6672-registration-guide__list li,
.page-blog-qc6672-registration-guide__ordered-list li {
  margin-bottom: 8px;
  color: #333333;
}

.page-blog-qc6672-registration-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

/* FAQ styles */
.page-blog-qc6672-registration-guide__faq-list {
  margin-top: 30px;
}

.page-blog-qc6672-registration-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-qc6672-registration-guide__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 18px 25px;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.page-blog-qc6672-registration-guide__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-qc6672-registration-guide__faq-question {
  flex-grow: 1;
  color: #FFFFFF;
}

.page-blog-qc6672-registration-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFFFFF;
}

.page-blog-qc6672-registration-guide__faq-answer {
  padding: 20px 25px;
  background-color: #FFFFFF;
  color: #333333;
  border-top: 1px solid #e0e0e0;
}

.page-blog-qc6672-registration-guide__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-qc6672-registration-guide__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-qc6672-registration-guide__main-title {
    font-size: 2em; /* Adjust H1 for mobile */
  }

  .page-blog-qc6672-registration-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-qc6672-registration-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Ensure container takes full width */
    padding: 0 15px; /* Add padding to container */
  }
  
  .page-blog-qc6672-registration-guide__cta-buttons a {
    width: 100% !important; /* Force buttons to full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-qc6672-registration-guide__content-area {
    padding: 20px 15px;
  }

  .page-blog-qc6672-registration-guide__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }

  .page-blog-qc6672-registration-guide__subsection-title {
    font-size: 1.4em;
    margin-top: 25px;
  }

  .page-blog-qc6672-registration-guide__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 0px; /* Remove horizontal padding for images if content area has it */
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Ensure all content containers are responsive */
  .page-blog-qc6672-registration-guide__section,
  .page-blog-qc6672-registration-guide__card,
  .page-blog-qc6672-registration-guide__container,
  .page-blog-qc6672-registration-guide__section-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-qc6672-registration-guide__faq-item summary {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-blog-qc6672-registration-guide__faq-answer {
    padding: 15px 20px;
  }
}