.page-chuong-trinh-dai-ly {
  font-family: Arial, sans-serif;
  color: #FFF1E8; /* Text Main */
  background-color: var(--background-color); /* Should be #140C0C from shared.css */
}

/* Hero Section */
.page-chuong-trinh-dai-ly__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #140C0C; /* Background color */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-chuong-trinh-dai-ly__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-chuong-trinh-dai-ly__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default desktop, will change to contain for mobile */
  aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-chuong-trinh-dai-ly__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-chuong-trinh-dai-ly__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
}

.page-chuong-trinh-dai-ly__description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-chuong-trinh-dai-ly__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-chuong-trinh-dai-ly__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-chuong-trinh-dai-ly__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #140C0C; /* Dark text for light button */
  border: none;
}

.page-chuong-trinh-dai-ly__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-chuong-trinh-dai-ly__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #F3C54D; /* Gold text for dark button */
  border: 2px solid #F3C54D; /* Gold border */
}

.page-chuong-trinh-dai-ly__btn-secondary:hover {
  background: #F3C54D; /* Gold background */
  color: #140C0C; /* Dark text */
  transform: translateY(-2px);
}

/* General Section Styles */
.page-chuong-trinh-dai-ly__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-chuong-trinh-dai-ly__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F3C54D, transparent);
  border-radius: 2px;
}
}
}