.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Main container background should be transparent to show body background */
}

/* Header offset for desktop and mobile */
.page-promotions__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Apply header offset here */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #8B0000, #FFD700); /* Blend brand colors */
    color: #ffffff;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Make background image subtle */
}