.page-promotions {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is black from shared.css */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  padding-top: 120px; /* Default desktop padding for fixed header */
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile padding for fixed header */
  }
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions__text-block a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__text-block a:hover {
  color: #FFA500;
  text-decoration: underline;
}

/* Hero Banner Section */
.page-promotions__hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a); /* Dark background for hero */
}

.page-promotions__hero-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Wider for banner */
  margin: 0 auto;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.6); /* Slightly dim image for text readability */
}

.page-promotions__hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  max-width: 80%;
}

.page-promotions__main-heading {
  font-size: 52px;
  font-weight: 900;
  color: #FFD700; /* Gold for main heading */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__hero-description a:hover {
  text-decoration: underline;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient */
  color: #000000; /* Black text on gold for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFC107);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* General Intro Section */
.page-promotions__general-intro-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  border-bottom: 1px solid #333;
}

/* Special Offers Section */
.page-promotions__special-offers-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

.page-promotions__offer-card {
  background-color: #2a2a2a; /* Dark card background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444;
}

.page-promotions__offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #555;
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-description {
  font-size: 16px;
  color: #c0c0c0;
  margin-bottom: 25px;
}

.page-promotions__card-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__card-description a:hover {
  text-decoration: underline;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #8B0000, #B22222); /* Deep red gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  background: linear-gradient(135deg, #B22222, #DC143C);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-promotions__benefits-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* Latest News Section */
.page-promotions__latest-news-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

.page-promotions__news-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444;
}

.page-promotions__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__news-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #555;
}

.page-promotions__news-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__news-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__news-title a:hover {
  text-decoration: underline;
}

.page-promotions__news-summary {
  font-size: 16px;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-promotions__news-summary a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__news-summary a:hover {
  text-decoration: underline;
}

.page-promotions__read-more {
  display: inline-flex;
  align-items: center;
  color: #B22222; /* Deep red for read more links */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-promotions__read-more:hover {
  color: #FFD700;
}

.page-promotions__arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-promotions__read-more:hover .page-promotions__arrow {
  transform: translateX(5px);
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a; /* Darker background for FAQ item */
  border: 1px solid #444;
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #3a3a3a; /* Slightly lighter dark background for answer */
  border-radius: 0 0 8px 8px;
}

.page-promotions__faq-answer p {
  color: #c0c0c0;
  font-size: 16px;
}

.page-promotions__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__faq-answer a:hover {
  text-decoration: underline;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #3a3a3a; /* Slightly lighter dark background for question */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: #4a4a4a;
}

.page-promotions__faq-question:active {
  background: #5a5a5a;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #f0f0f0;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #FFA500;
  transform: rotate(180deg); /* Rotate for minus sign */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-heading {
    font-size: 44px;
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__offer-grid {
    gap: 20px;
  }
  .page-promotions__offer-card, .page-promotions__news-card {
    padding: 25px;
  }
  .page-promotions__card-title, .page-promotions__news-title {
    font-size: 22px;
  }
  .page-promotions__offer-image {
    height: 180px;
  }
  .page-promotions__news-image {
    height: 160px;
  }
  .page-promotions__faq-question h3 {
    font-size: 17px;
  }
  .page-promotions__faq-toggle {
    font-size: 26px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile padding for fixed header */
  }
  .page-promotions__container {
    padding: 15px;
  }
  .page-promotions__hero-banner {
    padding-bottom: 40px;
  }
  .page-promotions__hero-image {
    filter: brightness(0.5); /* More dim for mobile */
  }
  .page-promotions__hero-text-overlay {
    max-width: 90%;
  }
  .page-promotions__main-heading {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 16px;
  }
  .page-promotions__offer-grid, .page-promotions__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__offer-card, .page-promotions__news-card {
    padding: 20px;
  }
  .page-promotions__offer-image {
    height: 160px;
  }
  .page-promotions__card-title, .page-promotions__news-title {
    font-size: 20px;
  }
  .page-promotions__card-description, .page-promotions__news-summary {
    font-size: 15px;
  }
  .page-promotions__read-more {
    font-size: 15px;
  }
  .page-promotions__faq-question {
    padding: 18px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }
  .page-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-promotions__faq-answer p {
    font-size: 15px;
  }
  
  /* Force images to adapt to mobile width */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__hero-content-wrapper,
  .page-promotions__general-intro-section .page-promotions__container,
  .page-promotions__special-offers-section .page-promotions__container,
  .page-promotions__benefits-section .page-promotions__container,
  .page-promotions__latest-news-section .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__offer-card,
  .page-promotions__news-card,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-banner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-heading {
    font-size: 30px;
  }
  .page-promotions__hero-description {
    font-size: 15px;
  }
  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__card-title, .page-promotions__news-title {
    font-size: 18px;
  }
  .page-promotions__card-description, .page-promotions__news-summary {
    font-size: 14px;
  }
  .page-promotions__card-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  .page-promotions__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}