.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 60px 0;
  text-align: center;
  color: var(--text-main);
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: 50px; /* Adjust to ensure text is below the image visual area */
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-secondary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  margin-left: 20px;
}

.page-promotions__btn-secondary:hover {
  background-color: var(--main-color);
  color: #F2FFF6;
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  color: var(--text-main);
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions__text-content {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: var(--text-secondary);
}

.page-promotions__intro-section {
  padding: 80px 0;
  background-color: #08160F;
  color: var(--text-main);
}

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

.page-promotions__feature-item {
  text-align: center;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-promotions__categories-section {
  padding: 80px 0;
  background-color: var(--bg);
  color: var(--text-main);
}

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

.page-promotions__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 20px 10px 20px;
  color: var(--text-main);
}

.page-promotions__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
  color: var(--text-secondary);
}

.page-promotions__card-button {
  display: block;
  margin: 0 20px 20px 20px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-color: var(--secondary-color);
  color: #F2FFF6;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #1a9e53;
}

.page-promotions__detail-promotions-section {
  padding: 80px 0;
  background-color: #0A4B2C;
  color: var(--text-main);
}

.page-promotions__promo-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  padding: 30px;
  background-color: var(--card-bg);
  border: 1px solid var(--divider);
}

.page-promotions__promo-card:last-child {
  margin-bottom: 0;
}

.page-promotions__promo-image-wrapper {
  margin-bottom: 25px;
}

.page-promotions__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-promotions__promo-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-secondary);
}

.page-promotions__promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__promo-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-main);
}

.page-promotions__promo-bullet {
  color: var(--glow);
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1;
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #08160F;
  color: var(--text-main);
}

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

.page-promotions__step-item {
  text-align: center;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glow), var(--main-color));
  color: #F2FFF6;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promotions__faq-section {
  padding: 80px 0;
  background-color: var(--bg);
  color: var(--text-main);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--divider);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #11271B;
  color: var(--text-main);
  border-bottom: 1px solid var(--divider);
  list-style: none;
}

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

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

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: var(--glow);
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: #0A4B2C;
}

.page-promotions__final-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F;
  color: var(--text-main);
}

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

/* Custom colors */
:root {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-promotions__promo-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .page-promotions__promo-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-promotions__promo-image-wrapper {
    flex: 1;
    min-width: 45%;
    margin-bottom: 0;
  }

  .page-promotions__promo-content {
    flex: 1;
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-promotions__promo-card:nth-child(even) .page-promotions__promo-content {
    padding-left: 40px;
    padding-right: 0;
  }

  .page-promotions__promo-card:nth-child(odd) .page-promotions__promo-content {
    padding-right: 40px;
    padding-left: 0;
  }
}

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

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

  .page-promotions__description {
    font-size: 0.95rem;
  }

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

  .page-promotions__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

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

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

  .page-promotions__text-content {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .page-promotions__feature-item, .page-promotions__category-card, .page-promotions__promo-card, .page-promotions__step-item {
    margin-bottom: 20px;
  }

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

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__promo-title {
    font-size: 1.5rem;
  }

  .page-promotions__promo-description {
    font-size: 0.95rem;
  }

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

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

  .page-promotions__promo-features li {
    font-size: 0.95rem;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  /* Mobile responsive for images, videos, and containers */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__hero-section, .page-promotions__intro-section, .page-promotions__categories-section, .page-promotions__detail-promotions-section, .page-promotions__how-to-claim-section, .page-promotions__faq-section, .page-promotions__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
  }

  .page-promotions__hero-image-wrapper {
    position: relative;
    height: 250px;
  }
  .page-promotions__hero-image {
    filter: brightness(0.7);
  }

  .page-promotions__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin-top: 0;
  }

  .page-promotions__hero-section .page-promotions__cta-button {
    margin-top: 20px;
  }

  .page-promotions__promo-card:nth-child(even) .page-promotions__promo-content,
  .page-promotions__promo-card:nth-child(odd) .page-promotions__promo-content {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__cta-bottom .page-promotions__cta-button {
    margin: 0 auto;
  }

  .page-promotions__faq-question {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.7rem;
  }

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

  .page-promotions__cta-button {
    font-size: 0.95rem;
    padding: 10px 15px;
  }

  .page-promotions__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}