.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from shared.css, set explicitly for clarity */
}

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

.page-promotions__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promotions__section-subtitle {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #FFD700;
  color: #0047AB;
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #0047AB;
  transform: translateY(-2px);
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__hero-title {
  font-size: 52px;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.page-promotions__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-cta {
  margin-top: 30px;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-promotions__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* Offers Section */
.page-promotions__offers-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

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

.page-promotions__offer-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions__offer-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-promotions__offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-promotions__offer-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.page-promotions__offer-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Terms Section */
.page-promotions__terms-section {
  padding: 80px 0;
  background-color: #0047AB;
  color: #ffffff;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-promotions__terms-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-heading {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__terms-text {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-promotions__terms-cta {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #2a2a2a;
}

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

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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 {
  transform: rotate(45deg);
  color: #FFD700;
}

.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-color: #1a1a1a;
  color: #cccccc;
}

.page-promotions__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  padding: 80px 0;
  background-color: #0047AB;
  color: #ffffff;
}

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

.page-promotions__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__advantage-item:hover {
  transform: translateY(-5px);
}

.page-promotions__advantage-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions__advantage-text {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
}

/* CTA Section */
.page-promotions__cta-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 44px;
  }

  .page-promotions__hero-description {
    font-size: 18px;
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

  .page-promotions__offer-title {
    font-size: 22px;
  }

  .page-promotions__terms-heading {
    font-size: 20px;
  }

  .page-promotions__advantage-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }

  .page-promotions__hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-promotions__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions__container {
    padding: 30px 15px;
  }

  .page-promotions__offers-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__why-choose-section,
  .page-promotions__cta-section {
    padding: 60px 0;
  }

  .page-promotions__offers-grid,
  .page-promotions__terms-list,
  .page-promotions__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__offer-card {
    margin-bottom: 20px;
  }

  .page-promotions__offer-image {
    height: 180px;
  }

  .page-promotions__offer-title {
    font-size: 20px;
  }

  .page-promotions__offer-description {
    font-size: 15px;
  }

  .page-promotions__terms-item,
  .page-promotions__advantage-item {
    padding: 20px;
  }

  .page-promotions__terms-heading,
  .page-promotions__advantage-title {
    font-size: 18px;
  }

  .page-promotions__faq-question {
    padding: 15px 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__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__hero-section,
  .page-promotions__offers-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__why-choose-section,
  .page-promotions__cta-section,
  .page-promotions__offer-card,
  .page-promotions__terms-item,
  .page-promotions__advantage-item,
  .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-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 32px;
  }

  .page-promotions__section-title {
    font-size: 24px;
  }
}