/* General styles for the page */
.page-blog-huong-dan-dang-ky-68wim {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main color */
  background-color: #B71C1C; /* Custom Background color */
  padding-bottom: 40px;
}

/* Hero Section */
.page-blog-huong-dan-dang-ky-68wim__hero-section {
  padding-top: 10px; /* Small top padding, not var(--header-offset) */
  padding-bottom: 40px;
  background: #7A0E0E; /* Deep Red for hero background */
}

.page-blog-huong-dan-dang-ky-68wim__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 20px 15px;
}

.page-blog-huong-dan-dang-ky-68wim__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-blog-huong-dan-dang-ky-68wim__main-title {
  font-size: clamp(2em, 4vw, 3em); /* H1 font size with clamp */
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold-ish for title */
  line-height: 1.2;
}

.page-blog-huong-dan-dang-ky-68wim__subtitle {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #FFF5E1;
}

.page-blog-huong-dan-dang-ky-68wim__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-huong-dan-dang-ky-68wim__btn-primary,
.page-blog-huong-dan-dang-ky-68wim__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-huong-dan-dang-ky-68wim__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom Button color */
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: 2px solid transparent;
}

.page-blog-huong-dan-dang-ky-68wim__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-dang-ky-68wim__btn-secondary {
  background: #D32F2F; /* Card BG color */
  color: #FFF5E1; /* Text Main color */
  border: 2px solid #F2B544; /* Custom Border color */
}

.page-blog-huong-dan-dang-ky-68wim__btn-secondary:hover {
  background: #B71C1C; /* Darker Red */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-dang-ky-68wim__hero-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-huong-dan-dang-ky-68wim__main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure no extra space below image */
}

/* Content Area */
.page-blog-huong-dan-dang-ky-68wim__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
  background-color: #B71C1C; /* Consistent background for content sections */
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-dang-ky-68wim__section-title {
  font-size: 2.2em;
  color: #FFD86A; /* Gold for section titles */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-huong-dan-dang-ky-68wim__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #FFF5E1;
}

.page-blog-huong-dan-dang-ky-68wim__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Guide Section Steps */
.page-blog-huong-dan-dang-ky-68wim__step-item {
  background-color: #D32F2F; /* Card BG color */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544; /* Custom Border color */
}

.page-blog-huong-dan-dang-ky-68wim__step-title {
  font-size: 1.8em;
  color: #FFD86A; /* Gold for step titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-huong-dan-dang-ky-68wim__step-description {
  color: #FFF5E1;
  margin-bottom: 15px;
}

.page-blog-huong-dan-dang-ky-68wim__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-huong-dan-dang-ky-68wim__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #FFF5E1;
}

.page-blog-huong-dan-dang-ky-68wim__list li {
  margin-bottom: 8px;
  color: #FFF5E1;
}

/* App Download Section */
.page-blog-huong-dan-dang-ky-68wim__app-download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-blog-huong-dan-dang-ky-68wim__app-info {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-blog-huong-dan-dang-ky-68wim__app-subtitle {
  font-size: 1.6em;
  color: #FFD86A;
  margin-bottom: 15px;
}

.page-blog-huong-dan-dang-ky-68wim__app-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FAQ Section */
.page-blog-huong-dan-dang-ky-68wim__faq-list {
  margin-top: 30px;
}

.page-blog-huong-dan-dang-ky-68wim__faq-item {
  background-color: #D32F2F; /* Card BG color */
  border: 1px solid #F2B544;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-huong-dan-dang-ky-68wim__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.25em;
  font-weight: bold;
  color: #FFD86A; /* Gold for FAQ questions */
  cursor: pointer;
  background-color: #7A0E0E; /* Deep Red for FAQ question background */
}

.page-blog-huong-dan-dang-ky-68wim__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-huong-dan-dang-ky-68wim__faq-question::marker {
  display: none;
}

.page-blog-huong-dan-dang-ky-68wim__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFF5E1;
}

.page-blog-huong-dan-dang-ky-68wim__faq-answer {
  padding: 15px 25px 20px;
  background-color: #D32F2F; /* Card BG color */
  color: #FFF5E1;
  font-size: 1.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Conclusion Section */
.page-blog-huong-dan-dang-ky-68wim__conclusion-section {
  text-align: center;
}

.page-blog-huong-dan-dang-ky-68wim__copyright-info {
  margin-top: 40px;
  font-size: 0.9em;
  color: rgba(255, 245, 225, 0.7); /* Slightly faded Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-huong-dan-dang-ky-68wim__hero-container {
    flex-direction: column-reverse; /* Image above text on medium screens */
    text-align: center;
    gap: 30px;
  }

  .page-blog-huong-dan-dang-ky-68wim__hero-content {
    flex: 1 1 100%;
  }

  .page-blog-huong-dan-dang-ky-68wim__hero-image {
    flex: 1 1 100%;
  }

  .page-blog-huong-dan-dang-ky-68wim__cta-buttons {
    justify-content: center;
  }

  .page-blog-huong-dan-dang-ky-68wim__app-download-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-blog-huong-dan-dang-ky-68wim__app-info,
  .page-blog-huong-dan-dang-ky-68wim__app-image {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  /* HERO Section - Mobile */
  .page-blog-huong-dan-dang-ky-68wim__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px;
  }
  .page-blog-huong-dan-dang-ky-68wim__hero-container {
    padding: 15px;
    gap: 20px;
  }
  .page-blog-huong-dan-dang-ky-68wim__main-title {
    font-size: 2em; /* Smaller H1 on mobile */
  }
  .page-blog-huong-dan-dang-ky-68wim__subtitle {
    font-size: 1em;
  }
  .page-blog-huong-dan-dang-ky-68wim__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-huong-dan-dang-ky-68wim__btn-primary,
  .page-blog-huong-dan-dang-ky-68wim__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Content Sections - Mobile */
  .page-blog-huong-dan-dang-ky-68wim__content-area {
    padding: 20px 15px;
    margin-top: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-huong-dan-dang-ky-68wim__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-blog-huong-dan-dang-ky-68wim__text-block {
    font-size: 0.95em;
  }

  /* Guide Steps - Mobile */
  .page-blog-huong-dan-dang-ky-68wim__step-item {
    padding: 20px;
    margin-bottom: 15px;
  }
  .page-blog-huong-dan-dang-ky-68wim__step-title {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .page-blog-huong-dan-dang-ky-68wim__list {
    padding-left: 15px;
  }

  /* App Download Section - Mobile */
  .page-blog-huong-dan-dang-ky-68wim__app-download-content {
    gap: 20px;
  }
  .page-blog-huong-dan-dang-ky-68wim__app-subtitle {
    font-size: 1.4em;
  }

  /* FAQ Section - Mobile */
  .page-blog-huong-dan-dang-ky-68wim__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-huong-dan-dang-ky-68wim__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* General Images - Mobile */
  .page-blog-huong-dan-dang-ky-68wim img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}