.page-promotions {
    font-family: Arial, sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    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;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #08160F; /* Background */
}

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

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

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

.page-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for H1 */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-promotions__intro-description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-promotions__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
}

.page-promotions__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    color: #F2FFF6;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__text-block {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__text-block strong {
    color: #F2FFF6; /* Text Main */
}

.page-promotions__text-link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__text-link:hover {
    text-decoration: underline;
    color: #2AD16F;
}

/* About Section */
.page-promotions__about-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

/* Types Section */
.page-promotions__types-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #A7D9B8; /* Text Secondary */
    border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    padding: 20px 20px 10px;
    margin: 0;
}

.page-promotions__card-description {
    font-size: 1rem;
    padding: 0 20px 15px;
    flex-grow: 1; /* Make description take available space */
}

.page-promotions__card-link {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #22C768; /* Auxiliary color */
    color: #0A4B2C; /* Deep Green */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 0 0 10px 10px; /* Only bottom corners */
}

.page-promotions__card-link:hover {
    background-color: #11A84E; /* Primary color */
    color: #F2FFF6;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.page-promotions__steps-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li strong {
    color: #F2FFF6; /* Text Main */
    display: block;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Terms Section */
.page-promotions__terms-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 40px;
    color: #A7D9B8; /* Text Secondary */
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-promotions__terms-list li a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-promotions__terms-list li a:hover {
    color: #2AD16F;
}

/* Video Section */
.page-promotions__video-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-promotions__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%; /* Ensure width is 100% on desktop */
    background: #000;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.page-promotions__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block; /* Ensure it behaves as a block element */
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    position: relative;
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow */
}

.page-promotions__faq-answer {
    padding: 0 20px 20px;
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
}

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

/* Final CTA Section */
.page-promotions__cta-final-section {
    padding: 80px 0;
    text-align: center;
    background-color: #08160F; /* Background */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions__hero-content {
        max-width: 700px;
    }

    .page-promotions__section-title {
        margin-bottom: 30px;
    }

    .page-promotions__about-section,
    .page-promotions__types-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__video-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px; /* Add padding for mobile content */
    }

    .page-promotions__hero-section {
        padding-bottom: 30px;
        padding-top: 10px !important; /* body handles header offset, small top padding for this section */
    }

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

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

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Ensure buttons have side padding */
    }

    .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;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-promotions__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 25px;
    }

    .page-promotions__text-block,
    .page-promotions__steps-list li,
    .page-promotions__terms-list li,
    .page-promotions__faq-answer p {
        font-size: 0.95rem;
    }

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

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

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

    .page-promotions__faq-answer {
        padding: 0 15px 15px;
    }

    /* Mobile image, video, container adaptation */
    .page-promotions img {
        max-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__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Crucial for preventing horizontal scroll */
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__video-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Ensure no image filters */
.page-promotions img {
    filter: none !important;
}
.page-promotions video {
    filter: none !important;
}