:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #f9f9f9;
  --card-border-color: #e0e0e0;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color-light); /* Assuming body background is light */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by shared body */
  background-color: var(--background-color-light);
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__hero-content h1 {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__hero-content p {
  font-size: 1.1em;
  color: var(--text-color-dark);
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: #1e87c0; /* Slightly darker primary color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--login {
  background-color: var(--login-color);
}

.page-promotions__cta-button--login:hover {
  background-color: #c96200;
}

.page-promotions__cta-button--download {
  background-color: #5cb85c;
}

.page-promotions__cta-button--download:hover {
  background-color: #4cae4c;
}

.page-promotions__section {
  padding: 60px 20px;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--text-color-dark);
}

.page-promotions__text-highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Featured Offers Section */
.page-promotions__featured-offers-section {
  background-color: var(--secondary-color);
}

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

.page-promotions__offer-card {
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--card-border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-color-dark);
}

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

.page-promotions__offer-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
  background: #1e87c0;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-promotions__how-to-claim-section .page-promotions__section-title,
.page-promotions__how-to-claim-section .page-promotions__section-description {
  color: var(--text-color-light);
}

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.page-promotions__step-number {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-right: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.page-promotions__step-content .page-promotions__step-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-promotions__step-content p {
  font-size: 1em;
  color: var(--text-color-light);
}

.page-promotions__step-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-promotions__step-content a:hover {
  color: #add8e6;
}

.page-promotions__button-group {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__button-group .page-promotions__cta-button {
  margin-top: 0;
}

/* Terms Section */
.page-promotions__terms-section {
  background-color: var(--secondary-color);
}

.page-promotions__terms-list {
  list-style: disc;
  margin: 0 auto;
  padding-left: 40px;
  max-width: 900px;
  font-size: 1em;
  color: var(--text-color-dark);
}

.page-promotions__terms-item {
  margin-bottom: 10px;
}

.page-promotions__terms-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions__terms-section a:hover {
  color: #1e87c0;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--background-color-light);
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--card-border-color);
  overflow: hidden;
  background: var(--secondary-color);
  color: var(--text-color-dark);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #f5f5f5;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #fdfdfd;
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
}

details.page-promotions__faq-item .page-promotions__faq-answer p {
  margin-bottom: 0;
}

details.page-promotions__faq-item .page-promotions__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

details.page-promotions__faq-item .page-promotions__faq-answer a:hover {
  color: #1e87c0;
}

/* CTA Bottom Section */
.page-promotions__cta-bottom-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
}

.page-promotions__cta-bottom-content .page-promotions__section-title,
.page-promotions__cta-bottom-content .page-promotions__section-description {
  color: var(--text-color-light);
}

.page-promotions__cta-bottom-content .page-promotions__cta-button {
  background: var(--login-color);
}

.page-promotions__cta-bottom-content .page-promotions__cta-button:hover {
  background: #c96200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  
  .page-promotions__hero-content h1 {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promotions__hero-content p {
    font-size: 1em;
  }

  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
  }

  .page-promotions__offer-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__offer-card {
    padding: 20px;
  }

  .page-promotions__offer-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-promotions__step-content .page-promotions__step-title {
    font-size: 1.2em;
  }

  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__button-group .page-promotions__cta-button {
    width: 100%;
  }

  .page-promotions__terms-list {
    padding-left: 25px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
  .page-promotions__faq-qtext { font-size: 1em; }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__offer-grid,
  .page-promotions__faq-list,
  .page-promotions__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content h1 {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}