.page-promotions {
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Assuming --dark-bg-1 is a dark color */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.page-promotions__hero-banner {
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Apply header offset here if body doesn't have it */
}

.page-promotions__hero-container {
    width: 100%;
    margin: 0 auto;
}

.page-promotions__hero-banner img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

.page-promotions__intro-section {
    text-align: center;
    padding: 60px 0;
    background-color: var(--dark-bg-1); /* Ensure consistency with body */
}

.page-promotions__main-title {
    font-size: 38px;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__intro-text {
    font-size: 18px;
    color: #f0f0f0; /* Light text for dark background */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions__btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Burgundy text */
    border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

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

.page-promotions__btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
}

.page-promotions__section-title {
    font-size: 32px;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 17px;
    color: #cccccc; /* Lighter grey for descriptions */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* Highlights Section */
.page-promotions__highlights-section {
    padding: 80px 0;
    background-color: #8B0000; /* Primary brand color as background */
    color: #ffffff;
}

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

.page-promotions__promo-card {
    background-color: #2a0000; /* Darker shade of primary for card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-card img {
    width: 100%;
    height: 250px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__promo-card .page-promotions__card-title {
    font-size: 22px;
    color: #FFD700; /* Gold for card titles */
    padding: 20px 25px 10px;
    margin: 0;
    font-weight: bold;
}

.page-promotions__promo-card .page-promotions__card-text {
    font-size: 15px;
    color: #e0e0e0;
    padding: 0 25px 20px;
    flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__card-btn {
    background-color: #FFD700;
    color: #8B0000;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 0 0 12px 12px;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
}

.page-promotions__promo-card .page-promotions__card-btn:hover {
    background-color: #e6c200;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1); /* Dark background */
    color: #ffffff;
}

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

.page-promotions__step-card {
    background-color: #1a1a1a; /* Even darker for step cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #FFD700; /* Gold icon background */
    color: #8B0000; /* Burgundy text */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

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

.page-promotions__step-text {
    font-size: 16px;
    color: #cccccc;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Terms and Conditions Section */
.page-promotions__terms-section {
    padding: 80px 0;
    background-color: #8B0000; /* Primary brand color */
    color: #ffffff;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__terms-list li {
    background-color: #2a0000; /* Darker shade for list items */
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-item-title {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__terms-list p {
    font-size: 16px;
    color: #e0e0e0;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1); /* Dark background */
    color: #ffffff;
}

/* FAQ容器样式 */
.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px; /* Slightly larger border-radius */
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background for FAQ item */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ默认状态 - 答案隐藏 */
.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; /* Adjust padding for consistency */
  opacity: 0;
}

/* FAQ展开状态 - 🚨 使用!important和足够大的max-height确保一定能展开 */
.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* 🚨 使用!important确保优先级，值足够大以容纳任何内容 */
  padding: 20px 25px !important; /* Adjust padding for consistency */
  opacity: 1;
  background-color: #2a0000; /* Darker shade for active answer background */
  border-radius: 0 0 8px 8px;
  color: #e0e0e0; /* Light text for answer */
}

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

/* 问题样式 */
.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px; /* Adjust padding for consistency */
  background-color: #1a1a1a; /* Dark background for question */
  border: 1px solid #333333; /* Darker border */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff; /* White text for question */
}

.page-promotions__faq-question:hover {
  background-color: #2a0000; /* Hover effect with primary color shade */
  border-color: #8B0000; /* Primary color border on hover */
}

.page-promotions__faq-question:active {
  background-color: #3d0000;
}

/* 问题标题样式 */
.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* 防止h3标签阻止点击事件 */
  color: #FFD700; /* Gold for FAQ question titles */
}

/* 切换图标 */
.page-promotions__faq-toggle {
  font-size: 28px; /* Larger icon */
  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; /* Larger icon area */
  height: 32px; /* Larger icon area */
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #ffffff; /* White icon when active */
  transform: rotate(45deg); /* Rotate for minus sign effect */
}

/* Why Choose Awin Section */
.page-promotions__why-choose-awin {
    padding: 80px 0;
    background-color: #8B0000; /* Primary brand color */
    color: #ffffff;
    text-align: center;
}

.page-promotions__advantages-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__advantages-list li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
}

.page-promotions__advantages-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
    font-size: 18px;
    line-height: 1.6;
}

.page-promotions__advantage-point {
    color: #FFD700; /* Gold for highlight points */
}

/* General image and container responsive styles */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 32px;
    }
    .page-promotions__section-title {
        font-size: 28px;
    }
    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .page-promotions__promo-card img {
        height: 200px;
    }
    .page-promotions__promo-card .page-promotions__card-title {
        font-size: 20px;
    }
    .page-promotions__promo-card .page-promotions__card-text {
        font-size: 14px;
    }
    .page-promotions__step-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .page-promotions__step-title {
        font-size: 20px;
    }
    .page-promotions__step-text {
        font-size: 15px;
    }
    .page-promotions__terms-item-title {
        font-size: 18px;
    }
    .page-promotions__terms-list p {
        font-size: 15px;
    }
    .page-promotions__faq-question h3 {
        font-size: 17px;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-promotions__faq-answer p {
        font-size: 15px;
    }
    .page-promotions__advantages-list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-banner {
        padding-top: 0 !important; /* Ensure no double padding if shared provides it for body */
    }
    .page-promotions__container {
        padding: 30px 15px;
    }
    .page-promotions__intro-section,
    .page-promotions__highlights-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__why-choose-awin {
        padding: 40px 0; /* Adjust section padding for mobile */
    }
    .page-promotions__main-title {
        font-size: 28px;
    }
    .page-promotions__intro-text {
        font-size: 16px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .page-promotions__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__promo-card img {
        
    }
    .page-promotions__promo-card .page-promotions__card-title {
        font-size: 18px;
        padding: 15px 20px 8px;
    }
    .page-promotions__promo-card .page-promotions__card-text {
        font-size: 14px;
        padding: 0 20px 15px;
    }
    .page-promotions__promo-card .page-promotions__card-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .page-promotions__step-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    .page-promotions__step-title {
        font-size: 18px;
    }
    .page-promotions__step-text {
        font-size: 14px;
    }
    .page-promotions__terms-list li {
        padding: 20px;
        margin-bottom: 15px;
    }
    .page-promotions__terms-item-title {
        font-size: 17px;
    }
    .page-promotions__terms-list p {
        font-size: 14px;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    .page-promotions__faq-question h3 {
        font-size: 16px;
        width: calc(100% - 40px);
        margin-bottom: 0;
    }
    .page-promotions__faq-toggle {
        font-size: 22px;
        width: 26px;
        height: 26px;
        margin-left: 10px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px 20px !important;
    }
    .page-promotions__faq-answer p {
        font-size: 14px;
    }
    .page-promotions__advantages-list li {
        font-size: 15px;
        padding-left: 25px;
    }
    .page-promotions__advantages-list li::before {
        font-size: 16px;
    }
    
    /* Ensure all images are responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Containers for images and other content */
    .page-promotions__container,
    .page-promotions__hero-container,
    .page-promotions__promo-card,
    .page-promotions__step-card,
    .page-promotions__faq-item,
    .page-promotions__terms-list li {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    /* Special handling for sections that need outer padding */
    .page-promotions__intro-section > .page-promotions__container,
    .page-promotions__highlights-section > .page-promotions__container,
    .page-promotions__how-to-claim-section > .page-promotions__container,
    .page-promotions__terms-section > .page-promotions__container,
    .page-promotions__faq-section > .page-promotions__container,
    .page-promotions__why-choose-awin > .page-promotions__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}