/* style/index-sodo-latest-promotions.css */
.page-index-sodo-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-index-sodo-latest-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0A2463, #3a5c9f);
  color: #ffffff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-index-sodo-latest-promotions__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-index-sodo-latest-promotions__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Imperial Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-sodo-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-index-sodo-latest-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-sodo-latest-promotions__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed for visual */
  right: -50px; /* Adjust as needed for visual */
  width: 300px;
  height: 300px;
  opacity: 0.3;
  z-index: 0;
}

.page-index-sodo-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-index-sodo-latest-promotions__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-index-sodo-latest-promotions__section:last-of-type {
  border-bottom: none;
}

.page-index-sodo-latest-promotions__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-sodo-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-sodo-latest-promotions__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-index-sodo-latest-promotions__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-sodo-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-sodo-latest-promotions__promo-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-sodo-latest-promotions__promo-card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin: 25px 15px 15px;
}

.page-index-sodo-latest-promotions__promo-card-text {
  color: #555;
  padding: 0 15px 20px;
  font-size: 0.95em;
}

.page-index-sodo-latest-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.page-index-sodo-latest-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-index-sodo-latest-promotions__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-index-sodo-latest-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-sodo-latest-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-index-sodo-latest-promotions__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index-sodo-latest-promotions__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-index-sodo-latest-promotions__btn--inline {
  background-color: #0A2463;
  color: #FFD700;
  border: 1px solid #0A2463;
  padding: 8px 15px;
  font-size: 0.9em;
  margin-left: 10px;
}

.page-index-sodo-latest-promotions__btn--inline:hover {
  background-color: #1a3c7c;
  border-color: #1a3c7c;
  transform: translateY(-1px);
}

.page-index-sodo-latest-promotions__how-to-join {
  background-color: #f0f4f7;
}

.page-index-sodo-latest-promotions__step-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.page-index-sodo-latest-promotions__step-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: left;
}

.page-index-sodo-latest-promotions__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFD700;
  color: #0A2463;
  font-size: 1.5em;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid #0A2463;
}

.page-index-sodo-latest-promotions__step-item h4 {
  font-size: 1.3em;
  color: #0A2463;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 50px;
}

.page-index-sodo-latest-promotions__step-item p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-index-sodo-latest-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-index-sodo-latest-promotions__important-notes .page-index-sodo-latest-promotions__notes-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-index-sodo-latest-promotions__important-notes .page-index-sodo-latest-promotions__notes-list li {
  background-color: #fff3e0; /* Light orange for warnings */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #444;
}

.page-index-sodo-latest-promotions__important-notes .page-index-sodo-latest-promotions__notes-list li strong {
  color: #0A2463;
}

.page-index-sodo-latest-promotions__faq {
  background-color: #f0f4f7;
}

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

.page-index-sodo-latest-promotions__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-sodo-latest-promotions__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.page-index-sodo-latest-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-sodo-latest-promotions__faq-item.active .page-index-sodo-latest-promotions__faq-question::after {
  transform: rotate(45deg);
}

.page-index-sodo-latest-promotions__faq-answer {
  padding: 0 20px 20px;
  color: #666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-index-sodo-latest-promotions__faq-item.active .page-index-sodo-latest-promotions__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 10px;
}

.page-index-sodo-latest-promotions__conclusion {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #0A2463;
  color: #ffffff;
}

.page-index-sodo-latest-promotions__conclusion .page-index-sodo-latest-promotions__section-title {
  color: #FFD700;
}

.page-index-sodo-latest-promotions__conclusion .page-index-sodo-latest-promotions__section-title::after {
  background-color: #FFD700;
}

.page-index-sodo-latest-promotions__conclusion .page-index-sodo-latest-promotions__section-description {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-sodo-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-sodo-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-sodo-latest-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-sodo-latest-promotions__hero-image-wrapper {
    display: none; /* Hide image on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-index-sodo-latest-promotions__hero-content {
    margin-bottom: 20px;
  }
  .page-index-sodo-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-sodo-latest-promotions__btn--large {
    width: 100%;
  }
  .page-index-sodo-latest-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-sodo-latest-promotions__step-list {
    grid-template-columns: 1fr;
  }
  .page-index-sodo-latest-promotions__step-item::before {
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
  }
  .page-index-sodo-latest-promotions__step-item h4 {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
  .page-index-sodo-latest-promotions__step-item p {
    text-align: center;
  }
  .page-index-sodo-latest-promotions__btn--inline {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  .page-index-sodo-latest-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-index-sodo-latest-promotions__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-sodo-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-sodo-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-sodo-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-sodo-latest-promotions__section-description {
    font-size: 0.95em;
  }
}