.page-vip-club {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above, text below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 40px; /* Small top padding, more bottom padding */
    overflow: hidden; /* For images */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Main/Auxiliary colors */
    color: #FFFFFF;
}

.page-vip-club__hero-image {
    width: 100%;
    max-width: 1920px; /* Ensure it scales down */
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px; /* Space between image and content */
}

.page-vip-club__hero-content {
    position: relative; /* Ensure text is above other elements if any */
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-vip-club__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-vip-club__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #F4F7FB; /* Slightly off-white for contrast */
}

.page-vip-club__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-vip-club__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
    min-height: 44px; /* Touch target size */
    box-sizing: border-box;
}

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

.page-vip-club__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slight hover effect */
    transform: translateY(-2px);
}

.page-vip-club__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-vip-club__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

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

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

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

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

.page-vip-club__benefit-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 200px; /* But don't let it get too big */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px; /* Slight radius for images */
}

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

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

.page-vip-club__more-benefits {
    text-align: center;
}

.page-vip-club__btn--outline {
    background-color: transparent;
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF; /* Main color */
}

.page-vip-club__btn--outline:hover {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    transform: translateY(-2px);
}

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

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

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

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

.page-vip-club__tier-badge {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.page-vip-club__tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #1F2D3D; /* Text Main */
}

.page-vip-club__tier-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #D6E2FF; /* Border color */
    display: flex;
    align-items: center;
}

.page-vip-club__tier-features li:last-child {
    border-bottom: none;
}

.page-vip-club__tier-features li::before {
    content: '✅'; /* Checkmark icon */
    margin-right: 10px;
    font-size: 0.9em;
}

.page-vip-club__join-cta {
    text-align: center;
    padding-top: 20px;
}

.page-vip-club__join-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

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

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

.page-vip-club__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-vip-club__faq-question {
    width: 100%;
    background-color: #FFFFFF; /* Card BG */
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 25px;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Touch target size */
}

.page-vip-club__faq-question:hover,
.page-vip-club__faq-question:focus {
    background-color: #F4F7FB; /* Background */
    outline: none;
}

.page-vip-club__faq-question::after {
    content: '▼'; /* Down arrow */
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.page-vip-club__faq-question.is-active::after {
    content: '▲'; /* Up arrow */
    transform: rotate(0deg);
}

.page-vip-club__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
}

.page-vip-club__faq-answer.is-open {
    max-height: 200px; /* Adjust as needed for content, use a large enough value */
    padding: 15px 25px 25px;
}

.page-vip-club__faq-answer p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-vip-club__hero-section {
        padding: 10px 0 30px;
    }

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

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

    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .page-vip-club__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-vip-club__benefits-section,
    .page-vip-club__tiers-section,
    .page-vip-club__faq-section {
        padding: 40px 0;
    }

    .page-vip-club__benefits-grid,
    .page-vip-club__tiers-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }

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

    /* Ensure content area images scale correctly and don't overflow */
    .page-vip-club__benefit-icon,
    .page-vip-club__tier-badge {
        max-width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    /* Critical mobile overflow prevention */
    .page-vip-club {
        overflow-x: hidden;
    }
    .page-vip-club__container {
        padding: 0 15px; /* Adjust padding for smaller screens */
    }
    /* All content images must scale down without causing overflow */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure proper block behavior for scaling */
    }
}

@media (max-width: 549px) {
    .page-vip-club__hero-section {
        padding: 10px 0 20px;
    }
    .page-vip-club__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-vip-club__hero-description {
        font-size: 0.95rem;
    }
    .page-vip-club__benefits-section,
    .page-vip-club__tiers-section,
    .page-vip-club__faq-section {
        padding: 30px 0;
    }
    .page-vip-club__benefit-card,
    .page-vip-club__tier-card {
        padding: 20px;
    }
    .page-vip-club__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-vip-club__faq-answer.is-open {
        padding: 10px 20px 20px;
    }
}