/* style/resources-6ff-latest-promotions.css */
.page-resources-6ff-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-resources-6ff-latest-promotions__hero {
  background: linear-gradient(135deg, #1A202C, #3A3F47);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-6ff-latest-promotions__hero-title {
  font-size: 3.2em;
  color: #E0B400; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-6ff-latest-promotions__hero-subtitle {
  font-size: 1.2em;
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-6ff-latest-promotions__cta-button {
  display: inline-block;
  background-color: #E0B400; /* Accent color for buttons */
  color: #1A202C; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-6ff-latest-promotions__cta-button:hover {
  background-color: #F2C700;
  transform: translateY(-2px);
}

.page-resources-6ff-latest-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-6ff-latest-promotions__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 180, 0, 0.1);
}

.page-resources-6ff-latest-promotions__section:last-of-type {
  border-bottom: none;
}

.page-resources-6ff-latest-promotions__section-title {
  font-size: 2.5em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-6ff-latest-promotions__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-resources-6ff-latest-promotions__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-resources-6ff-latest-promotions__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-6ff-latest-promotions__text-content {
  flex: 1;
}

.page-resources-6ff-latest-promotions__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-resources-6ff-latest-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-6ff-latest-promotions__image--small {
  max-width: 250px;
  display: block;
  margin: 20px auto;
}

.page-resources-6ff-latest-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-6ff-latest-promotions__grid-item {
  background-color: #2A2F3C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 280px;
}

.page-resources-6ff-latest-promotions__item-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-resources-6ff-latest-promotions__grid-item p {
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-6ff-latest-promotions__small-button {
  display: inline-block;
  background-color: #E0B400;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
}

.page-resources-6ff-latest-promotions__small-button:hover {
  background-color: #F2C700;
  transform: translateY(-1px);
}

.page-resources-6ff-latest-promotions__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.5));
}

.page-resources-6ff-latest-promotions__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-resources-6ff-latest-promotions__steps li {
  background-color: #2A2F3C;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 90px;
}

.page-resources-6ff-latest-promotions__steps li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #E0B400;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 0 10px rgba(224, 180, 0, 0.5);
}

.page-resources-6ff-latest-promotions__step-title {
  color: #E0B400;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-resources-6ff-latest-promotions__steps li p {
  color: #B0B0B0;
  margin-bottom: 15px;
}

.page-resources-6ff-latest-promotions__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-6ff-latest-promotions__list li {
  background-color: #2A2F3C;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #C0C0C0;
  position: relative;
  padding-left: 45px;
}

.page-resources-6ff-latest-promotions__list li strong {
  color: #E0B400;
}

.page-resources-6ff-latest-promotions__list li::before {
  content: '✓';
  color: #E0B400;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-resources-6ff-latest-promotions__faq-item {
  background-color: #2A2F3C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-6ff-latest-promotions__faq-question {
  font-size: 1.4em;
  color: #E0B400;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-6ff-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-6ff-latest-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-6ff-latest-promotions__faq-answer {
  color: #B0B0B0;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-resources-6ff-latest-promotions__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content length */
  padding-top: 10px;
}

.page-resources-6ff-latest-promotions__call-to-action-bottom {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #1A202C, #3A3F47);
}

.page-resources-6ff-latest-promotions__call-to-action-bottom .page-resources-6ff-latest-promotions__section-title {
  color: #E0B400;
}

.page-resources-6ff-latest-promotions__call-to-action-bottom p {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-6ff-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-resources-6ff-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-resources-6ff-latest-promotions__content-wrapper {
    flex-direction: column;
  }
  .page-resources-6ff-latest-promotions__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-resources-6ff-latest-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources-6ff-latest-promotions__steps li {
    padding-left: 30px;
    padding-top: 80px;
  }
  .page-resources-6ff-latest-promotions__steps li::before {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-resources-6ff-latest-promotions__hero {
    padding: 80px 0 40px;
  }
  .page-resources-6ff-latest-promotions__hero-title {
    font-size: 2em;
  }
  .page-resources-6ff-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-6ff-latest-promotions__section {
    padding: 40px 0;
  }
  .page-resources-6ff-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-resources-6ff-latest-promotions__grid-item {
    min-height: auto;
  }
  .page-resources-6ff-latest-promotions__item-title {
    font-size: 1.4em;
  }
  .page-resources-6ff-latest-promotions__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-6ff-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-resources-6ff-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-resources-6ff-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-resources-6ff-latest-promotions__grid-item {
    padding: 20px;
  }
  .page-resources-6ff-latest-promotions__steps li {
    padding: 20px 20px 20px 20px;
    padding-top: 70px;
  }
  .page-resources-6ff-latest-promotions__steps li::before {
    width: 40px;
    height: 40px;
    font-size: 1em;
    top: 20px;
  }
  .page-resources-6ff-latest-promotions__step-title {
    font-size: 1.4em;
  }
}