.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--deep-navy);
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Aligned with shared body padding-top */
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.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;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__section {
  padding: 80px 20px;
  background-color: var(--deep-navy);
  color: var(--text-main);
  text-align: center;
}

.page-promotions__section:nth-of-type(even) {
  background-color: var(--deep-navy);
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-main);
  line-height: 1.3;
}

.page-promotions__paragraph {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions__card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  align-self: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-1px);
}

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

.page-promotions__step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px var(--glow);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions__step-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions__button-group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions__terms-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-promotions__terms-list li:hover {
  transform: translateX(5px);
}

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

.page-promotions__feature-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-promotions__feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background-color: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1rem;
}

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-color: rgba(29, 95, 209, 0.1);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background-color: var(--deep-navy);
  border-top: 1px solid var(--divider);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: left;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

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

.page-promotions .text-highlight {
  color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-image {
    margin-bottom: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }
  .page-promotions__section {
    padding: 60px 20px;
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  }
  .page-promotions__card-grid,
  .page-promotions__steps-grid,
  .page-promotions__features-grid {
    gap: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__feature-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Ensure small fixed top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-promotions__paragraph {
    font-size: 1rem;
  }
  .page-promotions__card-grid,
  .page-promotions__steps-grid,
  .page-promotions__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__card-image {
    height: 180px;
    border-radius: 6px;
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__card-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
  .page-promotions__step-title {
    font-size: 1.2rem;
  }
  .page-promotions__button-group,
  .page-promotions__contact-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__button-group .page-promotions__cta-button,
  .page-promotions__contact-buttons .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__terms-list {
    padding: 0;
  }
  .page-promotions__terms-list li {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .page-promotions__feature-icon {
    width: 100px;
    height: 100px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions__faq-qtext {
    font-size: 1rem;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-promotions__intro-section .page-promotions__container,
  .page-promotions__promo-types .page-promotions__container,
  .page-promotions__guide-section .page-promotions__container,
  .page-promotions__terms-section .page-promotions__container,
  .page-promotions__why-choose-section .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__contact-section .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
  .page-promotions__cta-button {
    font-size: 15px;
  }
  .page-promotions__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-promotions__card-title {
    font-size: 1.1rem;
  }
  .page-promotions__card-text {
    font-size: 0.9rem;
  }
  .page-promotions__step-title {
    font-size: 1.1rem;
  }
  .page-promotions__step-text {
    font-size: 0.9rem;
  }
  .page-promotions__feature-title {
    font-size: 1.1rem;
  }
  .page-promotions__feature-text {
    font-size: 0.85rem;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    font-size: 0.95rem;
  }
  .page-promotions__faq-qtext {
    font-size: 0.95rem;
  }
}

/* Custom Colors */
.page-promotions {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-promotions__cta-button,
.page-promotions__card-button,
.page-promotions__btn-primary {
  background: var(--button-gradient);
}

.page-promotions__card,
.page-promotions__step-item,
.page-promotions__feature-item {
  background-color: var(--card-bg);
  border-color: var(--border-color);
}

.page-promotions__main-title,
.page-promotions__section-title,
.page-promotions__card-title,
.page-promotions__step-title,
.page-promotions__feature-title,
details.page-promotions__faq-item summary.page-promotions__faq-question {
  color: var(--text-main);
}

.page-promotions__hero-description,
.page-promotions__paragraph,
.page-promotions__card-text,
.page-promotions__step-text,
.page-promotions__terms-list li,
.page-promotions__feature-text,
details.page-promotions__faq-item .page-promotions__faq-answer {
  color: var(--text-secondary);
}

.page-promotions__step-icon {
  background-color: var(--primary-color);
  border-color: var(--gold);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions__btn-secondary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-promotions__btn-secondary:hover {
  background: var(--primary-color);
}

.page-promotions__faq-toggle {
  color: var(--primary-color);
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  border-top-color: var(--divider-color);
}

.page-promotions__hero-section,
.page-promotions__section {
  background-color: var(--deep-navy);
}

.page-promotions__card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

.page-promotions__step-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
  transform: translateY(-5px);
}

.page-promotions__feature-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
  transform: translateY(-5px);
}

.page-promotions__terms-list li:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

details.page-promotions__faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-promotions__hero-section .page-promotions__cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-promotions__hero-section .page-promotions__cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
}