/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary dark blue background */
}

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

.page-promotions__hero {
  position: relative;
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-promotions__hero .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #0A1931; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  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__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions__cta-button--secondary {
  background-color: #1a3a6b;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #0A1931;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-promotions__section {
  padding: 60px 0;
  position: relative;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #1a2a47; /* Slightly lighter dark blue for alternating sections */
}

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

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

.page-promotions__introduction p, .page-promotions__how-to-claim p, .page-promotions__terms-conditions p,
.page-promotions__why-m88sut p, .page-promotions__faq p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #c0c0c0;
}

.page-promotions__introduction a, .page-promotions__how-to-claim a, .page-promotions__terms-conditions a,
.page-promotions__why-m88sut a, .page-promotions__faq a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__introduction a:hover, .page-promotions__how-to-claim a:hover, .page-promotions__terms-conditions a:hover,
.page-promotions__why-m88sut a:hover, .page-promotions__faq a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions__image-right {
  float: right;
  margin: 0 0 20px 40px;
  width: 40%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions__image-left {
  float: left;
  margin: 0 40px 20px 0;
  width: 40%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

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

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

.page-promotions__grid-item:hover {
  transform: translateY(-10px);
  background-color: #2a3a57;
}

.page-promotions__grid-item .page-promotions__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions__grid-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-promotions__link-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__link-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__how-to-claim .page-promotions__steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  clear: both;
}

.page-promotions__how-to-claim .page-promotions__steps li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-promotions__how-to-claim .page-promotions__steps strong {
  color: #FFD700;
}

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

.page-promotions__list-item {
  background-color: #1a2a47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promotions__list-item:hover {
  transform: translateY(-8px);
}

.page-promotions__list-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-promotions__list-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__list-content h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__list-content h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__list-content h3 a:hover {
  text-decoration: underline;
}

.page-promotions__list-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-promotions__detail-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__terms-conditions ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__terms-conditions ul li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #c0c0c0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-conditions ul li strong {
  color: #FFD700;
}

.page-promotions__why-m88sut .page-promotions__advantages {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  clear: both;
}

.page-promotions__why-m88sut .page-promotions__advantages li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #c0c0c0;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__why-m88sut .page-promotions__advantages li::before {
  content: '✔';
  color: #FFD700;
  font-size: 1.4em;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions__faq-item {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item h3.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__faq-item p {
  color: #c0c0c0;
  font-size: 1em;
  line-height: 1.6;
  display: none; /* Hidden by default */
  margin-top: 10px;
}

.page-promotions__faq-item h3.active + p {
  display: block;
}

@media (max-width: 992px) {
  .page-promotions__title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__image-right, .page-promotions__image-left {
    float: none;
    margin: 20px auto;
    width: 80%;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__title {
    font-size: 2.2em;
  }
  .page-promotions__subtitle {
    font-size: 1.1em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__introduction p, .page-promotions__how-to-claim p,
  .page-promotions__terms-conditions p, .page-promotions__why-m88sut p,
  .page-promotions__faq p {
    font-size: 1em;
  }
  .page-promotions__grid-item h3 {
    font-size: 1.3em;
  }
  .page-promotions__list-content h3 {
    font-size: 1.4em;
  }
}

@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__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions__step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-promotions__image-right, .page-promotions__image-left {
    width: 95%;
  }
}