.page-blog-latest-promotions-god88 {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px; /* Small padding to avoid content touching footer */
}

.page-blog-latest-promotions-god88__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    background-color: #2F6BFF;
    color: #FFFFFF;
}

.page-blog-latest-promotions-god88__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
    margin-bottom: 20px;
}

.page-blog-latest-promotions-god88__hero-content {
    text-align: center;
    padding: 0 20px 40px;
    max-width: 900px;
}

.page-blog-latest-promotions-god88__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-blog-latest-promotions-god88__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-blog-latest-promotions-god88__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.page-blog-latest-promotions-god88__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-blog-latest-promotions-god88__overview-section,
.page-blog-latest-promotions-god88__details-section,
.page-blog-latest-promotions-god88__how-to-claim-section,
.page-blog-latest-promotions-god88__faq-section,
.page-blog-latest-promotions-god88__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-promotions-god88__section-title {
    color: #2F6BFF;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-blog-latest-promotions-god88__section-description {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.05em;
    color: #1F2D3D;
}

.page-blog-latest-promotions-god88__promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-blog-latest-promotions-god88__promo-item {
    background-color: #F4F7FB;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #D6E2FF;
}

.page-blog-latest-promotions-god88__promo-item-title {
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.page-blog-latest-promotions-god88__promo-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #D6E2FF;
}

.page-blog-latest-promotions-god88__promo-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
    border-bottom: 1px solid #D6E2FF;
}

.page-blog-latest-promotions-god88__promo-card-title {
    color: #2F6BFF;
    margin: 15px 15px 10px;
    font-weight: bold;
}

.page-blog-latest-promotions-god88__promo-card-description {
    padding: 0 15px;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-blog-latest-promotions-god88__promo-card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-blog-latest-promotions-god88__promo-card-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-1px);
}

.page-blog-latest-promotions-god88__claim-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-blog-latest-promotions-god88__claim-step {
    background-color: #F4F7FB;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid #2F6BFF;
    position: relative;
    counter-increment: step-counter;
}

.page-blog-latest-promotions-god88__claim-step::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2F6BFF;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-blog-latest-promotions-god88__claim-step-title {
    color: #000000;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 20px; /* Offset for the counter */
}

.page-blog-latest-promotions-god88__claim-step p {
    margin-bottom: 0;
    margin-left: 20px; /* Offset for the counter */
}

.page-blog-latest-promotions-god88__faq-item {
    background-color: #F4F7FB;
    padding: 18px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #D6E2FF;
}

.page-blog-latest-promotions-god88__faq-question {
    color: #2F6BFF;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-latest-promotions-god88__faq-answer {
    color: #1F2D3D;
    margin-bottom: 0;
}

.page-blog-latest-promotions-god88__cta-section {
    text-align: center;
    padding: 40px 20px;
}

.page-blog-latest-promotions-god88__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-latest-promotions-god88__hero-content {
        padding: 0 15px 30px;
    }

    .page-blog-latest-promotions-god88__main-title {
        font-size: 1.8em;
    }

    .page-blog-latest-promotions-god88__hero-description {
        font-size: 1em;
    }

    .page-blog-latest-promotions-god88__overview-section,
    .page-blog-latest-promotions-god88__details-section,
    .page-blog-latest-promotions-god88__how-to-claim-section,
    .page-blog-latest-promotions-god88__faq-section,
    .page-blog-latest-promotions-god88__cta-section {
        margin: 20px auto;
        padding: 15px;
    }

    .page-blog-latest-promotions-god88__promo-list {
        grid-template-columns: 1fr;
    }

    .page-blog-latest-promotions-god88__promo-card-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-latest-promotions-god88__hero-image,
    .page-blog-latest-promotions-god88__promo-card-image {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not too small */
    .page-blog-latest-promotions-god88 img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }

    .page-blog-latest-promotions-god88__claim-step::before {
        left: 5px;
        top: 15px;
        transform: translateY(0);
    }

    .page-blog-latest-promotions-god88__claim-step-title,
    .page-blog-latest-promotions-god88__claim-step p {
        margin-left: 45px;
    }
}