.page-vip-program {
    padding-top: 10px; /* Small padding to avoid being flush with header, body handles main offset */
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

.page-vip-program__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
    text-align: center;
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.page-vip-program__hero-content {
    width: 100%;
    max-width: 800px;
}

.page-vip-program__main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-vip-program__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-vip-program__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

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

.page-vip-program__cta-button--secondary {
    background: #6FA3FF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-vip-program__cta-button--secondary:hover {
    background: #2F6BFF;
}

.page-vip-program__overview-section,
.page-vip-program__benefits-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 15px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-vip-program__section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2D3D;
    margin-bottom: 25px;
    text-align: center;
}

.page-vip-program__section-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
    color: #1F2D3D;
}

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

.page-vip-program__benefit-card {
    background-color: #F4F7FB;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-vip-program__benefit-card:hover {
    transform: translateY(-5px);
}

.page-vip-program__benefit-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure images are not too wide in cards */
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

.page-vip-program__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 10px;
}

.page-vip-program__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-vip-program__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-vip-program__list-item {
    background-color: #F4F7FB;
    border-left: 5px solid #2F6BFF;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.page-vip-program__list-item:last-child {
    margin-bottom: 0;
}

.page-vip-program__list-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-vip-program__list-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-vip-program__list-item a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
}

.page-vip-program__list-item a:hover {
    text-decoration: underline;
}

.page-vip-program__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-vip-program__faq-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-vip-program__faq-item:last-child {
    margin-bottom: 0;
}

.page-vip-program__faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 10px;
}

.page-vip-program__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-vip-program__main-title {
        font-size: clamp(1.1rem, 4.5vw, 1.75rem);
    }
    .page-vip-program__section-title {
        font-size: 1.7rem;
    }
    .page-vip-program__benefits-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }
    .page-vip-program__hero-section,
    .page-vip-program__overview-section,
    .page-vip-program__benefits-section,
    .page-vip-program__how-to-join-section,
    .page-vip-program__faq-section {
        padding: 15px;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .page-vip-program__hero-image,
    .page-vip-program__benefit-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and do not overflow */
    }
    .page-vip-program__section-description {
        text-align: left; /* Adjust text alignment for smaller screens */
    }
}

@media (max-width: 549px) {
    .page-vip-program__main-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }
    .page-vip-program__section-title {
        font-size: 1.5rem;
    }
    .page-vip-program__hero-description {
        font-size: 1rem;
    }
    .page-vip-program__cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .page-vip-program__benefit-card,
    .page-vip-program__list-item,
    .page-vip-program__faq-item {
        padding: 15px;
    }
    .page-vip-program__card-title,
    .page-vip-program__list-title,
    .page-vip-program__faq-question {
        font-size: 1.1rem;
    }
    .page-vip-program__card-description,
    .page-vip-program__list-item p,
    .page-vip-program__faq-answer {
        font-size: 0.9rem;
    }
}

/* Ensure content images are at least 200px wide in CSS */
/* The min-width/height is applied to all images within .page-vip-program that are not the hero image. */
/* This rule aims to ensure content images meet the minimum size, while aspect-ratio helps maintain proportion. */
.page-vip-program img:not(.page-vip-program__hero-image) {
    min-width: 200px;
    min- /* Assuming a common content image aspect ratio like 4:3 or 16:9 for min-height */
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/3; /* Added aspect-ratio for content images to better control their initial shape */
}

/* Specific adjustment for benefit images if their display aspect ratio is known */
.page-vip-program__benefit-image {
    aspect-ratio: 4/3; /* Overrides generic if needed, ensuring specific images maintain their intended ratio */
}