:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient-start: #FFD86A;
    --button-gradient-end: #E6B800;
    --card-bg: #D32F2F;
    --background-color: #B71C1C;
    --text-main-color: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
    --dark-text: #333333;
    --light-text: #ffffff;
}

.page-promotions {
    background-color: var(--background-color); /* Main background for the page content */
    color: var(--text-main-color); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-red-color); /* A darker background for hero to make text pop */
    overflow: hidden; /* Ensure no overflow */
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width within max-width */
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative; /* For potential overlay effects, though no text on image */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    /* No filter to change color */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size */
    color: var(--gold-color); /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__intro-text {
    font-size: clamp(1em, 2.5vw, 1.25em);
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--deep-red-color); /* Dark text on gold button for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__cta-button:hover {
    background: linear-gradient(180deg, var(--button-gradient-end) 0%, var(--button-gradient-start) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-promotions__section {
    padding: 50px 20px;
    text-align: center;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    color: var(--gold-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.page-promotions__text-block {
    font-size: 1.1em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotion Grid */
.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: var(--card-bg); /* Custom card background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main-color); /* Light text on dark card background */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure cards in a row have same height */
    box-sizing: border-box;
}

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

.page-promotions__promo-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    /* No filter to change color */
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-description {
    font-size: 1em;
    color: var(--text-main-color);
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--deep-red-color); /* Dark text on gold button for contrast */
    text-decoration: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, var(--button-gradient-end) 0%, var(--button-gradient-start) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* How-To-Claim Section */
.page-promotions__how-to-claim-section {
    background-color: var(--background-color); /* Consistent with page background */
}

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

.page-promotions__step-item {
    background-color: var(--deep-red-color); /* Darker red for steps */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    color: var(--text-main-color);
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gold-color);
    color: var(--deep-red-color);
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--border-color);
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-promotions__step-description {
    font-size: 1em;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-promotions__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Terms and Conditions Section */
.page-promotions__terms-section {
    background-color: var(--primary-color); /* Darker primary color for contrast */
    color: var(--text-main-color);
}

.page-promotions__terms-section .page-promotions__section-title {
    color: var(--gold-color);
}
.page-promotions__terms-section .page-promotions__text-block {
    color: var(--text-main-color);
}

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

.page-promotions__terms-list li {
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent background for list items */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-main-color);
    border-left: 4px solid var(--border-color);
}

.page-promotions__btn-gold {
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--deep-red-color);
    font-size: 1.1em;
    padding: 15px 35px;
    border-radius: 8px;
    text-shadow: none;
}

.page-promotions__btn-gold:hover {
    background: linear-gradient(180deg, var(--button-gradient-end) 0%, var(--button-gradient-start) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    background-color: var(--background-color);
    color: var(--text-main-color);
}

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

.page-promotions__advantages-list li {
    background-color: var(--deep-red-color); /* Darker red for advantages */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-main-color);
    border-left: 4px solid var(--gold-color);
}

.page-promotions__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: var(--primary-color); /* Primary color for FAQ section */
    color: var(--text-main-color);
}

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg); /* Card BG for FAQ item */
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--gold-color); /* Gold for FAQ question */
    font-weight: bold;
    font-size: 1.1em;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
    background: var(--deep-red-color); /* Darker red on hover */
}
.page-promotions__faq-qtext {
    flex: 1;
    font-size: 1em;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}
.page-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 25px 20px;
    background: rgba(0, 0, 0, 0.2); /* Slightly transparent dark background for answer */
    border-radius: 0 0 12px 12px;
    color: var(--text-main-color); /* Light text for answer */
    text-align: left;
}
.page-promotions__faq-answer p {
    margin: 0;
    color: var(--text-main-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-image img {
        width: 100%;
        height: auto;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .page-promotions__step-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important; /* Ensure small padding top on mobile */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-promotions__hero-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-promotions__hero-image img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    .page-promotions__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-promotions__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__section {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 0.95em;
    }

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

    .page-promotions__promo-card {
        padding: 20px;
        border-radius: 8px;
    }

    .page-promotions__promo-card img {
        
        border-radius: 6px;
    }

    .page-promotions__card-title {
        font-size: 1.4em;
    }

    .page-promotions__card-description {
        font-size: 0.9em;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__btn-gold {
        padding: 10px 20px;
        font-size: 0.95em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-promotions__step-item {
        padding: 20px;
        border-radius: 8px;
    }

    .page-promotions__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-promotions__step-title {
        font-size: 1.3em;
    }

    .page-promotions__terms-list,
    .page-promotions__advantages-list {
        margin: 20px auto;
        padding: 0 10px;
    }

    .page-promotions__terms-list li,
    .page-promotions__advantages-list li {
        padding: 12px 15px;
        font-size: 0.9em;
        border-radius: 6px;
    }

    details.page-promotions__faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions__faq-qtext {
        font-size: 0.95em;
    }
    .page-promotions__faq-toggle {
        font-size: 20px;
        width: 24px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }
    .page-promotions__faq-answer p {
        font-size: 0.9em;
    }

    /* General mobile image/container rules */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__promo-card img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important; /* Allow height to adjust */
    }
}