.page-promotions {
    --bg-color-primary: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;

    background-color: var(--bg-color-primary);
    color: var(--text-secondary-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-promotions__section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-promotions__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    transform: translateY(-2px);
}

.page-promotions__text-link {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-promotions__text-link:hover {
    color: var(--gold-color);
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Body handles --header-offset, this is for visual spacing */
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px;
}

.page-promotions__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.page-promotions__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary-color);
    margin-bottom: 40px;
    line-height: 1.5;
}

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

/* Overview Section */
.page-promotions__overview-section {
    padding: 80px 0;
    background-color: var(--bg-color-primary);
}

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

.page-promotions__category-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    min-height: 450px; /* Ensure cards have similar height */
    box-sizing: border-box;
}

.page-promotions__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 200px;
}

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

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

/* Detail Section */
.page-promotions__detail-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
}

.page-promotions__promotion-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background-color: var(--card-bg-color);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__promotion-item--reverse {
    flex-direction: row-reverse;
}

.page-promotions__promotion-content {
    flex: 1;
}

.page-promotions__promotion-image {
    flex: 1;
    width: 100%;
    height: auto;
    max-width: 50%;
    object-fit: cover;
    border-radius: 10px;
    min-height: 200px;
}

.page-promotions__item-title {
    font-size: 2rem;
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__item-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
}

.page-promotions__item-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions__item-features li {
    font-size: 1rem;
    color: var(--text-secondary-color);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions__item-features li::before {
    content: '✓';
    color: var(--glow-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    padding: 80px 0;
    background-color: var(--bg-color-primary);
}

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

.page-promotions__step-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.page-promotions__step-icon-wrapper {
    background: var(--button-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.5);
}

.page-promotions__step-icon {
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
}

.page-promotions__step-title {
    font-size: 1.5rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-promotions__cta-buttons--center {
    margin-top: 50px;
}

/* Terms Section */
.page-promotions__terms-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
}

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 20px;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-promotions__terms-list li {
    font-size: 1rem;
    color: var(--text-secondary-color);
    margin-bottom: 15px;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-color-primary);
}

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

.page-promotions__benefit-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    min-height: 220px;
    box-sizing: border-box;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: var(--deep-green-color);
}

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

.page-promotions__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main-color);
    list-style: none;
    position: relative;
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-question::marker {
    display: none;
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--glow-color);
    margin-left: 15px;
    line-height: 1;
}

.page-promotions__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary-color);
    line-height: 1.6;
}

/* Final CTA Section */
.page-promotions__final-cta {
    padding: 80px 0;
    background-color: var(--bg-color-primary);
    text-align: center;
}

/* Text Colors */
.page-promotions__text-main {
    color: var(--text-main-color);
}

.page-promotions__text-secondary {
    color: var(--text-secondary-color);
}

.page-promotions__dark-bg {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__dark-section {
    background-color: var(--deep-green-color);
    color: var(--text-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__promotion-item {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__promotion-item--reverse {
        flex-direction: column;
    }

    .page-promotions__promotion-image {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .page-promotions__promotion-content {
        padding: 0 20px;
    }

    .page-promotions__hero-image-wrapper {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px !important;
    }

    .page-promotions__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions__hero-image-wrapper {
        max-height: 400px;
    }

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

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 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__overview-section,
    .page-promotions__detail-section,
    .page-promotions__how-to-claim,
    .page-promotions__terms-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta {
        padding: 60px 0;
    }

    .page-promotions__section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-promotions__category-card,
    .page-promotions__step-card,
    .page-promotions__benefit-card {
        padding: 25px;
        min-height: auto;
    }

    .page-promotions__category-image,
    .page-promotions__promotion-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-height: 200px;
    }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions__promotion-item {
        padding: 30px 15px;
        margin-bottom: 40px;
    }

    .page-promotions__item-title {
        font-size: 1.6rem;
    }

    .page-promotions__item-description,
    .page-promotions__item-features li,
    .page-promotions__terms-list li,
    .page-promotions__faq-answer {
        font-size: 0.95rem;
    }

    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-promotions__faq-toggle {
        font-size: 1.5rem;
    }

    .page-promotions__video-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}