.page-promotions {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 10px;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
}

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

.page-promotions__hero-content {
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-promotions__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #F2C14E;
}

.page-promotions__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-promotions__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: none;
}

.page-promotions__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__section-title {
    text-align: center;
    color: #F2C14E;
    margin: 60px 0 30px;
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: -0.01em;
}

.page-promotions__promotions-grid {
    padding: 0 20px;
}

.page-promotions__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__promotion-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(242, 193, 78, 0.2);
}

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

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__card-title {
    color: #FFD36B;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #E5E5E5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-2px);
}

.page-promotions__how-to-claim-section {
    padding: 0 20px;
    margin-top: 80px;
}

.page-promotions__how-to-claim-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.page-promotions__steps-container {
    flex: 1;
    min-width: 300px;
}

.page-promotions__step-item {
    background-color: #111111;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #3A2A12;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-promotions__step-number {
    background-color: #F2C14E;
    color: #111111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
    flex-shrink: 0;
}

.page-promotions__step-title {
    color: #FFD36B;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-promotions__step-description {
    color: #E5E5E5;
    font-size: 0.95em;
}

.page-promotions__how-to-claim-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-promotions__faq-section {
    padding: 0 20px;
    margin-top: 80px;
}

.page-promotions__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12;
}

.page-promotions__faq-question {
    color: #F2C14E;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-answer {
    color: #E5E5E5;
    font-size: 0.95em;
    display: block;
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__grid-container {
        grid-template-columns: 1fr;
    }

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

    .page-promotions__how-to-claim-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-promotions__how-to-claim-image {
        max-width: 100%;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
    
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__how-to-claim-image {
        width: 100%; /* Ensure it doesn't get smaller than 200px due to flex shrink */
        min-width: 200px;
    }

    .page-promotions__card-image {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

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

    .page-promotions__card-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-promotions__step-number {
        margin-bottom: 10px;
    }
}