:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --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); /* Default text color for the page */
}

.page-promotions__section {
    padding: 60px 20px;
}

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

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--bg-color);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-promotions__hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 15px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem); /* Using clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-promotions__description,
.page-promotions__section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for contrast on green gradient */
    border: none;
    margin-right: 15px;
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

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

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

.page-promotions__cta-buttons--center {
    justify-content: center;
}

/* Card Styling */
.page-promotions__card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

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

.page-promotions__card-title a {
    color: var(--text-main-color);
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    color: var(--secondary-color);
}

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

.page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Current Promotions Grid */
.page-promotions__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__promotion-card {
    align-items: stretch;
}

.page-promotions__promotion-card .page-promotions__card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    background-color: var(--deep-green-color);
}

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

.page-promotions__step-card {
    padding: 30px;
}

.page-promotions__step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px; /* For illustrative icons */
}

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

.page-promotions__step-text {
    font-size: 0.95rem;
    color: var(--text-secondary-color);
    line-height: 1.5;
}

/* Terms and Conditions */
.page-promotions__terms-conditions {
    background-color: var(--bg-color);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__terms-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

.page-promotions__terms-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
    top: 0;
}

.page-promotions__additional-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.05rem;
    color: var(--text-secondary-color);
}

.page-promotions__additional-info a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 500;
}

.page-promotions__additional-info a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-promotions__why-choose {
    background-color: var(--deep-green-color);
}

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

.page-promotions__feature-item {
    padding: 30px;
}

.page-promotions__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px; /* For illustrative icons */
}

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

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

/* FAQ Section */
.page-promotions__faq {
    background-color: var(--bg-color);
}

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

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main-color);
    cursor: pointer;
    list-style: none;
    padding: 0;
}

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

.page-promotions__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
    padding-top: 15px;
    border-top: 1px solid var(--divider-color);
    margin-top: 15px;
}

/* CTA Section */
.page-promotions__cta {
    background-color: var(--deep-green-color);
    text-align: center;
    padding: 80px 20px;
}

.page-promotions__cta-content {
    max-width: 900px;
}

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

@media (max-width: 768px) {
    .page-promotions__section {
        padding: 40px 15px;
    }

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

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

    .page-promotions__description,
    .page-promotions__section-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        margin-right: 0;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

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

    .page-promotions__promotions-grid,
    .page-promotions__steps-grid,
    .page-promotions__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__card {
        padding: 20px;
    }

    .page-promotions__card-title {
        font-size: 1.2rem;
    }

    .page-promotions__card-text {
        font-size: 0.9rem;
    }

    .page-promotions__step-icon,
    .page-promotions__feature-icon {
        width: 80px;
        height: 80px;
    }

    .page-promotions__terms-item {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    .page-promotions__terms-item::before {
        font-size: 1.3rem;
    }

    .page-promotions__faq-question {
        font-size: 1rem;
    }

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

    .page-promotions__faq-answer {
        font-size: 0.95rem;
    }

    /* Mobile specific image, video, button, and container responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper,
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper,
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

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

@media (max-width: 480px) {
    .page-promotions__hero-content {
        padding: 0 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
}