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

.page-vip-program__hero-section {
    max-width: 1390px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column; /* Image first, then text */
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #FFFFFF; /* Card BG for the section */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image wrapper */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
}

.page-vip-program__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-vip-program__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, otherwise just weight/line-height */
}

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

.page-vip-program__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #1F2D3D; /* Changed from #FFFFFF to #1F2D3D for better contrast */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4); /* Glow color for shadow */
}

.page-vip-program__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-vip-program__tiers-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section {
    max-width: 1390px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-vip-program__section-title {
    font-size: 2.2em;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__section-subtitle {
    font-size: 1.1em;
    color: #1F2D3D;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-vip-program__tier-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-vip-program__tier-card {
    background-color: #F4F7FB; /* Background color for tier cards */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-vip-program__tier-image {
    width: 100%;
    height: auto;
    min-height: 200px; /* Minimum image size */
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it behaves as a block element */
    min-width: 200px; /* Enforce minimum width */
}

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

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1; /* Push button to bottom */
    text-align: left;
}

.page-vip-program__benefit-item {
    font-size: 1em;
    margin-bottom: 10px;
    color: #1F2D3D;
    padding-left: 25px;
    position: relative;
}

.page-vip-program__benefit-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #2F6BFF;
}

.page-vip-program__tier-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #1F2D3D; /* Changed from #FFFFFF to #1F2D3D for better contrast */
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-vip-program__tier-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(47, 107, 255, 0.5);
}

.page-vip-program__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-vip-program__step-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-program__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(47, 107, 255, 0.3);
}

.page-vip-program__step-title {
    font-size: 1.5em;
    color: #2F6BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-vip-program__inline-link {
    color: #2F6BFF;
    text-decoration: underline;
    font-weight: bold;
}

.page-vip-program__inline-link:hover {
    color: #6FA3FF;
}

.page-vip-program__cta-button--bottom {
    margin-top: 20px;
}

.page-vip-program__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-vip-program__faq-question {
    font-size: 1.2em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-vip-program__hero-section {
        margin: 0 auto 30px auto;
        padding: 15px;
    }
    .page-vip-program__hero-content {
        padding: 0 15px;
    }
    .page-vip-program__main-title {
        /* clamp(min, preferred, max) */
        font-size: clamp(1.8em, 4vw, 2.5em);
    }
    .page-vip-program__description {
        font-size: 1em;
    }
    .page-vip-program__section-title {
        font-size: clamp(1.8em, 3.5vw, 2em);
    }
    .page-vip-program__section-subtitle {
        font-size: 1em;
    }
    .page-vip-program__tiers-section,
    .page-vip-program__how-to-join-section,
    .page-vip-program__faq-section {
        margin: 30px auto;
        padding: 30px 15px;
    }
    .page-vip-program__tier-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-vip-program {
        padding-top: 10px; /* Ensure small top padding */
    }
    .page-vip-program__hero-section {
        margin: 0 auto 20px auto;
        padding: 10px;
    }
    .page-vip-program__hero-content {
        padding: 0 10px;
    }
    .page-vip-program__main-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 10px;
    }
    .page-vip-program__description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-vip-program__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-program__tiers-section,
    .page-vip-program__how-to-join-section,
    .page-vip-program__faq-section {
        margin: 20px auto;
        padding: 20px 10px;
    }
    .page-vip-program__section-title {
        font-size: clamp(1.6em, 5vw, 1.8em);
        margin-bottom: 10px;
    }
    .page-vip-program__section-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-vip-program__tier-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
    }
    .page-vip-program__tier-image {
        max-height: 250px; /* Adjust max height for single column to not be too squashed */
    }
    .page-vip-program__steps-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .page-vip-program__step-item {
        padding: 20px;
    }
    .page-vip-program__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    .page-vip-program__step-title {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
    .page-vip-program__faq-question {
        font-size: 1.1em;
    }
    /* Mobile content image overflow prevention */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
    }
}