/* Base Styles for Khuyen Mai Page */
.page-khuyen-mai {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background: #140C0C; /* Background */
}

.page-khuyen-mai__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-khuyen-mai__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  line-height: 1.2;
}

.page-khuyen-mai__section-title--light {
  color: #FFF1E8;
}

.page-khuyen-mai__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 241, 232, 0.8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-khuyen-mai__section-description--light {
  color: rgba(255, 241, 232, 0.8);
}

.page-khuyen-mai__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
}

.page-khuyen-mai p {
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-khuyen-mai ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-khuyen-mai li {
  margin-bottom: 8px;
  color: #FFF1E8;
}

.page-khuyen-mai a {
  color: #FFB04A;
  text-decoration: none;
}

.page-khuyen-mai a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-khuyen-mai__btn-primary,
.page-khuyen-mai__btn-secondary,
.page-khuyen-mai__card-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-khuyen-mai__btn-primary,
.page-khuyen-mai__card-btn {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8; /* Text Main */
  border: none;
}

.page-khuyen-mai__btn-primary:hover,
.page-khuyen-mai__card-btn:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
}

.page-khuyen-mai__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #FFB04A; /* Gold */
  border: 1px solid #6A1E1E; /* Border */
}

.page-khuyen-mai__btn-secondary:hover {
  background: #6A1E1E; /* Border */
  color: #FFF1E8; /* Text Main */
  transform: translateY(-2px);
}

/* Hero Section */
.page-khuyen-mai__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  margin-bottom: 40px;
  background: #140C0C; /* Background */
  overflow: hidden;
}

.page-khuyen-mai__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-khuyen-mai__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-khuyen-mai__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-khuyen-mai__hero-text-area {
  text-align: center;
  padding: 0 20px 40px;
}