.page-index-how-to-claim-bonuses {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF; /* Default background for the main content area */
}

.page-index-how-to-claim-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-how-to-claim-bonuses__hero-section {
  position: relative;
  background-color: #26A9E0; /* Main brand color for hero */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-index-how-to-claim-bonuses__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to let text stand out */
}

.page-index-how-to-claim-bonuses__hero-section .page-index-how-to-claim-bonuses__container {
  position: relative;
  z-index: 1;
}

.page-index-how-to-claim-bonuses__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-index-how-to-claim-bonuses__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-index-how-to-claim-bonuses__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-index-how-to-claim-bonuses__btn-primary:hover {
  background-color: #d16b06;
}

.page-index-how-to-claim-bonuses__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  color: #26A9E0; /* Main brand color */
}

.page-index-how-to-claim-bonuses__introduction-section,
.page-index-how-to-claim-bonuses__guide-section,
.page-index-how-to-claim-bonuses__tips-section,
.page-index-how-to-claim-bonuses__conclusion-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Light background */
  color: #333333;
}

.page-index-how-to-claim-bonuses__bonus-types-section,
.page-index-how-to-claim-bonuses__terms-section,
.page-index-how-to-claim-bonuses__faq-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background */
  color: #FFFFFF;
}

.page-index-how-to-claim-bonuses__bonus-types-section .page-index-how-to-claim-bonuses__section-title,
.page-index-how-to-claim-bonuses__terms-section .page-index-how-to-claim-bonuses__section-title,
.page-index-how-to-claim-bonuses__faq-section .page-index-how-to-claim-bonuses__section-title {
  color: #FFFFFF;
}

.page-index-how-to-claim-bonuses__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-how-to-claim-bonuses__text-block a {
  color: #EA7C07;
  text-decoration: underline;
}

.page-index-how-to-claim-bonuses__text-block a:hover {
  color: #d16b06;
}

.page-index-how-to-claim-bonuses__highlight {
  font-weight: bold;
  color: #EA7C07;
}

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

.page-index-how-to-claim-bonuses__card {
  background-color: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-how-to-claim-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-how-to-claim-bonuses__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}