.page-promotions {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some bottom padding */
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure image meets min size */
}

.page-promotions__hero-content {
    max-width: 1200px;
    margin: 20px auto 0 auto; /* Margin top to separate from image */
    padding: 0 20px;
    text-align: center;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFB04D, #FF8C1A); /* Glow to Primary */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-promotions__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 150px; /* Ensure button minimum width */
    text-align: center;
    border: 1px solid transparent;
}

.page-promotions__button--primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #FFF3E6; /* Text Main */
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-promotions__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-promotions__button--secondary {
    background-color: transparent;
    color: #FF8C1A; /* Primary */
    border-color: #A84F0C; /* Border */
}

.page-promotions__button--secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 140, 26, 0.1);
    border-color: #FF8C1A; /* Primary */
}

/* Section Titles & Descriptions */
.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin: 60px 0 20px;
    background: linear-gradient(to right, #FFB04D, #FF8C1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

/* Promotion Grid */
.page-promotions__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions__promotion-card {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #A84F0C; /* Border */
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 140, 26, 0.3);
}

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

.page-promotions__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #FF8C1A; /* Primary */
    padding: 20px 20px 10px;
}

.page-promotions__card-text {
    font-size: 1em;
    color: #FFF3E6; /* Text Main */
    padding: 0 20px 20px;
    flex-grow: 1; /* Make text take available space */
}

.page-promotions__button--card {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    margin: 0 20px 20px;
    padding: 10px 15px;
    border-radius: 6px;
    width: calc(100% - 40px);
}

.page-promotions__button--card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

/* FAQ Section */
.page-promotions__faq-section {
    max-width: 900px;
    margin: 80px auto 40px auto;
    padding: 0 20px;
}

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

.page-promotions__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFB04D; /* Glow */
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-promotions__description,
    .page-promotions__section-description {
        font-size: 1em;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__button {
        width: 80%;
        margin: 0 auto;
    }
    
    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__card-image {
        max-width: 100%;
        height: auto;
        min-height: 200px; /* Ensure image meets min size */
    }

    /* Mobile content image constraint */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content {
        padding: 0 15px;
    }
    .page-promotions__promotion-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .page-promotions__faq-section {
        padding: 0 15px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-question::after {
        right: 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px;
    }
}