.page-promotions {
    color: #FFF6D6;
    background-color: #0A0A0A;
    font-family: Arial, sans-serif;
}

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

.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Adjusted to ~10px as per instructions, body handles --header-offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-promotions__hero-content {
    padding: 0 20px 60px;
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFD36B;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
    max-width: 100%;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-promotions__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-promotions__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111;
}

.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD36B;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-promotions__section-text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF6D6;
    text-align: justify;
}

.page-promotions__intro-section,
.page-promotions__featured-promos,
.page-promotions__how-to-claim,
.page-promotions__terms-conditions,
.page-promotions__faq-section,
.page-promotions__why-choose,
.page-promotions__call-to-action {
    padding: 60px 0;
}

.page-promotions__card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFF6D6;
}

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

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

.page-promotions__promo-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

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

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

.page-promotions__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    text-align: center;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

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

.page-promotions__step-item {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-number {
    background-color: #F2C14E;
    color: #111111;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-promotions__step-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF6D6;
}

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

.page-promotions__terms-list {
    list-style: disc;
    margin-left: 20px;
    color: #FFF6D6;
    font-size: 1.1em;
    line-height: 1.8;
    margin-top: 30px;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
}

.page-promotions__terms-list strong {
    color: #F2C14E;
}

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

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #3A2A12;
    background-color: #111111;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD36B;
    background-color: #111111;
    cursor: pointer;
    list-style: none;
}

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

.page-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #F2C14E;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding-top: 10px;
}

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

.page-promotions__feature-item {
    text-align: center;
    padding: 30px 20px;
}

.page-promotions__feature-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-promotions__feature-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-promotions__call-to-action {
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

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

/* Media Queries */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-promotions__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important;
    }
    .page-promotions__hero-image {
        margin-bottom: 20px;
    }
    .page-promotions__hero-content {
        padding-bottom: 40px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em !important;
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 1em !important;
        margin-bottom: 25px;
    }
    .page-promotions__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__container {
        padding: 15px;
    }
    .page-promotions__intro-section,
    .page-promotions__featured-promos,
    .page-promotions__how-to-claim,
    .page-promotions__terms-conditions,
    .page-promotions__faq-section,
    .page-promotions__why-choose,
    .page-promotions__call-to-action {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em !important;
        margin-bottom: 30px;
    }
    .page-promotions__section-text {
        font-size: 0.95em !important;
        line-height: 1.6;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .page-promotions__card-image {
        height: 200px;
    }
    .page-promotions__card-title {
        font-size: 1.3em !important;
    }
    .page-promotions__card-description {
        font-size: 0.9em !important;
    }
    .page-promotions__card-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px !important;
        font-size: 0.9em !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .page-promotions__step-title {
        font-size: 1.2em !important;
    }
    .page-promotions__terms-list {
        font-size: 0.95em !important;
        margin-left: 15px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em !important;
        padding: 15px;
    }
    .page-promotions__faq-answer {
        font-size: 0.95em !important;
        padding: 0 15px 15px;
    }
    .page-promotions__features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .page-promotions__feature-title {
        font-size: 1.2em !important;
    }
    .page-promotions__feature-description {
        font-size: 0.9em !important;
    }
    .page-promotions__btn-large {
        padding: 15px 30px !important;
        font-size: 1.1em !important;
    }
    /* Universal image and container sizing for mobile */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-buttons,
    .page-promotions__cta-bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-buttons {
        flex-direction: column !important;
        gap: 15px;
    }
    .page-promotions__cta-bottom .page-promotions__btn-primary {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em !important;
    }
    .page-promotions__section-title {
        font-size: 1.5em !important;
    }
}