.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

/* HERO Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  min-height: 500px; /* Ensure hero has a minimum height */
}

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

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.3);
}

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

.page-promotions__main-title {
  font-size: clamp(36px, 5vw, 56px);
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-promotions__description {
  font-size: 19px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Ensure contrast with button background */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
  border: none;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

/* Section styles */
.page-promotions__intro-section, .page-promotions__quick-access-section, .page-promotions__featured-promotions-section, .page-promotions__security-customer-service-section, .page-promotions__faq-section, .page-promotions__latest-blog-section {
  padding: 60px 0;
}

.page-promotions__dark-bg {
  background-color: #111111; /* Card BG */
}

/* Quick Access Links */
.page-promotions__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__quick-link-card {
  display: block;
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-promotions__quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(242, 193, 78, 0.2);
  border-color: #F2C14E;
}

.page-promotions__quick-link-card .page-promotions__card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #F2C14E;
  font-weight: bold;
}

.page-promotions__quick-link-card p {
  font-size: 16px;
  color: #FFF6D6;
}

/* Promotions Grid */
.page-promotions__promotions-grid, .page-promotions__info-grid, .page-promotions__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promotion-card, .page-promotions__info-card, .page-promotions__blog-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover, .page-promotions__info-card:hover, .page-promotions__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 211, 107, 0.2);
}

.page-promotions__promotion-card img, .page-promotions__info-card img, .page-promotions__blog-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions__card-title a {
  color: #F2C14E; /* Main color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #FFD36B; /* Accent color */
}

.page-promotions__promotion-card p, .page-promotions__info-card p, .page-promotions__blog-card p {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Ensure contrast */
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 211, 107, 0.4);
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #F2C14E; /* Main color */
  text-decoration: none;
  border: 2px solid #F2C14E; /* Main color */
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-promotions__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A; /* Dark background color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 193, 78, 0.4);
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: #F2C14E;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}
.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFF6D6;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: rgba(17, 17, 17, 0.8); /* Slightly transparent card BG */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

/* Blog Section */
.page-promotions__blog-date {
  font-size: 14px;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-promotions__view-all-button {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__container {
    padding: 30px 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  .page-promotions__promotion-card img, .page-promotions__info-card img, .page-promotions__blog-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 15px 40px;
    min-height: auto;
  }
  .page-promotions__main-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-promotions__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__section-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 15px;
  }
  .page-promotions__quick-links-grid, .page-promotions__promotions-grid, .page-promotions__info-grid, .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__quick-link-card, .page-promotions__promotion-card, .page-promotions__info-card, .page-promotions__blog-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__promotion-card p, .page-promotions__info-card p, .page-promotions__blog-card p {
    font-size: 15px;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__quick-access-section .page-promotions__quick-link-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__promotion-card .page-promotions__card-content,
  .page-promotions__info-card .page-promotions__card-content,
  .page-promotions__blog-card .page-promotions__card-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }
  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
}