.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.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, .page-index-latest-promotions h4 {
  color: #8B0000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-latest-promotions h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-latest-promotions h3 {
  font-size: 1.8em;
  color: #8B0000;
  margin-top: 30px;
}

.page-index-latest-promotions h4 {
  font-size: 1.4em;
  color: #8B0000;
}

.page-index-latest-promotions p {
  margin-bottom: 15px;
}

/* 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;
  background: #1a1a1a; /* Dark background for contrast */
  color: #ffffff;
}

.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;
}

.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: 10px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-index-latest-promotions .hero-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-index-latest-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary color */
  color: #8B0000; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-index-latest-promotions .cta-button:hover {
  background: #8B0000; /* Secondary color on hover */
  color: #FFD700; /* Primary color text on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

.page-index-latest-promotions .large-button {
  padding: 18px 50px;
  font-size: 1.4em;
}

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

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

.page-index-latest-promotions .intro-card {
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions .intro-card .card-image {
  width: 100%;
  max-width: 300px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-latest-promotions .intro-card h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-latest-promotions .intro-card p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-index-latest-promotions .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #8B0000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-index-latest-promotions .btn-small:hover {
  background: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

/* Promotions List Section */
.page-index-latest-promotions .section-promotions-list {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-index-latest-promotions .promotion-category {
  margin-bottom: 50px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions .promotion-category h3 {
  font-size: 2em;
  color: #8B0000;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.page-index-latest-promotions .promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 25px;
  background: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions .promo-image {
  flex-shrink: 0;
  width: 300px; /* Min size */
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions .promo-details h4 {
  margin-top: 0;
  color: #8B0000;
  font-size: 1.6em;
}

.page-index-latest-promotions .promo-details p {
  color: #555555;
  margin-bottom: 15px;
}

.page-index-latest-promotions .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #8B0000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
  margin-top: 10px;
}

.page-index-latest-promotions .btn-promo:hover {
  background: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-index-latest-promotions .final-cta-text {
  font-size: 1.5em;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #8B0000;
  font-weight: bold;
}

.page-index-latest-promotions .center-button {
  text-align: center;
  margin-bottom: 50px;
}

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

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

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

.page-index-latest-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-index-latest-promotions .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

.page-index-latest-promotions .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.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: #ffffff;
  color: #555555;
}

.page-index-latest-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-index-latest-promotions .faq-answer p {
  margin-bottom: 0;
}

/* Contact Section */
.page-index-latest-promotions .section-contact {
  padding: 60px 0;
  text-align: center;
  background-color: #f2f2f2;
}

.page-index-latest-promotions .section-contact p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions h1 {
    font-size: 2.8em;
  }
  .page-index-latest-promotions h2 {
    font-size: 2em;
  }
  .page-index-latest-promotions h3 {
    font-size: 1.6em;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 1.1em;
  }
  .page-index-latest-promotions .promotion-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-index-latest-promotions .promo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions h1 {
    font-size: 2.2em;
  }
  .page-index-latest-promotions h2 {
    font-size: 1.8em;
  }
  .page-index-latest-promotions h3 {
    font-size: 1.4em;
  }
  .page-index-latest-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-index-latest-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-latest-promotions .large-button {
    padding: 15px 40px;
    font-size: 1.2em;
  }
  .page-index-latest-promotions .section-intro, .page-index-latest-promotions .section-promotions-list, .page-index-latest-promotions .section-faq, .page-index-latest-promotions .section-contact {
    padding: 40px 0;
  }
  .page-index-latest-promotions .intro-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions .promotion-category {
    padding: 20px;
  }
  .page-index-latest-promotions .promotion-item {
    padding: 15px;
  }
  .page-index-latest-promotions .promo-details h4 {
    font-size: 1.4em;
  }
  .page-index-latest-promotions .btn-promo {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .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-answer {
    padding: 0 20px;
  }
  .page-index-latest-promotions .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions h1 {
    font-size: 1.8em;
  }
  .page-index-latest-promotions h2 {
    font-size: 1.6em;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 1em;
  }
  .page-index-latest-promotions .cta-button {
    width: 90%;
    font-size: 1em;
  }
  .page-index-latest-promotions .large-button {
    width: 90%;
    font-size: 1.1em;
  }
  .page-index-latest-promotions .final-cta-text {
    font-size: 1.2em;
  }
  .page-index-latest-promotions .promo-image {
    width: 100%;
    height: auto;
  }
}