.page-vip-program {
    background-color: #F4F7FB; /* Background color for the whole page content */
    color: #1F2D3D; /* Main text color */
    padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-program__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    margin-bottom: 40px;
    overflow: hidden; /* Ensure image doesn't spill */
    background-color: #0a0909; /* Dark background for the hero section */
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    /* No absolute positioning or z-index here to prevent text overlap */
}

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

.page-vip-program__hero-content {
    text-align: center;
    padding: 40px 20px;
    background-color: #0a0909; /* Dark background for content to ensure contrast */
    color: #FFFFFF; /* White text for contrast */
}

.page-vip-program__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    /* Using clamp for responsive font size, within allowed limits */
    font-size: clamp(2.2rem, 4vw, 3.5rem); 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #D6E2FF; /* Lighter blue for description */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-vip-program__button {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.page-vip-program__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
}

.page-vip-program__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-vip-program__button--secondary {
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    border: 1px solid #6FA3FF;
}

.page-vip-program__button--secondary:hover {
    background-color: #2F6BFF; /* Primary color on hover */
    border-color: #2F6BFF;
    transform: translateY(-2px);
}

.page-vip-program__benefits-section,
.page-vip-program__levels-section,
.page-vip-program__faq-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

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

.page-vip-program__section-description {
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #1F2D3D; /* Main text color */
}

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

.page-vip-program__benefit-card {
    background-color: #FFFFFF; /* Card background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #D6E2FF; /* Border color */
}

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

.page-vip-program__benefit-card-image {
    width: 100%; /* Image takes full width of card */
    max-width: 400px; /* Max width for content images */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-vip-program__benefit-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-vip-program__benefit-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1F2D3D; /* Main text color */
}

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

.page-vip-program__level-item {
    background-color: #FFFFFF; /* Card background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-vip-program__level-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2F6BFF; /* Primary color for level titles */
    text-align: center;
}

.page-vip-program__level-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-program__level-features li {
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    color: #1F2D3D; /* Main text color */
}

.page-vip-program__level-features li::before {
    content: '✅'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: #2F6BFF; /* Primary color for checkmark */
}

.page-vip-program__cta-bottom {
    text-align: center;
    padding: 30px 0;
}

.page-vip-program__cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
    color: #1F2D3D; /* Main text color */
}

.page-vip-program__faq-list {
    display: grid;
    gap: 20px;
}

.page-vip-program__faq-item {
    background-color: #FFFFFF; /* Card background */
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border color */
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-vip-program__hero-content {
        padding: 25px 15px;
    }

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

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

    .page-vip-program__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

    /* Content area images must be responsive and not cause overflow */
    .page-vip-program__benefit-card-image,
    .page-vip-program__hero-image {
        max-width: 100%;
        height: auto;
    }
}

/* Image CSS vs HTML width/height consistency */
/* The width/height attributes on <img> tags are for the intrinsic ratio and layout slot.
   CSS max-width: 100%; height: auto; ensures responsiveness without conflicting. */
/* No specific CSS width/height for images that would conflict with HTML attributes,
   unless it's to enforce minimums or specific layout sizes that are larger than 200px. */
.page-vip-program__benefit-card-image {
    /* HTML width="400" height="300" is for layout slot */
    max-width: 100%; /* Ensure it doesn't overflow card */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px;
    min-height: 200px;
}
.page-vip-program__hero-image {
    /* HTML width="1200" height="675" is for layout slot */
    max-width: 100%; /* Ensure it doesn't overflow container */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px;
    min-height: 200px;
}