.page-promotions {
    background-color: #B71C1C; /* Background */
    color: #FFF5E1; /* Text Main */
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding for first section, relies on body padding-top from shared.css */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 10px;
}

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

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main */
    letter-spacing: -0.02em;
}

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

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

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.page-promotions__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
    color: #7A0E0E; /* Deep Red for text on gold button */
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-promotions__btn--secondary {
    background-color: #D32F2F; /* Card BG */
    color: #FFF5E1; /* Text Main */
    border-color: #F2B544; /* Border */
}

.page-promotions__btn--secondary:hover {
    background-color: #7A0E0E; /* Deep Red */
    border-color: #FFCC66; /* Glow */
    transform: translateY(-2px);
}

.page-promotions__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 30px;
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 60px;
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 50px 0;
    text-align: center;
    background-color: #B71C1C; /* Background */
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title--gradient {
    background: linear-gradient(90deg, #FFD86A, #E6B800); /* Gold gradient for titles */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD86A, #E6B800); /* Gold gradient for underline */
    border-radius: 2px;
}

.page-promotions__section-description {
    font-size: 1em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Promotions List */
.page-promotions__promotions-list {
    padding: 60px 0;
    background-color: #D32F2F; /* Card BG, slightly different background for this section */
}

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

.page-promotions__card {
    background-color: #7A0E0E; /* Deep Red */
    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;
    border: 1px solid #F2B544; /* 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: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    text-align: center;
}

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD86A; /* Gold color for card titles */
    line-height: 1.3;
}

.page-promotions__card-description {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #FFF5E1; /* Text Main */
}

/* Call to Action Section */
.page-promotions__call-to-action {
    padding: 70px 0;
    text-align: center;
    background-color: #B71C1C; /* Background */
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: #D32F2F; /* Card BG */
}

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

.page-promotions__faq-item {
    background-color: #7A0E0E; /* Deep Red */
    border: 1px solid #F2B544; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #FFD86A; /* Gold */
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

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

.page-promotions__faq-answer p {
    margin: 0 0 18px 0;
    line-height: 1.6;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
    padding-bottom: 18px;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-image {
        height: 350px;
        max-width: 100%; /* Ensure no overflow */
    }

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

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

    .page-promotions__btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .page-promotions__card-image {
        height: 180px;
        max-width: 100%; /* Ensure no overflow */
    }

    /* Mobile anti-overflow for all images in content area */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-image {
        height: 250px;
    }

    .page-promotions__main-title {
        font-size: 2em;
    }

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

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

    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}