.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-promotions-hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-promotions-hero > .page-promotions-container {
  position: relative;
  z-index: 2;
}

.page-promotions-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions-hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: auto;
  z-index: 0;
  opacity: 0.2;
}

.page-promotions-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-promotions-btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #0056b3; /* Darker variant of primary color for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions-btn-secondary {
  background-color: #007bff; /* Primary color */
  color: #fff;
  border: 1px solid #007bff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.page-promotions-btn-secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-promotions-btn-link {
  background: none;
  color: #007bff;
  padding: 10px 0;
  font-size: 1em;
  border-bottom: 2px solid #007bff;
  border-radius: 0;
}

.page-promotions-btn-link:hover {
  color: #0056b3;
  border-color: #0056b3;
}

.page-promotions-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promotions-section:nth-of-type(even) {
  background-color: #fff;
}

.page-promotions-section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-promotions-feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #ffc107;
}

.page-promotions-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-card-text {
  font-size: 1em;
  color: #666;
}

.page-promotions-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-detail-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
}

.page-promotions-detail-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background-color: #e6f2ff; /* Light blue background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promotions-detail-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.page-promotions-detail-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-detail-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-promotions-step {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  border-bottom: 4px solid #007bff;
}

.page-promotions-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffc107;
  color: #0056b3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-promotions-guide-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-terms {
  background-color: #f0f8ff; /* Lighter blue background */
}

.page-promotions-terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-terms-list li {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #007bff;
}

.page-promotions-list-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-list-text {
  font-size: 1em;
  color: #555;
}

.page-promotions-app-download {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
}

.page-promotions-app-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promotions-app-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions-app-content .page-promotions-section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}

.page-promotions-app-content .page-promotions-text {
  color: #f0f0f0;
  text-align: left;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

.page-promotions-app-image-wrapper {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-faq {
  background-color: #f9f9f9;
}

.page-promotions-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-accordion-header {
  padding: 20px 25px;
  font-size: 1.3em;
  color: #007bff;
  background-color: #eaf6ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
}

.page-promotions-accordion-header.active {
  background-color: #d1e7ff;
}

.page-promotions-accordion-header.active::after {
  content: '-';
}

.page-promotions-accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-accordion-content p {
  margin-bottom: 15px;
  color: #555;
}

.page-promotions-accordion-content .page-promotions-btn {
  margin-top: 10px;
  margin-bottom: 20px;
}

.page-promotions-cta {
  background: linear-gradient(135deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-promotions-cta .page-promotions-title {
  font-size: 3em;
  color: #fff;
  margin-bottom: 25px;
}

.page-promotions-cta .page-promotions-subtitle {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-hero {
    padding: 60px 0;
  }

  .page-promotions-title {
    font-size: 2.8em;
  }

  .page-promotions-subtitle {
    font-size: 1.1em;
  }

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

  .page-promotions-app-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-app-content .page-promotions-section-title,
  .page-promotions-app-content .page-promotions-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-promotions-hero {
    padding: 50px 0;
  }

  .page-promotions-title {
    font-size: 2.2em;
  }

  .page-promotions-subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-promotions-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-text {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-promotions-grid,
  .page-promotions-detail-list,
  .page-promotions-guide-steps {
    grid-template-columns: 1fr;
  }

  .page-promotions-feature-card, .page-promotions-detail-item, .page-promotions-step {
    padding: 25px;
  }

  .page-promotions-card-title, .page-promotions-detail-title, .page-promotions-step-title {
    font-size: 1.4em;
  }

  .page-promotions-accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-cta .page-promotions-title {
    font-size: 2.5em;
  }

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

  .page-promotions-cta-buttons .page-promotions-btn {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-promotions-subtitle {
    font-size: 0.9em;
  }

  .page-promotions-section-title {
    font-size: 1.5em;
  }

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

  .page-promotions-cta-buttons .page-promotions-btn {
    width: 95%;
  }
}