.page-promotions {
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--bg-color); /* Body background from shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px; /* Limit height for aesthetic */
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  padding: 0 15px;
}

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

.page-promotions__description {
  font-size: 1.1rem;
  color: var(--text-main);
  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;
}

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--bg-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__dark-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-promotions__light-bg {
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main);
}

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

.page-promotions__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.page-promotions__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  padding: 0 20px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: var(--text-main);
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-text a {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-promotions__card-text a:hover {
  color: #FFB04A;
}

.page-promotions__card-button {
  margin-top: auto; /* Push button to the bottom */
  padding: 12px 25px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.page-promotions__how-to-get {
  background-color: var(--deep-red);
}

.page-promotions__how-to-get .page-promotions__section-title {
  color: var(--gold-color);
}

.page-promotions__how-to-get .page-promotions__section-description {
  color: var(--text-main);
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

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

.page-promotions__step-icon {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 15px;
  background: var(--deep-red);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-color);
}

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

.page-promotions__step-text {
  font-size: 1rem;
  color: var(--text-main);
}

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

.page-promotions__step-text a:hover {
  color: #FFB04A;
}

.page-promotions__step-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-top: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__why-choose .page-promotions__section-title {
  color: var(--gold-color);
}

.page-promotions__why-choose .page-promotions__section-description {
  color: var(--text-main);
}

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

.page-promotions__feature-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.page-promotions__feature-text {
  font-size: 1rem;
  color: var(--text-main);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__feature-button {
  margin-top: auto;
  padding: 12px 25px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.page-promotions__faq-section {
  background-color: var(--deep-red);
  position: relative;
  padding-bottom: 100px; /* Space for image */
}

.page-promotions__faq-section .page-promotions__section-title {
  color: var(--gold-color);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-color);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

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

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

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

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
}

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

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

.page-promotions__faq-answer a:hover {
  color: #FFB04A;
}

.page-promotions__faq-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__conclusion-section {
  text-align: center;
  padding: 80px 20px;
}

.page-promotions__conclusion-section .page-promotions__section-title {
  color: var(--gold-color);
  margin-bottom: 25px;
}

.page-promotions__conclusion-section .page-promotions__section-description {
  color: var(--text-main);
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-image {
    max-height: 550px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions__hero-image {
    max-height: 400px;
    margin-bottom: 20px;
  }

  .page-promotions__main-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .page-promotions__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .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;
  }

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

  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

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

  .page-promotions__card-image {
    height: 180px;
  }

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

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

  .page-promotions__step-title,
  .page-promotions__feature-title {
    font-size: 1.3rem;
  }

  .page-promotions__step-text,
  .page-promotions__feature-text {
    font-size: 0.95rem;
  }

  .page-promotions__faq-list {
    padding: 0;
  }

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

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

  .page-promotions__faq-image {
    max-width: 100%;
    margin-top: 30px;
  }

  .page-promotions__conclusion-section {
    padding: 60px 15px;
  }

  /* Mobile image and container responsiveness */
  .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__how-to-get,
  .page-promotions__why-choose,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section,
  .page-promotions__grid-container,
  .page-promotions__steps-container,
  .page-promotions__features-grid,
  .page-promotions__faq-list {
    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,
  .page-promotions__how-to-get,
  .page-promotions__why-choose,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__faq-section {
    padding-top: 40px !important;
  }
}