.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for general content on dark background */
  background-color: #1A202C;
}

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

.page-index-latest-promotions h1, .page-index-latest-promotions h2, .page-index-latest-promotions h3 {
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 30px;
}

.page-index-latest-promotions h1 {
  font-size: 3.5em;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions h2 {
  font-size: 2.5em;
  margin-top: 60px;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-index-latest-promotions h3 {
  font-size: 1.8em;
  color: #F0F0F0; /* Slightly lighter for sub-headings */
  margin-bottom: 20px;
}

.page-index-latest-promotions p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-latest-promotions a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-latest-promotions a:hover {
  color: #FFF;
  text-decoration: underline;
}

.page-index-latest-promotions .cta-button, .page-index-latest-promotions .btn-primary, .page-index-latest-promotions .btn-secondary, .page-index-latest-promotions .btn-tertiary {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .cta-button {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A202C;
  border: none;
  margin-top: 30px;
}

.page-index-latest-promotions .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  color: #1A202C;
}

.page-index-latest-promotions .btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
}

.page-index-latest-promotions .btn-primary:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #1A202C;
}

.page-index-latest-promotions .btn-secondary {
  background-color: #3A4750; /* Darker shade of primary */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-index-latest-promotions .btn-secondary:hover {
  background-color: #4A5760;
  color: #FFF;
  border-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 25px;
  font-size: 1em;
}

.page-index-latest-promotions .btn-tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-index-latest-promotions .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.page-index-latest-promotions .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-index-latest-promotions .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-latest-promotions .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-index-latest-promotions .hero-content p {
  color: #C0C0C0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 0 auto;
}

/* Section Intro */
.page-index-latest-promotions .section-intro {
  padding: 80px 0;
  background-color: #282C35;
  text-align: center;
}

.page-index-latest-promotions .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

/* Offers Grid */
.page-index-latest-promotions .section-offers-grid {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index-latest-promotions .offer-card {
  background-color: #282C35;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions .offer-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-latest-promotions .offer-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin: 0 20px 15px 20px;
  text-align: center;
}

.page-index-latest-promotions .offer-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-latest-promotions .offer-card h3 a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions .offer-card p {
  font-size: 1em;
  color: #C0C0C0;
  padding: 0 20px;
  flex-grow: 1;
  text-align: center;
}

.page-index-latest-promotions .offer-card .btn-primary {
  margin-top: 25px;
  padding: 12px 30px;
  font-size: 1em;
}

/* VIP Section */
.page-index-latest-promotions .section-vip {
  padding: 80px 0;
  background-color: #282C35;
}

.page-index-latest-promotions .vip-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-index-latest-promotions .vip-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-index-latest-promotions .vip-text {
  flex: 1;
  min-width: 300px;
  color: #C0C0C0;
}

.page-index-latest-promotions .vip-text h3 {
  text-align: left;
  color: #FFD700;
  margin-top: 0;
}

.page-index-latest-promotions .vip-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-latest-promotions .vip-text li {
  background-color: #3A4750;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .vip-text li strong {
  color: #FFD700;
  margin-right: 8px;
}

.page-index-latest-promotions .vip-text .btn-secondary {
  margin-top: 30px;
}

/* Guide Section */
.page-index-latest-promotions .section-guide {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index-latest-promotions .step-item {
  background-color: #282C35;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-latest-promotions .step-icon {
  background-color: #FFD700;
  color: #1A202C;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .step-item h3 {
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions .step-item p {
  color: #C0C0C0;
  flex-grow: 1;
}

.page-index-latest-promotions .step-item .btn-tertiary {
  margin-top: 20px;
}

.page-index-latest-promotions .terms-conditions {
  background-color: #282C35;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.page-index-latest-promotions .terms-conditions h3 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-index-latest-promotions .terms-conditions p {
  color: #C0C0C0;
}

/* Why Choose Section */
.page-index-latest-promotions .section-why-choose {
  padding: 80px 0;
  background-color: #282C35;
}

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

.page-index-latest-promotions .reason-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-latest-promotions .reason-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index-latest-promotions .reason-item h3 {
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions .reason-item p {
  color: #C0C0C0;
  font-size: 1em;
}

/* FAQ Section */
.page-index-latest-promotions .section-faq {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index-latest-promotions .faq-list {
  margin-top: 40px;
}

.page-index-latest-promotions .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-index-latest-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #282C35;
  border: 1px solid #3A4750;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions .faq-question:hover {
  background: #3A4750;
}

.page-index-latest-promotions .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700;
  text-align: left;
  flex-grow: 1;
}

.page-index-latest-promotions .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-index-latest-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #3A4750;
  color: #E0E0E0;
  border-radius: 0 0 8px 8px;
}

.page-index-latest-promotions .faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  text-align: left;
}

.page-index-latest-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-index-latest-promotions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Blog Promotions Section */
.page-index-latest-promotions .section-blog-promotions {
  padding: 80px 0;
  background-color: #282C35;
}

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

.page-index-latest-promotions .blog-card {
  background-color: #1A202C;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-latest-promotions .blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions .blog-content h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}

.page-index-latest-promotions .blog-content h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-latest-promotions .blog-content h3 a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions .blog-content p {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  text-align: left;
}

.page-index-latest-promotions .blog-date {
  font-size: 0.85em;
  color: #888;
  text-align: right;
  display: block;
  margin-top: auto;
}

.page-index-latest-promotions .view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-promotions h1 {
    font-size: 3em;
  }
  .page-index-latest-promotions h2 {
    font-size: 2em;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 1.1em;
  }
  .page-index-latest-promotions .vip-content {
    flex-direction: column;
    align-items: center;
  }
  .page-index-latest-promotions .vip-image {
    max-width: 80%;
  }
  .page-index-latest-promotions .vip-text {
    text-align: center;
  }
  .page-index-latest-promotions .vip-text h3 {
    text-align: center;
  }
  .page-index-latest-promotions .vip-text ul {
    padding-left: 20px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions h1 {
    font-size: 2.5em;
  }
  .page-index-latest-promotions h2 {
    font-size: 1.8em;
  }
  .page-index-latest-promotions h3 {
    font-size: 1.5em;
  }
  .page-index-latest-promotions p {
    font-size: 1em;
  }
  .page-index-latest-promotions .cta-button, .page-index-latest-promotions .btn-primary, .page-index-latest-promotions .btn-secondary, .page-index-latest-promotions .btn-tertiary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-index-latest-promotions .hero-image img {
    border-radius: 8px;
  }
  .page-index-latest-promotions .offer-card .card-image {
    height: 180px;
  }
  .page-index-latest-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-index-latest-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-latest-promotions .faq-toggle {
    font-size: 1.8em;
  }
  .page-index-latest-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-index-latest-promotions .faq-answer p {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-index-latest-promotions .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
  .page-index-latest-promotions .blog-image {
    height: 160px;
  }
  .page-index-latest-promotions .blog-content h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions h1 {
    font-size: 2em;
  }
  .page-index-latest-promotions h2 {
    font-size: 1.6em;
    margin-top: 40px;
  }
  .page-index-latest-promotions h3 {
    font-size: 1.3em;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 0.95em;
  }
  .page-index-latest-promotions .cta-button {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  .page-index-latest-promotions .offer-card {
    padding-bottom: 20px;
  }
  .page-index-latest-promotions .offer-card h3 {
    font-size: 1.3em;
  }
  .page-index-latest-promotions .offer-card p {
    font-size: 0.9em;
  }
  .page-index-latest-promotions .section-intro, .page-index-latest-promotions .section-offers-grid, .page-index-latest-promotions .section-vip, .page-index-latest-promotions .section-guide, .page-index-latest-promotions .section-why-choose, .page-index-latest-promotions .section-faq, .page-index-latest-promotions .section-blog-promotions {
    padding: 50px 0;
  }
  .page-index-latest-promotions .vip-image {
    max-width: 100%;
  }
  .page-index-latest-promotions .terms-conditions {
    padding: 30px 20px;
  }
  .page-index-latest-promotions .reason-icon {
    width: 100px;
    height: 100px;
  }
  .page-index-latest-promotions .faq-question h3 {
    font-size: 1em;
  }
  .page-index-latest-promotions .faq-toggle {
    font-size: 1.5em;
  }
  .page-index-latest-promotions .blog-content h3 {
    font-size: 1.1em;
  }
  .page-index-latest-promotions .blog-content p {
    font-size: 0.85em;
  }
}