.page-vip-program {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-vip-program__container {
    max-width: 1200px; /* Aligned with 3WIN boxed layout */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #2F6BFF; /* Main color as background for the section */
    display: flex;
    flex-direction: column; /* Forced image-above-text */
    align-items: center;
    justify-content: center;
    padding-bottom: 40px; /* Add some padding below content */
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum image size */
}

.page-vip-program__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    color: #FFFFFF; /* White text on blue background */
    z-index: 1; /* Ensure content is above image if positioned */
    position: relative;
    padding-top: 20px; /* Add some top padding instead of negative margin */
}

.page-vip-program__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1, no fixed large size */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-vip-program__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #F4F7FB; /* Lighter text for description */
}

.page-vip-program__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure buttons are not too small */
    min-height: 50px;
}

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

/* General Section Styling */
.page-vip-program__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__section-description {
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Overview Section */
.page-vip-program__overview-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-vip-program__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.page-vip-program__feature-item {
    background-color: #F4F7FB; /* Background */
    padding: 15px 20px;
    border-left: 5px solid #2F6BFF; /* Main color accent */
    border-radius: 5px;
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* Tiers Section */
.page-vip-program__tiers-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

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

.page-vip-program__tier-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

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

.page-vip-program__tier-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    aspect-ratio: 3 / 2; /* From 600x400 */
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-vip-program__tier-title {
    font-size: 1.5rem;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-program__tier-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px;
}

.page-vip-program__learn-more-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    min-height: 50px;
}

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

/* Benefits Section */
.page-vip-program__benefits-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

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

.page-vip-program__benefit-item {
    text-align: center;
    padding: 25px;
    background-color: #F4F7FB; /* Background */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border */
}

.page-vip-program__benefit-icon {
    width: 200px; /* Ensure it's not smaller than 200px */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 150px; /* Minimum height, adjusted for 400x300 ratio */
}

.page-vip-program__benefit-title {
    font-size: 1.3rem;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-program__benefit-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
}

/* Join Section */
.page-vip-program__join-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

.page-vip-program__join-steps {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    counter-reset: step-counter;
}

.page-vip-program__step-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
}

.page-vip-program__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.page-vip-program__join-cta-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    min-height: 50px;
}

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

/* FAQ Section */
.page-vip-program__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-vip-program__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-program__faq-question {
    font-size: 1.2rem;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-program__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-vip-program__hero-section {
        padding-bottom: 20px;
    }

    .page-vip-program__hero-content {
        padding: 20px 15px;
        /* margin-top: -50px; REMOVED to prevent text overlapping image */
        padding-top: 15px;
    }

    .page-vip-program__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .page-vip-program__hero-description {
        font-size: 1rem;
    }

    .page-vip-program__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-vip-program__tier-cards,
    .page-vip-program__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-vip-program__feature-list {
        grid-template-columns: 1fr;
    }

    /* Prevent horizontal overflow for images */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
    }
}