.page-resources-3win-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #1a1a2e; /* Inherited from shared, but for clarity */
}

.page-resources-3win-latest-promotions-analysis__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 header offset is applied */
  background-color: #017439; /* Primary brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-3win-latest-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

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

.page-resources-3win-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-3win-latest-promotions-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Custom font color for titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-3win-latest-promotions-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-3win-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-3win-latest-promotions-analysis__btn-primary,
.page-resources-3win-latest-promotions-analysis__btn-secondary {
  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;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-resources-3win-latest-promotions-analysis__btn-primary {
  background-color: #C30808; /* Custom register/login button color */
  color: #FFFF00; /* Custom register/login font color */
  border: 2px solid #C30808;
}

.page-resources-3win-latest-promotions-analysis__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-resources-3win-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-3win-latest-promotions-analysis__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-resources-3win-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a2e; /* Keep content area background dark */
  color: #ffffff; /* Light text for dark background */
}

.page-resources-3win-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #FFFF00; /* Custom font color for titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-3win-latest-promotions-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-3win-latest-promotions-analysis__highlight-text {
  color: #FFFF00;
  font-weight: bold;
}

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

.page-resources-3win-latest-promotions-analysis__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent light background for cards on dark body */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-resources-3win-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-3win-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-3win-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  color: #FFFF00;
  margin-bottom: 15px;
}

.page-resources-3win-latest-promotions-analysis__card-text {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-3win-latest-promotions-analysis__card-button {
  display: inline-block;
  background-color: #017439; /* Primary brand color for card buttons */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-3win-latest-promotions-analysis__card-button:hover {
  background-color: #005f2f;
}

.page-resources-3win-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-3win-latest-promotions-analysis__list-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly darker transparent for list items */
  border-left: 5px solid #017439;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-3win-latest-promotions-analysis__list-title {
  font-size: 1.3em;
  color: #FFFF00;
  margin-bottom: 10px;
}

.page-resources-3win-latest-promotions-analysis__list-text {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-3win-latest-promotions-analysis__link-in-text {
  color: #017439; /* Use brand color for text links */
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-3win-latest-promotions-analysis__link-in-text:hover {
  color: #FFFF00;
}

.page-resources-3win-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-resources-3win-latest-promotions-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-3win-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFF00;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-resources-3win-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-3win-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFFF00;
  transition: transform 0.3s ease;
}

.page-resources-3win-latest-promotions-analysis__faq-item[open] .page-resources-3win-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-3win-latest-promotions-analysis__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-3win-latest-promotions-analysis__cta-bottom {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-3win-latest-promotions-analysis__hero-title {
    font-size: 3em;
  }
  .page-resources-3win-latest-promotions-analysis__hero-description {
    font-size: 1.2em;
  }
  .page-resources-3win-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-resources-3win-latest-promotions-analysis__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-resources-3win-latest-promotions-analysis__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-resources-3win-latest-promotions-analysis__hero-title {
    font-size: 2.5em;
  }
  .page-resources-3win-latest-promotions-analysis__hero-description {
    font-size: 1em;
  }
  .page-resources-3win-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Constrain buttons width on small screens */
    margin: 0 auto;
  }
  .page-resources-3win-latest-promotions-analysis__btn-primary,
  .page-resources-3win-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-3win-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }
  .page-resources-3win-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-resources-3win-latest-promotions-analysis__paragraph,
  .page-resources-3win-latest-promotions-analysis__list-text,
  .page-resources-3win-latest-promotions-analysis__faq-answer p {
    font-size: 0.95em;
  }
  .page-resources-3win-latest-promotions-analysis__card {
    padding: 20px;
  }
  .page-resources-3win-latest-promotions-analysis__card-image {
    height: 150px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-3win-latest-promotions-analysis__card-title {
    font-size: 1.3em;
  }
  .page-resources-3win-latest-promotions-analysis__list-item {
    padding: 15px;
  }
  .page-resources-3win-latest-promotions-analysis__list-title {
    font-size: 1.1em;
  }
  .page-resources-3win-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-resources-3win-latest-promotions-analysis__faq-answer {
    padding: 10px 20px 15px;
  }
  /* Ensure all images are responsive */
  .page-resources-3win-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-3win-latest-promotions-analysis__section,
  .page-resources-3win-latest-promotions-analysis__card,
  .page-resources-3win-latest-promotions-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-3win-latest-promotions-analysis__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-resources-3win-latest-promotions-analysis__hero-title {
    font-size: 2em;
  }
  .page-resources-3win-latest-promotions-analysis__section-title {
    font-size: 1.5em;
  }
  .page-resources-3win-latest-promotions-analysis__card-image {
    height: 120px;
  }
  .page-resources-3win-latest-promotions-analysis__faq-question {
    font-size: 1em;
  }
}