.page-promo {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

.page-promo__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0D1117; /* Dark background for hero section */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Slightly dim the background image */
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF; /* Light text for dark hero background */
    padding: 40px 20px;
    max-width: 900px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    line-height: 1.2;
}

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-promo__button--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0D1117; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-promo__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-promo__button--card {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1em;
    background-color: #FFD700;
    color: #0D1117;
    border: none;
    display: block;
    margin-top: auto; /* Pushes button to bottom of card */
}

.page-promo__button--card:hover {
    background-color: #e6c200;
}

.page-promo__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #0D1117;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promo__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promo__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-promo__overview-section, .page-promo__how-to-claim-section, .page-promo__types-section, .page-promo__terms-section, .page-promo__cta-section {
    padding: 60px 0;
}

.page-promo__overview-section {
    background-color: #f9f9f9;
}

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

.page-promo__promo-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-promo__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promo__card-title {
    font-size: 1.5em;
    color: #0D1117;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promo__card-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows text to grow and push button down */
}

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

.page-promo__step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
}

.page-promo__step-icon {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #0D1117;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.page-promo__step-title {
    font-size: 1.3em;
    color: #0D1117;
    margin-bottom: 15px;
}

.page-promo__step-text {
    font-size: 0.95em;
    color: #666666;
}

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

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

.page-promo__types-section {
    background-color: #f4f4f4;
}

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

.page-promo__type-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: left;
}

.page-promo__type-title {
    font-size: 1.4em;
    color: #0D1117;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.page-promo__type-title::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

.page-promo__type-text {
    font-size: 0.95em;
    color: #666666;
}

.page-promo__terms-section {
    background-color: #f9f9f9;
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__terms-item {
    background-color: #FFFFFF;
    border-left: 4px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    font-size: 1em;
    color: #444444;
}

.page-promo__terms-item strong {
    color: #0D1117;
}

.page-promo__terms-section .page-promo__section-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__terms-section .page-promo__section-description a:hover {
    text-decoration: underline;
}

.page-promo__cta-section {
    background-color: #0D1117;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-promo__cta-section .page-promo__section-title {
    color: #FFD700;
}

.page-promo__cta-section .page-promo__section-title::after {
    background-color: #FFD700;
}

.page-promo__cta-section .page-promo__section-description {
    color: #E0E0E0;
    margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promo__hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }
    .page-promo__overview-section, .page-promo__how-to-claim-section, .page-promo__types-section, .page-promo__terms-section, .page-promo__cta-section {
        padding: 40px 0;
    }
    .page-promo__promo-grid, .page-promo__steps-grid, .page-promo__types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo__card-image {
        height: 200px;
    }
    .page-promo__button--large {
        width: 90%;
        font-size: 1.1em;
        padding: 15px 30px;
    }
    /* Ensure all images within .page-promo are responsive and do not overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
    .page-promo__hero-image {
        width: 100%; /* Important for mobile */
        height: 100%; /* Important for mobile */
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__button {
        width: 95%;
    }
    .page-promo__section-title {
        font-size: 1.6em;
    }
    .page-promo__hero-section {
        min-height: 350px;
    }
}