.page-promotions-weekly-reload {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2E36; /* Deep Sea Blue as primary background */
  line-height: 1.6;
}

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

.page-promotions-weekly-reload__hero-section {
  background: linear-gradient(135deg, #0A2E36 0%, #0D3E46 50%, #155A66 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  border-bottom: 2px solid #FFD700;
}

.page-promotions-weekly-reload__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFD700;
}

.page-promotions-weekly-reload__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-promotions-weekly-reload__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2E36;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-weekly-reload__cta-button:hover {
  background-color: #FFC400;
  transform: translateY(-3px);
}

.page-promotions-weekly-reload__cta-button--secondary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-promotions-weekly-reload__cta-button--secondary:hover {
  background-color: #1A4E56;
  color: #FFD700;
}

.page-promotions-weekly-reload__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.page-promotions-weekly-reload__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions-weekly-reload__benefits-section,
.page-promotions-weekly-reload__how-it-works-section,
.page-promotions-weekly-reload__guide-section,
.page-promotions-weekly-reload__terms-section,
.page-promotions-weekly-reload__faq-section,
.page-promotions-weekly-reload__conclusion-section {
  padding: 60px 0;
}

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

.page-promotions-weekly-reload__benefit-item {
  background-color: #1A4E56;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions-weekly-reload__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-weekly-reload__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions-weekly-reload__benefit-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-weekly-reload__benefit-item p {
  color: #CCCCCC;
  font-size: 1em;
}

.page-promotions-weekly-reload__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-promotions-weekly-reload__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-promotions-weekly-reload__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-weekly-reload__list,
.page-promotions-weekly-reload__steps-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions-weekly-reload__steps-list {
  list-style-type: decimal;
  font-size: 1.1em;
}

.page-promotions-weekly-reload__list li,
.page-promotions-weekly-reload__steps-list li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-promotions-weekly-reload__list li strong,
.page-promotions-weekly-reload__steps-list li strong {
  color: #FFD700;
}

.page-promotions-weekly-reload__inline-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-weekly-reload__inline-link:hover {
  color: #FFC400;
}

.page-promotions-weekly-reload__cta-group {
  text-align: center;
  margin-top: 40px;
}

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

.page-promotions-weekly-reload__faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-promotions-weekly-reload__faq-item p {
  color: #CCCCCC;
  font-size: 1em;
}

.page-promotions-weekly-reload__conclusion-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-weekly-reload__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-weekly-reload__hero-description {
    font-size: 1em;
  }

  .page-promotions-weekly-reload__section-title {
    font-size: 2em;
  }

  .page-promotions-weekly-reload__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-weekly-reload__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-weekly-reload__cta-button--secondary {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .page-promotions-weekly-reload__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-promotions-weekly-reload__hero-title {
    font-size: 2em;
  }

  .page-promotions-weekly-reload__section-title {
    font-size: 1.8em;
  }

  .page-promotions-weekly-reload__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}