.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Main text color for dark background */
    background-color: #08160F; /* Body background color */
}

.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;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px; /* Space below content */
    background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit hero image height */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
    margin-top: -100px; /* Overlap image slightly */
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    border-radius: 8px;
}

.page-promotions__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
    font-weight: bold;
    color: #F2C14E; /* Gold color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-promotions__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #F2C14E; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions__text-block {
    font-size: 1rem;
    color: #F2FFF6; /* Main text color */
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__text-block strong {
    color: #2AD16F;
}

.page-promotions__text-link {
    color: #2AD16F;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
    color: #57E38D;
}

.page-promotions__introduction-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__final-cta-section {
    padding: 60px 0;
    background-color: #08160F; /* Dark background */
}

.page-promotions__types-section,
.page-promotions__terms-section,
.page-promotions__why-choose-section {
    padding: 60px 0;
    background-color: #11271B; /* Card background color for alternating sections */
}

.page-promotions__dark-bg {
    background-color: #08160F;
    color: #F2FFF6;
}

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

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

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

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

.page-promotions__card-title {
    font-size: 1.3rem;
    color: #F2C14E; /* Gold color for card titles */
    padding: 15px 20px 10px;
    margin: 0;
}

.page-promotions__card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Secondary text color */
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-promotions__card-button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

.page-promotions__list-item {
    font-size: 1rem;
    color: #F2FFF6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions__list-item::before {
    content: '•'; /* Bullet point */
    color: #2AD16F; /* Green color for bullet */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions__step-list .page-promotions__list-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #2AD16F;
    color: #08160F;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    left: -5px;
    top: 2px;
}

.page-promotions__step-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

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

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

.page-promotions__faq-item {
    background-color: #11271B; /* Card background for FAQ items */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 25px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #F2C14E; /* Gold color for FAQ question */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0A4B2C; /* Deep Green for summary background */
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
    background-color: #115F3C;
}

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

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: #2AD16F;
}

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

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Secondary text color */
}

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

.page-promotions__cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 30px;
    object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        margin-top: -80px;
    }
    .page-promotions__hero-image {
        max-height: 400px;
    }
}

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

    .page-promotions__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }

    .page-promotions__hero-image {
        max-height: 300px;
    }

    .page-promotions__hero-content {
        margin-top: -60px;
        border-radius: 0;
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

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

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

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

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

    .page-promotions__introduction-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta-section,
    .page-promotions__types-section,
    .page-promotions__terms-section,
    .page-promotions__why-choose-section {
        padding: 40px 0;
    }

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

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

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

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

    .page-promotions__list-item {
        font-size: 0.95rem;
    }

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

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

    /* Mobile image responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__hero-section,
    .page-promotions__introduction-section,
    .page-promotions__types-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__why-choose-section,
    .page-promotions__final-cta-section,
    .page-promotions__container,
    .page-promotions__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Ensure no horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content {
        margin-top: -40px;
    }
    .page-promotions__main-title {
        font-size: 1.5rem;
    }
    .page-promotions__hero-description {
        font-size: 0.9rem;
    }
    .page-promotions__section-title {
        font-size: 1.5rem;
    }
}