.page-promotions {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 40px; /* Small top padding, larger bottom padding */
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 1200px; /* Constrain max width to match content */
    height: auto;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative; /* Ensure content is not positioned over image */
    z-index: 1;
}

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* No fixed font-size, rely on natural flow and responsive adjustments */
}

.page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-promotions__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.page-promotions__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
}

.page-promotions__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__button--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF;
}

.page-promotions__button--secondary:hover {
    background-color: #E0E0E0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2F6BFF; /* Main color */
    border-radius: 2px;
}

.page-promotions__featured-promotions {
    background-color: #F4F7FB;
    padding-top: 20px;
}

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

.page-promotions__promotion-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

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

.page-promotions__promotion-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.page-promotions__card-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
    align-self: flex-start;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
}

.page-promotions__button--small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__view-all-promotions {
    text-align: center;
    margin-top: 50px;
}

.page-promotions__button--outline {
    background-color: transparent;
    border: 2px solid #2F6BFF; /* Main color */
    color: #2F6BFF; /* Main color */
    padding: 12px 30px;
}

.page-promotions__button--outline:hover {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim {
    text-align: center;
    background-color: #FFFFFF; /* Card BG */
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__step-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #F8F9FA;
    border: 1px solid #D6E2FF; /* Border color */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
}

.page-promotions__step-description {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
}

.page-promotions__step-description a {
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__faq {
    background-color: #F4F7FB;
    padding-top: 20px;
}

.page-promotions__accordion {
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF; /* Card BG */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__accordion-toggle {
    display: none;
}

.page-promotions__accordion-header {
    display: block;
    padding: 18px 25px;
    background-color: #F8F9FA;
    color: #1F2D3D; /* Text Main */
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #E0E7F5;
}

.page-promotions__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #2F6BFF; /* Main color */
    transition: transform 0.3s ease;
}

.page-promotions__accordion-toggle:checked + .page-promotions__accordion-header::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
    color: #1F2D3D; /* Text Main */
}

.page-promotions__accordion-toggle:checked + .page-promotions__accordion-header + .page-promotions__accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-promotions__accordion-content p {
    margin: 0;
    font-size: 0.95em;
}

.page-promotions__accordion-content a {
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__cta-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    padding: 50px 20px;
    border-radius: 12px;
    text-align: left;
    gap: 40px;
    margin-bottom: 60px;
}

.page-promotions__cta-content {
    max-width: 500px;
}

.page-promotions__cta-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #FFFFFF;
}

.page-promotions__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-promotions__cta-image {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-image {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .page-promotions__section {
        margin-left: 15px;
        margin-right: 15px;
    }
    .page-promotions__cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }
    .page-promotions__cta-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 10px 0 30px;
    }
    .page-promotions__main-title {
        font-size: 1.8em;
    }
    .page-promotions__description {
        font-size: 1em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions__button {
        width: 100%;
        max-width: 280px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promotion-image {
        height: 180px; /* Adjust height for smaller screens */
    }
    .page-promotions__card-title {
        font-size: 1.2em;
    }
    .page-promotions__how-to-claim {
        padding: 30px 15px;
    }
    .page-promotions__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions__faq {
        padding: 0 15px;
    }
    .page-promotions__accordion-header,
    .page-promotions__accordion-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__accordion-header::after {
        right: 15px;
    }
    .page-promotions__cta-title {
        font-size: 1.6em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
    .page-promotions__cta-image {
        width: 100%;
        height: auto;
        max-width: 300px; /* Ensure images don't overflow */
        margin-left: auto;
        margin-right: auto;
    }
    /* Mobile content area images max-width: 100% */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all content area images are at least 200px wide on desktop */
@media (min-width: 769px) {
    .page-promotions__promotion-image,
    .page-promotions__cta-image,
    .page-promotions__hero-image {
        min-width: 200px;
        min-height: 200px; /* Adjust if width is not primary constraint */
    }
}