.page-resources-how-to-choose-best-promotions {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-how-to-choose-best-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-choose-best-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 600px;
  overflow: hidden;
  background-color: #017439; /* Brand color for hero background */
  color: #ffffff;
}

.page-resources-how-to-choose-best-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-how-to-choose-best-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-resources-how-to-choose-best-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  position: relative;
  z-index: 1;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-promotions__content-area {
  padding: 60px 0;
}

.page-resources-how-to-choose-best-promotions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-resources-how-to-choose-best-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-promotions__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark body */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-how-to-choose-best-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-how-to-choose-best-promotions__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-promotions__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

.page-resources-how-to-choose-best-promotions__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-how-to-choose-best-promotions__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-promotions__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-promotions__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff; /* Light background for steps */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light background */
}

.page-resources-how-to-choose-best-promotions__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #017439; /* Brand color for step numbers */
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #017439;
  border-radius: 50%;
}

.page-resources-how-to-choose-best-promotions__step-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #017439;
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__step-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-resources-how-to-choose-best-promotions__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-promotions__tips-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-best-promotions__tips-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #017439;
  padding: 5px;
}

.page-resources-how-to-choose-best-promotions__tips-title {
  font-size: 1.6em;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__tips-item p {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-promotions__mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-promotions__mistake-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
}

.page-resources-how-to-choose-best-promotions__mistake-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #C30808; /* Red color for warning */
  font-weight: bold;
}

.page-resources-how-to-choose-best-promotions__mistake-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-resources-how-to-choose-best-promotions__faq-section {
  padding: 60px 0;
  background-color: #017439; /* Brand color for FAQ background */
  color: #ffffff;
}

.page-resources-how-to-choose-best-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-resources-how-to-choose-best-promotions__faq-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-best-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-best-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-best-promotions__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-resources-how-to-choose-best-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-how-to-choose-best-promotions__faq-item.active .page-resources-how-to-choose-best-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-choose-best-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-promotions__faq-item.active .page-resources-how-to-choose-best-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 15px 25px 25px 25px;
}

.page-resources-how-to-choose-best-promotions__faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-how-to-choose-best-promotions__cta-final {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff; /* Light background for final CTA */
  color: #333333;
}

.page-resources-how-to-choose-best-promotions__cta-final .page-resources-how-to-choose-best-promotions__section-title {
  color: #017439;
}

.page-resources-how-to-choose-best-promotions__cta-final .page-resources-how-to-choose-best-promotions__text-block {
  color: #555555;
}

.page-resources-how-to-choose-best-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-resources-how-to-choose-best-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-choose-best-promotions__btn-primary {
  background-color: #C30808; /* Custom red for register/login */
  color: #FFFF00; /* Custom yellow for register/login text */
  border: 2px solid #C30808;
}

.page-resources-how-to-choose-best-promotions__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-resources-how-to-choose-best-promotions__btn-secondary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-how-to-choose-best-promotions__btn-secondary:hover {
  background-color: #005a2b;
  transform: translateY(-2px);
}

/* Color contrast classes */
.page-resources-how-to-choose-best-promotions__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-how-to-choose-best-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-best-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-choose-best-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-best-promotions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-how-to-choose-best-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-best-promotions__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-best-promotions__content-area,
  .page-resources-how-to-choose-best-promotions__faq-section,
  .page-resources-how-to-choose-best-promotions__cta-final {
    padding: 40px 0;
  }
  .page-resources-how-to-choose-best-promotions__container {
    padding: 0 15px;
  }
  .page-resources-how-to-choose-best-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-how-to-choose-best-promotions__text-block {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-resources-how-to-choose-best-promotions__card-grid,
  .page-resources-how-to-choose-best-promotions__feature-list,
  .page-resources-how-to-choose-best-promotions__mistakes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-how-to-choose-best-promotions__card,
  .page-resources-how-to-choose-best-promotions__feature-item,
  .page-resources-how-to-choose-best-promotions__mistake-card {
    padding: 20px;
  }
  .page-resources-how-to-choose-best-promotions__card-image,
  .page-resources-how-to-choose-best-promotions__feature-image {
    height: 200px;
  }
  .page-resources-how-to-choose-best-promotions__card-title,
  .page-resources-how-to-choose-best-promotions__feature-title,
  .page-resources-how-to-choose-best-promotions__mistake-title,
  .page-resources-how-to-choose-best-promotions__step-title,
  .page-resources-how-to-choose-best-promotions__tips-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-best-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .page-resources-how-to-choose-best-promotions__step-number {
    margin-bottom: 15px;
  }
  .page-resources-how-to-choose-best-promotions__tips-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }
  .page-resources-how-to-choose-best-promotions__tips-icon {
    margin-bottom: 15px;
  }
  .page-resources-how-to-choose-best-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-best-promotions__faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-best-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-resources-how-to-choose-best-promotions__faq-item.active .page-resources-how-to-choose-best-promotions__faq-answer {
    padding: 10px 20px 20px 20px;
  }
  .page-resources-how-to-choose-best-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-how-to-choose-best-promotions__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Mobile responsive for images */
  .page-resources-how-to-choose-best-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-choose-best-promotions__section,
  .page-resources-how-to-choose-best-promotions__card,
  .page-resources-how-to-choose-best-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-how-to-choose-best-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Consistent with common fragment */
  }

  /* Mobile responsive for videos (if any) */
  .page-resources-how-to-choose-best-promotions video,
  .page-resources-how-to-choose-best-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-choose-best-promotions__video-section,
  .page-resources-how-to-choose-best-promotions__video-container,
  .page-resources-how-to-choose-best-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-resources-how-to-choose-best-promotions__cta-button,
  .page-resources-how-to-choose-best-promotions__btn-primary,
  .page-resources-how-to-choose-best-promotions__btn-secondary,
  .page-resources-how-to-choose-best-promotions a[class*="button"],
  .page-resources-how-to-choose-best-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-how-to-choose-best-promotions__cta-buttons,
  .page-resources-how-to-choose-best-promotions__button-group,
  .page-resources-how-to-choose-best-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-best-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-best-promotions__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-best-promotions__card-title,
  .page-resources-how-to-choose-best-promotions__feature-title,
  .page-resources-how-to-choose-best-promotions__mistake-title,
  .page-resources-how-to-choose-best-promotions__step-title,
  .page-resources-how-to-choose-best-promotions__tips-title {
    font-size: 1.3em;
  }
  .page-resources-how-to-choose-best-promotions__step-number {
    font-size: 2em;
    width: 40px;
    height: 40px;
  }
}