.page-hoi-dap-faq {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8; /* Light background for the page */
}

/* Hero Section */
.page-hoi-dap-faq__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  margin-bottom: 40px;
  background-color: #ffffff;
}

.page-hoi-dap-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-hoi-dap-faq__hero-image img {
  width: 100%;
  height: 675px; /* Fixed height for desktop to maintain aspect ratio */
  object-fit: cover; /* Cover the area, may crop sides */
  display: block;
}

.page-hoi-dap-faq__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.page-hoi-dap-faq__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  color: #017439;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hoi-dap-faq__intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-hoi-dap-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-hoi-dap-faq__btn-primary,
.page-hoi-dap-faq__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-hoi-dap-faq__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom color for register/login font */
  border: 2px solid #C30808;
}

.page-hoi-dap-faq__btn-primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
  transform: translateY(-2px);
}