.page-promotions-details {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: sans-serif; /* Roboto-like font */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-promotions-details__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0 40px; /* More padding at bottom to separate from next section */
    overflow: hidden;
}

.page-promotions-details__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and text */
}

.page-promotions-details__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-promotions-details__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(to right, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-promotions-details__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-details__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A; /* Dark text for contrast */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.page-promotions-details__hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

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

.page-promotions-details__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(to right, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-promotions-details__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-promotions-details__paragraph {
    text-align: center;
    font-size: 1.05em;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-promotions-details__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.page-promotions-details__feature-item {
    background-color: #111111; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #3A2A12; /* Border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-details__feature-icon {
    width: 200px; /* Minimum size */
    height: 150px; /* Minimum size */
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px;
    min-width: 200px;
    min-height: 150px;
}

.page-promotions-details__feature-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD36B; /* Accent color */
}

.page-promotions-details__feature-description {
    font-size: 0.95em;
    color: #FFF6D6;
}

.page-promotions-details__how-to-claim .page-promotions-details__content-wrapper {
    flex-direction: row; /* For desktop, image next to steps */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: flex-start;
}

.page-promotions-details__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-promotions-details__step-item {
    background-color: #111111;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #3A2A12;
}

.page-promotions-details__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    font-weight: 700;
    flex-shrink: 0;
}

.page-promotions-details__step-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #FFD36B;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-promotions-details__step-description {
    font-size: 0.95em;
    color: #FFF6D6;
}

.page-promotions-details__step-description a {
    color: #F2C14E; /* Main color for links */
    text-decoration: none;
    font-weight: 600;
}

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

.page-promotions-details__process-image {
    width: 600px; /* Example size */
    height: 450px; /* Example size */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    max-width: 100%; /* Ensure responsiveness */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-promotions-details__terms-list {
    list-style: disc;
    padding-left: 25px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.0em;
}

.page-promotions-details__terms-item {
    margin-bottom: 10px;
    color: #FFF6D6;
}

.page-promotions-details__terms-item a {
    color: #F2C14E;
    text-decoration: none;
    font-weight: 600;
}

.page-promotions-details__terms-item a:hover {
    text-decoration: underline;
}

.page-promotions-details__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.page-promotions-details__promotion-card {
    background-color: #111111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3A2A12;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-promotions-details__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency, will be adjusted by object-fit */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

.page-promotions-details__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions-details__card-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-promotions-details__card-title a {
    color: #FFD36B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-details__card-title a:hover {
    color: #F2C14E;
}

.page-promotions-details__card-description {
    font-size: 0.9em;
    color: #FFF6D6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions-details__card-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    align-self: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.page-promotions-details__card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 211, 107, 0.3);
}

.page-promotions-details__cta-banner {
    background-color: #111111;
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
    margin-bottom: 40px;
}

.page-promotions-details__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-details__cta-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-promotions-details__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-promotions-details__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 5px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.page-promotions-details__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-details__how-to-claim .page-promotions-details__content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-details__process-image {
        order: -1; /* Image on top for mobile */
        margin-bottom: 30px;
    }
    .page-promotions-details__steps-list {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions-details__hero-section {
        padding: 15px 0 30px;
    }
    .page-promotions-details__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-promotions-details__hero-description {
        font-size: 1em;
    }
    .page-promotions-details__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-details__section {
        padding: 30px 15px;
    }
    .page-promotions-details__section-title {
        font-size: clamp(1.6em, 5vw, 2.2em);
    }
    .page-promotions-details__feature-list,
    .page-promotions-details__promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-details__process-image {
        width: 100%;
        height: auto;
        max-width: 100%; /* Important for mobile image overflow */
    }
    .page-promotions-details__promotion-card {
        max-width: 100%;
    }
    .page-promotions-details__card-image {
        height: 200px; /* Adjust height for mobile cards */
        max-width: 100%; /* Important for mobile image overflow */
    }
    .page-promotions-details__cta-banner {
        padding: 40px 15px;
    }
    .page-promotions-details__cta-title {
        font-size: clamp(1.6em, 5.5vw, 2.2em);
    }
    .page-promotions-details__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* All images within .page-promotions-details must be responsive on mobile */
    .page-promotions-details img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions-details__main-title {
        font-size: clamp(1.6em, 7vw, 2.2em);
    }
    .page-promotions-details__hero-description {
        font-size: 0.95em;
    }
    .page-promotions-details__section-title {
        font-size: clamp(1.4em, 6vw, 2em);
    }
    .page-promotions-details__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-details__step-number {
        margin-bottom: 10px;
    }
    .page-promotions-details__step-title {
        font-size: 1.2em;
    }
    .page-promotions-details__feature-icon {
        width: 150px;
        height: 100px;
    }
}