.page-huong-dan-nap-tien-alo789 {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Explicitly set for clarity, aligns with default body */
}

/* Hero Section */
.page-huong-dan-nap-tien-alo789__hero-section {
  display: flex;
  flex-direction: column; /* Enforce image on top, text below */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on shared body padding */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #e0ffe0 0%, #ffffff 100%); /* Light gradient to match green theme */
}

.page-huong-dan-nap-tien-alo789__hero-image {
  width: 100%;
  max-width: 1200px; /* Max width for hero image container */
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-huong-dan-nap-tien-alo789__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default cover, will be contain on mobile */
  border-radius: 8px;
}

.page-huong-dan-nap-tien-alo789__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-huong-dan-nap-tien-alo789__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Clamp for H1 font size */
  color: #017439;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-huong-dan-nap-tien-alo789__intro-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 30px;
}

.page-huong-dan-nap-tien-alo789__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%; /* Ensure container takes full width for responsive flex */
  max-width: 100%; /* Ensure container takes full width for responsive flex */
  box-sizing: border-box;
  overflow: hidden; /* Prevent overflow */
}

.page-huong-dan-nap-tien-alo789__btn-primary,
.page-huong-dan-nap-tien-alo789__btn-secondary,
.page-huong-dan-nap-tien-alo789 a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button text wrap */
  word-wrap: break-word; /* Button text wrap */
}

.page-huong-dan-nap-tien-alo789__btn-primary {
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  border: 2px solid #C30808;
}

.page-huong-dan-nap-tien-alo789__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
  transform: translateY(-2px);
}

.page-huong-dan-nap-tien-alo789__btn-secondary {
  background-color: #017439; /* Primary brand color */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-huong-dan-nap-tien-alo789__btn-secondary:hover {
  background-color: #005a2d;
  border-color: #005a2d;
  transform: translateY(-2px);
}

/* General Content Sections */
.page-huong-dan-nap-tien-alo789__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-huong-dan-nap-tien-alo789__content-section:nth-child(even) {
  background-color: #ffffff;
}

.page-huong-dan-nap-tien-alo789__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%; /* Ensure container takes full width for responsive */
}

.page-huong-dan-nap-tien-alo789__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #017439;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-huong-dan-nap-tien-alo789__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #C30808;
  border-radius: 2px;
}

.page-huong-dan-nap-tien-alo789__text-block {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 25px;
  text-align: justify;
}

.page-huong-dan-nap-tien-alo789__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 100%; /* Ensure image is responsive */
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

/* Method Grid Section */
.page-huong-dan-nap-tien-alo789__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-huong-dan-nap-tien-alo789__method-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-huong-dan-nap-tien-alo789__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-huong-dan-nap-tien-alo789__card-title {
  font-size: 1.5rem;
  color: #017439;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-huong-dan-nap-tien-alo789__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure full image is visible */
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-huong-dan-nap-tien-alo789__method-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1; /* Allow paragraph to take available space */
}

.page-huong-dan-nap-tien-alo789__list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.page-huong-dan-nap-tien-alo789__list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  color: #444444;
}

.page-huong-dan-nap-tien-alo789__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #017439;
  font-weight: bold;
}

/* Step-by-step Guide */
.page-huong-dan-nap-tien-alo789__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-huong-dan-nap-tien-alo789__step-item {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-huong-dan-nap-tien-alo789__step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #C30808;
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.page-huong-dan-nap-tien-alo789__step-content {
  text-align: left;
}

.page-huong-dan-nap-tien-alo789__step-title {
  font-size: 1.4rem;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-huong-dan-nap-tien-alo789__step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

/* Important Notes / Checklist */
.page-huong-dan-nap-tien-alo789__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-huong-dan-nap-tien-alo789__checklist li {
  padding-left: 35px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333333;
  background-color: #e6ffe6; /* Light green background for checklist items */
  padding: 15px 20px 15px 35px;
  border-radius: 8px;
  border: 1px solid #c8e6c9;
}

.page-huong-dan-nap-tien-alo789__checklist li::before {
  content: '⚠️'; /* Warning emoji */
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* Promotions */
.page-huong-dan-nap-tien-alo789__promotions .page-huong-dan-nap-tien-alo789__cta-buttons {
  margin-top: 30px;
}
.page-huong-dan-nap-tien-alo789__promotions a {
  color: #017439; /* Link color for promotions */
  text-decoration: underline;
}
.page-huong-dan-nap-tien-alo789__promotions a:hover {
  color: #005a2d;
}

/* FAQ Section - Details structure */
details.page-huong-dan-nap-tien-alo789__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-huong-dan-nap-tien-alo789__faq-item summary.page-huong-dan-nap-tien-alo789__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-huong-dan-nap-tien-alo789__faq-item summary.page-huong-dan-nap-tien-alo789__faq-question::-webkit-details-marker {
  display: none;
}
details.page-huong-dan-nap-tien-alo789__faq-item summary.page-huong-dan-nap-tien-alo789__faq-question:hover {
  background: #f5f5f5;
}
.page-huong-dan-nap-tien-alo789__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333; /* Ensure contrast */
}
.page-huong-dan-nap-tien-alo789__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #017439; /* Use brand color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-huong-dan-nap-tien-alo789__faq-item .page-huong-dan-nap-tien-alo789__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555; /* Ensure contrast */
  line-height: 1.7;
}
.page-huong-dan-nap-tien-alo789__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-huong-dan-nap-tien-alo789__container {
    padding: 0 30px;
  }
  .page-huong-dan-nap-tien-alo789__hero-image {
    max-width: 900px;
  }
  .page-huong-dan-nap-tien-alo789__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-huong-dan-nap-tien-alo789__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  .page-huong-dan-nap-tien-alo789__method-card {
    padding: 25px;
  }
}