.page-promotions {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #F3F3F3;
}

.page-promotions__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;
  overflow: hidden;
  color: #FFFFFF; /* Text on hero image should be white for contrast */
  text-align: center;
}

.page-promotions__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 600px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__hero-content {
  position: relative; /* Changed from absolute to relative to be in document flow below image */
  z-index: 10; /* Ensure content is above image if there's any overlap (though it shouldn't be) */
  padding: 40px 20px;
  background-color: #025BE8; /* Strong background for text contrast */
  width: 100%;
  box-sizing: border-box;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-promotions__lead-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions__btn-primary {
  background-color: #025BE8; /* Auxiliary color */
  color: #FFFFFF;
  border: 2px solid #025BE8;
}

.page-promotions__btn-primary:hover {
  background-color: #1266EC; /* Slightly darker blue */
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: #E5EEFD; /* Login color */
  color: #025BE8;
  border: 2px solid #025BE8;
}

.page-promotions__btn-secondary:hover {
  background-color: #DAE4F8; /* Slightly darker light blue */
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 40px 0;
  background-color: #F3F3F3; /* Light background for content sections */
  color: #333333;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  color: #025BE8;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__card {
  background-color: #ffffff; /* White background for cards */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333; /* Dark text on light card background */
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #025BE8;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim .page-promotions__section-description,
.page-promotions__trust-fairness .page-promotions__section-description,
.page-promotions__responsible-gaming .page-promotions__section-description,
.page-promotions__why-choose-us .page-promotions__section-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-promotions__how-to-claim ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
}

.page-promotions__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 25px 20px 60px;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-promotions__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #025BE8;
  color: #FFFFFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-promotions__step-title {
  font-size: 1.25rem;
  color: #025BE8;
  margin-bottom: 5px;
}

.page-promotions__step-text a {
  color: #025BE8;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-text a:hover {
  text-decoration: underline;
}

.page-promotions__mobile-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__mobile-image {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__mobile-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-promotions__mobile-title {
  font-size: 1.8rem;
  color: #025BE8;
  margin-bottom: 15px;
}

.page-promotions__mobile-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.page-promotions__advantages-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
  text-align: left;
}

.page-promotions__advantages-list li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #025BE8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
}

.page-promotions__advantages-list li strong {
  color: #025BE8;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 30px auto;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #E5EEFD; /* Light blue background for question */
  color: #025BE8; /* Dark blue text for question */
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #DAE4F8;
}

.page-promotions__faq-heading {
  margin: 0;
  font-size: 1.1rem;
  color: #025BE8;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
  text-align: justify;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides */
  padding: 15px 20px;
}

.page-promotions__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-promotions__faq-answer a {
  color: #025BE8;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__faq-answer a:hover {
  text-decoration: underline;
}

.page-promotions__cta-final .page-promotions__section-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-promotions__section-title {
    font-size: 2rem;
  }

  .page-promotions__lead-text,
  .page-promotions__section-description,
  .page-promotions__card-text,
  .page-promotions__step-text,
  .page-promotions__mobile-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-promotions__lead-text {
    font-size: 0.95rem;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section {
    padding: 30px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-promotions__section-title {
    font-size: 1.8rem;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: auto;
  }

  .page-promotions__mobile-cta {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .page-promotions__mobile-image {
    max-width: 250px;
    margin-bottom: 20px;
  }

  .page-promotions__mobile-content {
    text-align: center;
  }

  .page-promotions__mobile-title {
    font-size: 1.6rem;
  }

  .page-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
  }

  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .page-promotions__section-title {
    font-size: 1.6rem;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__mobile-title {
    font-size: 1.4rem;
  }

  .page-promotions__step-item {
    padding: 15px 15px 15px 50px;
  }

  .page-promotions__step-item::before {
    width: 25px;
    height: 25px;
    font-size: 1rem;
    left: 15px;
    top: 15px;
  }
}