.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background from shared.css */
}

/* Hero Banner Section */
.page-promotions__hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    margin-top: 0;
}

.page-promotions__hero-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.page-promotions__hero-banner-container img {
    width: 100%;
    height: 600px; /* Fixed height for banner, adjust as needed */
    object-fit: cover;
    display: block;
}

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

/* Titles and Descriptions */
.page-promotions__main-title {
    font-size: 3.2em; /* Adjusted for better impact */
    font-weight: 700;
    color: #FFD700; /* Gold for main title */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__intro-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section-title {
    font-size: 2.5em; /* Adjusted for better impact */
    font-weight: 700;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.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;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* For responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-promotions__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue text for contrast */
    border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Category Grid */
.page-promotions__categories-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Slightly lighter dark background for contrast with body */
}

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

.page-promotions__category-card {
    background-color: #1a1a1a; /* Darker background for card */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-promotions__category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-promotions__card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #FFD700;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 20px 20px;
    margin: 0;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-promotions__card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text */
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #0A2463;
}

.page-promotions__card-button:hover {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
}

/* Detail Sections */
.page-promotions__detail-section {
    padding: 80px 0;
}

.page-promotions__dark-section {
    background-color: #0A2463; /* Brand dark blue */
    color: #ffffff;
}

.page-promotions__dark-section .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__dark-section p,
.page-promotions__dark-section li {
    color: #f0f0f0;
}

.page-promotions__dark-section h3 {
    color: #FFD700;
}

.page-promotions__detail-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-promotions__detail-content--reverse {
    flex-direction: row-reverse;
}

.page-promotions__detail-text {
    flex: 1;
}

.page-promotions__detail-text h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for subheadings */
}

.page-promotions__detail-text p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-promotions__detail-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-promotions__detail-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-promotions__detail-text ul li::before {
    content: '★'; /* Star icon */
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

.page-promotions__detail-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__detail-text a:hover {
    text-decoration: underline;
}

.page-promotions__detail-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions__steps-list li {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-promotions__steps-list li h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions__steps-list li p {
    color: #cccccc;
    font-size: 1em;
}

.page-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps-list li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
}

.page-promotions__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a; /* Dark background for FAQ items */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #0A2463; /* Dark blue for question header */
    border: 1px solid #0A2463;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions__faq-question:hover {
    background-color: #1c3d80; /* Slightly lighter dark blue on hover */
    border-color: #1c3d80;
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff; /* White text for question */
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-promotions__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    color: #ffffff; /* White when active */
    transform: rotate(45deg); /* Rotate for minus sign effect */
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background-color: #2a2a2a; /* Slightly lighter background for answer */
    border-radius: 0 0 8px 8px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-promotions__faq-answer p {
    color: #cccccc;
    font-size: 1em;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.8em;
    }

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

    .page-promotions__detail-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-promotions__detail-content--reverse {
        flex-direction: column; /* Stacks in reverse order for mobile */
    }

    .page-promotions__detail-image {
        min-width: unset;
        width: 100%;
    }

    .page-promotions__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 15px;
    }

    /* General image and container responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions__container,
    .page-promotions__hero-banner-section,
    .page-promotions__intro-section,
    .page-promotions__categories-section,
    .page-promotions__detail-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Hero Banner */
    .page-promotions__hero-banner-section {
        padding-top: 0 !important; /* Assuming shared.css handles body padding-top */
    }
    .page-promotions__hero-banner-container img {
        height: 300px;
    }

    /* Titles and Descriptions */
    .page-promotions__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-promotions__intro-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .page-promotions__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* CTA Buttons */
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 40px;
        padding: 0 15px; /* Add padding to button container */
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important; /* Ensure full width */
        max-width: 100% !important;
    }

    /* Category Grid */
    .page-promotions__category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-promotions__category-card img {
        height: 200px;
    }

    .page-promotions__card-title {
        font-size: 1.3em;
        padding: 15px 15px 8px;
    }

    .page-promotions__card-text {
        font-size: 0.9em;
        padding: 0 15px 15px;
    }

    .page-promotions__card-button {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
        padding: 10px 15px;
        font-size: 0.95em;
    }

    /* Detail Sections */
    .page-promotions__detail-section {
        padding: 40px 0;
    }

    .page-promotions__detail-content {
        margin-top: 30px;
    }

    .page-promotions__detail-text h3 {
        font-size: 1.5em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-promotions__detail-text p,
    .page-promotions__detail-text ul li {
        font-size: 0.95em;
    }

    /* How to Claim Section */
    .page-promotions__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-promotions__steps-list li {
        padding: 20px;
    }

    .page-promotions__steps-list li h4 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    /* FAQ Section */
    .page-promotions__faq-list {
        margin-top: 30px;
    }

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

    .page-promotions__faq-question {
        padding: 15px 20px;
    }

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

    .page-promotions__faq-toggle {
        font-size: 1.5em;
        width: 25px;
        height: 25px;
    }

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

    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px 20px !important;
    }
}