:root {
  --primary-color: #FFD700;
  --secondary-color: #1E90FF;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-promotions {
  color: var(--text-light); /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-promotions__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark), #1a1a1a);
  overflow: hidden;
  border-bottom: 5px solid var(--primary-color);
}

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

.page-promotions__main-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions__btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

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

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions__overview-section {
  padding: 80px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__overview-section .page-promotions__section-title {
  color: var(--text-dark);
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__category-section {
  padding: 80px 0;
}

.page-promotions__category-section.page-promotions__dark-bg {
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions__category-section.page-promotions__dark-bg .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__category-section.page-promotions__dark-bg .page-promotions__card-title {
  color: var(--primary-color);
}

.page-promotions__category-section.page-promotions__light-bg {
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__category-section.page-promotions__light-bg .page-promotions__section-title {
  color: var(--text-dark);
}

.page-promotions__category-section.page-promotions__light-bg .page-promotions__card-title {
  color: var(--secondary-color);
}

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

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

.page-promotions__category-section.page-promotions__light-bg .page-promotions__card {
  background: var(--card-bg-light);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promotions__card-button {
  align-self: flex-start;
  padding: 12px 25px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-promotions__card--small {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-promotions__terms-section {
  padding: 80px 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions__terms-section .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__terms-list {
  list-style: disc inside;
  margin-left: 20px;
  font-size: 1.05em;
  margin-bottom: 30px;
}

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

.page-promotions__why-choose-section {
  padding: 80px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__why-choose-section .page-promotions__section-title {
  color: var(--text-dark);
}

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

.page-promotions__feature-item {
  background: var(--card-bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter applied */
}

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

.page-promotions__feature-description {
  font-size: 0.95em;
  color: var(--text-dark);
}

.page-promotions__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(45deg, #1a1a1a, var(--bg-dark));
  border-top: 5px solid var(--primary-color);
}

.page-promotions__cta-final-section .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__cta-final-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__text-block {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding: 60px 0;
  }
  .page-promotions__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 15px; /* Ensure buttons don't overflow */
  }
  .page-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__btn--large {
    padding: 15px 30px !important;
    font-size: 1em !important;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-promotions__overview-section, .page-promotions__category-section, .page-promotions__terms-section, .page-promotions__why-choose-section, .page-promotions__cta-final-section {
    padding: 50px 0;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-content {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__card-text {
    font-size: 0.95em;
  }
  .page-promotions__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__feature-icon {
    width: 100px;
    height: 100px;
  }
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-image, .page-promotions__cta-final-image {
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-promotions__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__terms-list {
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-promotions__feature-icon {
    width: 80px;
    height: 80px;
  }
}