.page-promotions {
  color: #FFFFFF;
  background-color: #0a0909; /* Dark background for the main content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #0a0909;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* 1920x600 ratio */
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

.page-promotions__hero-content {
  max-width: 1200px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

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

.page-promotions__cta-button--small {
  padding: 12px 25px;
  font-size: 1rem;
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFF;
  padding-top: 40px;
}

.page-promotions__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  color: #E0E0E0;
}

.page-promotions__current-promotions {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__promotion-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions__card-description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #B0B0B0;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #017439; /* Main color */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #005a2d;
}

.page-promotions__how-to-participate {
  padding: 60px 20px;
  background-color: #0a0909;
}

.page-promotions__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.page-promotions__step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-icon {
  font-size: 2.5rem;
  font-weight: bold;
  color: #C30808; /* Register/Login button color */
  margin-bottom: 15px;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: #B0B0B0;
}

.page-promotions__terms-conditions {
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.page-promotions__content-block {
  max-width: 900px;
  margin: 40px auto 0 auto;
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-conditions p,
.page-promotions__terms-conditions li {
  color: #B0B0B0;
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-promotions__terms-conditions ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 15px;
}

.page-promotions__link-text {
  color: #C30808; /* Register/Login button color */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__link-text:hover {
  color: #FFFF00; /* Register/Login font color */
}

.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #0a0909;
}

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

.page-promotions__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #B0B0B0;
}

.page-promotions__cta-bottom {
  text-align: center;
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.page-promotions__cta-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-promotions__section-intro {
    font-size: 1rem;
  }
  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__step-title {
    font-size: 1.1rem;
  }
  .page-promotions__faq-question {
    font-size: 1.1rem;
  }
  .page-promotions__cta-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-promotions__hero-section,
  .page-promotions__current-promotions,
  .page-promotions__how-to-participate,
  .page-promotions__terms-conditions,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-promotions__promotion-grid,
  .page-promotions__steps-list,
  .page-promotions__content-block,
  .page-promotions__faq-list {
    padding: 0;
  }
  .page-promotions__terms-conditions table {
    overflow-x: auto;
    display: block;
    white-space: nowrap; /* Prevent text wrapping in table cells */
  }
}

@media (max-width: 549px) {
  .page-promotions__main-title {
    font-size: clamp(1.1rem, 7vw, 2rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__section-intro {
    font-size: 0.9rem;
  }
  .page-promotions__card-title {
    font-size: 1.1rem;
  }
  .page-promotions__card-description {
    font-size: 0.9rem;
  }
  .page-promotions__step-title {
    font-size: 1rem;
  }
  .page-promotions__step-description {
    font-size: 0.85rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
  }
  .page-promotions__faq-answer {
    font-size: 0.9rem;
  }
  .page-promotions__cta-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__cta-description {
    font-size: 0.9rem;
  }
}