/* Base styles for the promotions page */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Body Background */
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD86A; /* Gold color for titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #FFF5E1;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions__hero-content {
  position: relative; /* Ensure content is above image but not overlaying it via absolute positioning */
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up slightly over the image for visual flow */
  background: rgba(122, 14, 14, 0.8); /* Deep Red with opacity for content block */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid #F2B544;
}

.page-promotions__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #FFD86A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 18px;
  color: #FFF5E1;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold */
  color: #333333; /* Dark text for contrast on light gold button */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border Gold */
}

.page-promotions__btn-secondary:hover {
  background: #C91F17; /* Main Red */
  transform: translateY(-2px);
}

.page-promotions__btn-large {
  padding: 18px 40px;
  font-size: 20px;
}

/* Categories Section */
.page-promotions__categories-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
  margin-bottom: 50px;
}

.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__promotion-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  color: #FFF5E1;
  border: 1px solid #F2B544;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD86A;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold */
  color: #333333; /* Dark text for contrast */
  padding: 12px 20px;
  font-size: 16px;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-1px);
}

/* How To Claim Section */
.page-promotions__how-to-claim-section {
  padding: 60px 0;
  margin-bottom: 50px;
  background-color: #B71C1C;
}

.page-promotions__how-to-claim-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-promotions__how-to-claim-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-promotions__step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #FFD86A; /* Button Gold */
  color: #333333; /* Dark text */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.page-promotions__step-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD86A;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-promotions__step-text {
  font-size: 15px;
  color: #FFF5E1;
  margin: 0;
}

.page-promotions__how-to-claim-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-promotions__how-to-claim-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #F2B544;
}

/* Terms Section */
.page-promotions__terms-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
  margin-bottom: 50px;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 30px;
  color: #FFF5E1;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  padding: 60px 0;
  background-color: #B71C1C;
  margin-bottom: 50px;
}

.page-promotions__why-choose-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-promotions__why-choose-text {
  flex: 1;
}

.page-promotions__why-choose-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #FFF5E1;
}

.page-promotions__why-choose-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__why-choose-list li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #FFF5E1;
  position: relative;
  padding-left: 30px;
}

.page-promotions__why-choose-list li::before {
  content: '✔';
  color: #FFD86A; /* Gold */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions__list-highlight {
  color: #FFD86A;
}

.page-promotions__why-choose-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-promotions__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #F2B544;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544;
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF5E1;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #C91F17; /* Main Red */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A;
}