:root {
    --page-promotions-primary-color: #F2C14E;
    --page-promotions-secondary-color: #FFD36B;
    --page-promotions-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --page-promotions-card-bg: #111111;
    --page-promotions-background: #0A0A0A;
    --page-promotions-text-main: #FFF6D6;
    --page-promotions-border-color: #3A2A12;
    --page-promotions-glow-color: #FFD36B;
}

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

.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
    border-radius: 8px;
}

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

.page-promotions__main-title {
    color: var(--page-promotions-secondary-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for responsive font size */
}

.page-promotions__intro-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--page-promotions-button-gradient);
    color: #000; /* Text color for button */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-promotions__overview-section,
.page-promotions__how-to-claim-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section-title {
    color: var(--page-promotions-primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-promotions__section-description {
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promotion-card {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.3);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--page-promotions-border-color);
}

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

.page-promotions__card-title {
    color: var(--page-promotions-secondary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__card-text {
    font-size: 0.95rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--page-promotions-button-gradient);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

.page-promotions__how-to-claim-section {
    background-color: var(--page-promotions-card-bg);
    border-top: 1px solid var(--page-promotions-border-color);
    border-bottom: 1px solid var(--page-promotions-border-color);
}

.page-promotions__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.page-promotions__claim-steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.page-promotions__step-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #1a1a1a;
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--page-promotions-primary-color);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid var(--page-promotions-background);
}

.page-promotions__step-title {
    color: var(--page-promotions-secondary-color);
    font-size: 1.3rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__step-description {
    color: #ccc;
    font-size: 0.95rem;
}

.page-promotions__claim-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--page-promotions-border-color);
}

.page-promotions__cta-button--centered {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__why-choose-section {
    padding-bottom: 20px;
}

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

.page-promotions__benefit-item {
    background-color: #1a1a1a;
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-title {
    color: var(--page-promotions-primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__benefit-description {
    color: #ccc;
    font-size: 0.9rem;
}

.page-promotions__why-choose-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--page-promotions-border-color);
}

.page-promotions__faq-section {
    background-color: var(--page-promotions-card-bg);
    border-top: 1px solid var(--page-promotions-border-color);
    padding-bottom: 60px;
}

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

.page-promotions__faq-item {
    background-color: #1a1a1a;
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
    overflow: hidden;
}

.page-promotions__faq-question {
    color: var(--page-promotions-secondary-color);
    font-size: 1.1rem;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--page-promotions-primary-color);
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-promotions__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #ccc;
    font-size: 0.95rem;
}

.page-promotions__faq-answer.open {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
}

.page-promotions__faq-answer p {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-content {
        padding: 0 15px 30px;
    }

    .page-promotions__main-title {
        font-size: 2rem;
    }

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

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions__overview-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
    }

    .page-promotions__promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__claim-steps {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions__step-item {
        width: 100%;
        max-width: 400px;
    }

    .page-promotions__benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image constraint */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.7rem;
    }
    .page-promotions__section-title {
        font-size: 1.5rem;
    }
    .page-promotions__card-title {
        font-size: 1.2rem;
    }
    .page-promotions__step-title {
        font-size: 1.1rem;
    }
    .page-promotions__benefit-title {
        font-size: 1.1rem;
    }
    .page-promotions__faq-question {
        font-size: 1rem;
    }
}