.page-promotions-weekly-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-promotions-weekly-offers__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-weekly-offers__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-weekly-offers__btn-primary,
.page-promotions-weekly-offers__btn-secondary,
.page-promotions-weekly-offers__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.page-promotions-weekly-offers__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-promotions-weekly-offers__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

.page-promotions-weekly-offers__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-promotions-weekly-offers__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-promotions-weekly-offers__btn-login {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-promotions-weekly-offers__btn-login:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-promotions-weekly-offers__btn-link {
  background-color: transparent;
  color: #017439;
  border: 1px solid transparent;
  padding: 8px 15px;
}

.page-promotions-weekly-offers__btn-link:hover {
  text-decoration: underline;
  color: #005f2c;
}

/* Hero Section */
.page-promotions-weekly-offers__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #0a0a0a;
}

.page-promotions-weekly-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-promotions-weekly-offers__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-weekly-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-promotions-weekly-offers__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Why Choose Section */
.page-promotions-weekly-offers__why-choose-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-weekly-offers__why-choose-section .page-promotions-weekly-offers__section-title {
  color: #017439;
}

.page-promotions-weekly-offers__why-choose-section .page-promotions-weekly-offers__section-description {
  color: #f0f0f0;
}

.page-promotions-weekly-offers__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-weekly-offers__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-promotions-weekly-offers__feature-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions-weekly-offers__feature-text {
  font-size: 1em;
  color: #cccccc;
}

/* Offers Types Section */
.page-promotions-weekly-offers__offers-types-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-promotions-weekly-offers__offers-types-section .page-promotions-weekly-offers__section-title {
  color: #017439;
}

.page-promotions-weekly-offers__offers-types-section .page-promotions-weekly-offers__section-description {
  color: #f0f0f0;
}

.page-promotions-weekly-offers__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-weekly-offers__offer-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-promotions-weekly-offers__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-promotions-weekly-offers__offer-title {
  font-size: 1.7em;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions-weekly-offers__offer-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-weekly-offers__offer-card .page-promotions-weekly-offers__btn-secondary {
  width: fit-content;
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom */
}

/* How to Claim Section */
.page-promotions-weekly-offers__how-to-claim-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-weekly-offers__how-to-claim-section .page-promotions-weekly-offers__section-title {
  color: #017439;
}

.page-promotions-weekly-offers__how-to-claim-section .page-promotions-weekly-offers__section-description {
  color: #f0f0f0;
}

.page-promotions-weekly-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-weekly-offers__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-promotions-weekly-offers__step-number {
  font-size: 3em;
  color: #017439;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promotions-weekly-offers__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-promotions-weekly-offers__step-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Video Section */
.page-promotions-weekly-offers__video-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions-weekly-offers__video-section .page-promotions-weekly-offers__section-title {
  color: #017439;
}

.page-promotions-weekly-offers__video-section .page-promotions-weekly-offers__section-description {
  color: #f0f0f0;
}

.page-promotions-weekly-offers__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-promotions-weekly-offers__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* Ensure it's a block element */
  cursor: pointer;
}

.page-promotions-weekly-offers__video-cta {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Terms Section */
.page-promotions-weekly-offers__terms-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-weekly-offers__terms-section .page-promotions-weekly-offers__section-title {
  color: #017439;
}

.page-promotions-weekly-offers__terms-section .page-promotions-weekly-offers__section-description {
  color: #f0f0f0;
}

.page-promotions-weekly-offers__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-weekly-offers__terms-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-promotions-weekly-offers__terms-subtitle {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-promotions-weekly-offers__terms-text {
  font-size: 1em;
  color: #cccccc;
}

/* FAQ Section */
.page-promotions-weekly-offers__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions-weekly-offers__faq-section .page-promotions-weekly-offers__section-title {
  color: #017439;
}

.page-promotions-weekly-offers__faq-section .page-promotions-weekly-offers__section-description {
  color: #f0f0f0;
}

.page-promotions-weekly-offers__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-promotions-weekly-offers__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-promotions-weekly-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-promotions-weekly-offers__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-weekly-offers__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-promotions-weekly-offers__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-promotions-weekly-offers__faq-item.active .page-promotions-weekly-offers__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
  content: '−'; /* Change to minus sign */
}

.page-promotions-weekly-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  font-size: 1em;
}