.page-resources-how-to-use-promo-effectively {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF; /* Auxiliary color as background */
  color: #333333; /* Dark text for light background, sufficient contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-how-to-use-promo-effectively__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF; /* Text on hero image */
  background-color: #000000; /* Fallback background for hero */
}

.page-resources-how-to-use-promo-effectively__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-how-to-use-promo-effectively__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-resources-how-to-use-promo-effectively__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-how-to-use-promo-effectively__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-how-to-use-promo-effectively__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-resources-how-to-use-promo-effectively__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-use-promo-effectively__btn {
  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.2s ease;
  white-space: nowrap;
}

.page-resources-how-to-use-promo-effectively__btn--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-how-to-use-promo-effectively__btn--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-how-to-use-promo-effectively__btn--login,
.page-resources-how-to-use-promo-effectively__btn--explore,
.page-resources-how-to-use-promo-effectively__btn--download {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-how-to-use-promo-effectively__btn--login:hover,
.page-resources-how-to-use-promo-effectively__btn--explore:hover,
.page-resources-how-to-use-promo-effectively__btn--download:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-how-to-use-promo-effectively__content-area {
  max-width: 800px; /* Constrain content width for readability */
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-how-to-use-promo-effectively__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-how-to-use-promo-effectively__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-how-to-use-promo-effectively__article-paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-how-to-use-promo-effectively__article-paragraph a:hover {
  text-decoration: underline;
}

.page-resources-how-to-use-promo-effectively__brand-highlight {
  color: #000000;
  font-weight: bold;
}

.page-resources-how-to-use-promo-effectively__article-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-use-promo-effectively__article-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-how-to-use-promo-effectively__article-list.page-resources-how-to-use-promo-effectively__article-ordered-list {
  list-style-type: decimal;
}

.page-resources-how-to-use-promo-effectively__list-item {
  margin-bottom: 10px;
}

.page-resources-how-to-use-promo-effectively__list-item strong {
  color: #000000;
}

.page-resources-how-to-use-promo-effectively__blockquote {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  margin: 30px 0;
  padding: 20px 30px;
  font-style: italic;
  color: #555555;
  border-radius: 5px;
}

.page-resources-how-to-use-promo-effectively__blockquote-text {
  margin: 0;
  font-size: 1.1em;
}

.page-resources-how-to-use-promo-effectively__call-to-action {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-use-promo-effectively__btn--back-to-resources {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-how-to-use-promo-effectively__btn--back-to-resources:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-resources-how-to-use-promo-effectively__app-download-section {
  text-align: center;
  margin: 40px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-how-to-use-promo-effectively__hero-title {
    font-size: 2.5em;
  }

  .page-resources-how-to-use-promo-effectively__hero-description {
    font-size: 1.1em;
  }

  .page-resources-how-to-use-promo-effectively__hero-actions {
    flex-direction: column;
  }

  .page-resources-how-to-use-promo-effectively__btn {
    width: 80%;
  }

  .page-resources-how-to-use-promo-effectively__content-area {
    padding: 30px 15px;
  }

  .page-resources-how-to-use-promo-effectively__article-heading {
    font-size: 1.8em;
  }

  .page-resources-how-to-use-promo-effectively__article-paragraph,
  .page-resources-how-to-use-promo-effectively__article-list {
    font-size: 1em;
  }

  .page-resources-how-to-use-promo-effectively__article-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }

  .page-resources-how-to-use-promo-effectively__call-to-action {
    flex-direction: column;
  }

  /* Mobile content area images must not cause horizontal scroll */
  .page-resources-how-to-use-promo-effectively img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-use-promo-effectively__hero-title {
    font-size: 2em;
  }
}