.page-promotions {
    padding-top: 10px; /* Small top padding for non-hero sections, body handles header offset */
    background-color: #FFFFFF; /* Overall page background */
    color: #f5f5f5; /* Default text color for dark sections */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    background-color: #000000; /* Dark background for hero */
    padding-bottom: 40px; /* Padding below content */
}

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

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF;
}

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: #FCBC45; /* Highlight H1 with accent color */
}

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

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

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none; /* Remove default button border */
}

.page-promotions__btn--primary {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
}

.page-promotions__btn--primary:hover {
    background-color: #e0a030;
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
}
.page-promotions__btn--register:hover {
    background-color: #e0e0e0;
}

.page-promotions__btn--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}
.page-promotions__btn--login:hover {
    background-color: #e0a030;
}


/* General Section Styling */
.page-promotions__current-offers,
.page-promotions__how-to-claim,
.page-promotions__terms-section,
.page-promotions__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000; /* Dark background for content sections */
    border-bottom: 1px solid #333333;
}

.page-promotions__current-offers {
    padding-top: 80px; /* More space above first content section */
}

.page-promotions__terms-section,
.page-promotions__faq-section {
    border-bottom: none; /* No border for the last section */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FCBC45;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-promotions__promotion-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #FCBC45;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-promotions__claim-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.page-promotions__step-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.6em;
    color: #FCBC45;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-text {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-promotions__step-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-promotions__claim-cta {
    text-align: center;
    margin-top: 50px;
}

/* Terms Section */
.page-promotions__text-link {
    color: #FCBC45;
    text-decoration: underline;
}

.page-promotions__text-link:hover {
    color: #e0a030;
}

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

.page-promotions__faq-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-promotions__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

    .page-promotions__main-title {
        font-size: 2em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-promotions__current-offers,
    .page-promotions__how-to-claim,
    .page-promotions__terms-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }

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

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

    .page-promotions__promotion-grid {
        grid-template-columns: 1fr; /* Single column for small screens */
    }

    .page-promotions__card-title {
        font-size: 1.3em;
    }

    .page-promotions__step-title {
        font-size: 1.4em;
    }

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

    /* Ensure images are responsive and don't cause overflow */
    .page-promotions__hero-image,
    .page-promotions__card-image {
        max-width: 100%;
        height: auto;
    }
    .page-promotions__hero-section img,
    .page-promotions__current-offers img,
    .page-promotions__how-to-claim img {
        max-width: 100% !important;
        height: auto !important;
    }
}