.page-resources-iwn68-latest-promotions-analysis {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --btn-register: #C30808;
  --font-login-register: #FFFF00;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color);
}

.page-resources-iwn68-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
  background-color: var(--primary-color);
}

.page-resources-iwn68-latest-promotions-analysis__hero-content {
  max-width: 900px;
  padding: 60px 20px;
  z-index: 1;
  position: relative;
}

.page-resources-iwn68-latest-promotions-analysis__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-iwn68-latest-promotions-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-resources-iwn68-latest-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  opacity: 0.15; /* Reduced opacity for background effect */
}

.page-resources-iwn68-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-iwn68-latest-promotions-analysis__section {
  padding: 80px 20px;
  text-align: center;
}

.page-resources-iwn68-latest-promotions-analysis__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-iwn68-latest-promotions-analysis__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-iwn68-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-iwn68-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: inherit;
}

.page-resources-iwn68-latest-promotions-analysis__section-intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-resources-iwn68-latest-promotions-analysis__feature-grid,
.page-resources-iwn68-latest-promotions-analysis__promotion-cards,
.page-resources-iwn68-latest-promotions-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-iwn68-latest-promotions-analysis__card {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-resources-iwn68-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-iwn68-latest-promotions-analysis__feature-icon,
.page-resources-iwn68-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-resources-iwn68-latest-promotions-analysis__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-iwn68-latest-promotions-analysis__card-text {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-resources-iwn68-latest-promotions-analysis__step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
}

.page-resources-iwn68-latest-promotions-analysis__btn-primary,
.page-resources-iwn68-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: 20px;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-iwn68-latest-promotions-analysis__btn-primary {
  background-color: var(--btn-register);
  color: var(--text-light); /* Changed for contrast */
  border: 2px solid var(--btn-register);
}

.page-resources-iwn68-latest-promotions-analysis__btn-primary:hover {
  background-color: #A30606; /* Slightly darker red for hover */
  border-color: #A30606;
  color: var(--text-light);
}

.page-resources-iwn68-latest-promotions-analysis__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-iwn68-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-iwn68-latest-promotions-analysis__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-resources-iwn68-latest-promotions-analysis__checklist {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-resources-iwn68-latest-promotions-analysis__checklist-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  color: var(--text-light);
}

.page-resources-iwn68-latest-promotions-analysis__checklist-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-resources-iwn68-latest-promotions-analysis__checklist-text {
  font-size: 1em;
  color: var(--text-light);
}

.page-resources-iwn68-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-resources-iwn68-latest-promotions-analysis__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-iwn68-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}