:root {
    --bg-color: #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;
}

.page-promotions {
    background-color: var(--bg-color);
    color: var(--text-main-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__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

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

.page-promotions__hero-content {
    position: relative; /* Ensure content is above the image if any overlap happens */
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

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

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

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

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

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

.page-promotions__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.page-promotions__intro-section,
.page-promotions__categories-section,
.page-promotions__how-to-claim-section,
.page-promotions__benefits-section,
.page-promotions__faq-section,
.page-promotions__final-cta-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    color: var(--text-main-color);
}

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

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

.page-promotions__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-promotions__text-block {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-main-color);
}

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

.page-promotions__card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: var(--text-main-color);
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

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

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

.page-promotions__steps-list,
.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__steps-list li,
.page-promotions__benefits-list li {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main-color);
    border-left: 5px solid var(--glow-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li strong {
    color: var(--gold-color);
}

.page-promotions__steps-list li a {
    color: var(--glow-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps-list li a:hover {
    text-decoration: underline;
}

.page-promotions__benefits-list li:last-child {
    margin-bottom: 0;
}

.page-promotions__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-promotions__faq-list {
    margin-top: 40px;
}

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

.page-promotions__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main-color);
    background-color: var(--deep-green-color);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

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

.page-promotions__faq-item summary:hover {
    background-color: var(--deep-green-color);
    filter: brightness(1.2);
}

.page-promotions__faq-qtext {
    color: var(--text-main-color);
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    color: var(--glow-color);
    margin-left: 15px;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    content: '−';
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
}

.page-promotions__final-cta-section {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--deep-green-color);
}

.page-promotions__final-cta-section .page-promotions__section-title {
    color: var(--gold-color);
}

.page-promotions__final-cta-section .page-promotions__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

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

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-promotions__hero-image {
        margin-bottom: 30px;
    }

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

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

    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100% !important; /* Enforce full width for buttons */
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__intro-section,
    .page-promotions__categories-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__benefits-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta-section {
        padding: 40px 0;
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 1rem;
    }

    .page-promotions__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__card {
        padding: 20px;
    }

    .page-promotions__card-image {
        height: 180px;
        margin-bottom: 20px;
    }

    .page-promotions__card-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .page-promotions__card-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-promotions__steps-list li,
    .page-promotions__benefits-list li {
        padding: 15px 20px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .page-promotions__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-promotions__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95rem;
    }

    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__intro-section,
    .page-promotions__categories-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__benefits-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta-section,
    .page-promotions__cta-buttons,
    .page-promotions__grid,
    .page-promotions__card,
    .page-promotions__steps-list,
    .page-promotions__benefits-list,
    .page-promotions__faq-list,
    .page-promotions__faq-item,
    .page-promotions__hero-image,
    .page-promotions__card-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important; /* Ensure no overflow */
    }

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

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }

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

    .page-promotions__hero-image {
        height: 150px;
    }
}