.page-vip-privileges {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    font-size: 17px; /* Base font size for better readability */
}

.page-vip-privileges__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    box-sizing: border-box;
}

.page-vip-privileges__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and content */
}

.page-vip-privileges__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: none; /* Ensure no filter is applied */
}

.page-vip-privileges__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-privileges__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Responsive H1 */
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-vip-privileges__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-vip-privileges__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-privileges__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-vip-privileges__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-privileges__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* Main green from button gradient */
    border-radius: 2px;
}

.page-vip-privileges__benefits-section,
.page-vip-privileges__how-to-join-section,
.page-vip-privileges__comparison-section,
.page-vip-privileges__faq-section,
.page-vip-privileges__cta-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.page-vip-privileges__benefit-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-privileges__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges__benefit-icon {
    width: 200px; /* Min size 200x200, but using 200x150 for aspect ratio */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    filter: none; /* Ensure no filter is applied */
}

.page-vip-privileges__card-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-vip-privileges__card-text {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-vip-privileges__how-to-join-section .page-vip-privileges__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-vip-privileges__content-text {
    flex: 2;
}

.page-vip-privileges__sub-title {
    font-size: 1.6em;
    color: #F2C14E; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-vip-privileges__text-block {
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-vip-privileges__content-image-wrapper {
    flex: 1;
    min-width: 300px; /* Minimum width for the image container */
    max-width: 400px;
    box-sizing: border-box;
}

.page-vip-privileges__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: none; /* Ensure no filter is applied */
}

.page-vip-privileges__comparison-section .page-vip-privileges__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-vip-privileges__comparison-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-privileges__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-vip-privileges__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-privileges__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-vip-privileges__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-vip-privileges__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green for question background */
    border-bottom: 1px solid #1E3A2A; /* Divider */
    transition: background-color 0.3s ease;
}

.page-vip-privileges__faq-question:hover {
    background-color: #13994A; /* Lighter green on hover */
}

.page-vip-privileges__faq-item[open] .page-vip-privileges__faq-question {
    border-bottom: 1px solid transparent;
}

.page-vip-privileges__faq-qtext {
    flex-grow: 1;
}

.page-vip-privileges__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 20px;
    color: #F2C14E; /* Gold */
    transition: transform 0.3s ease;
}

.page-vip-privileges__faq-item[open] .page-vip-privileges__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-vip-privileges__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
    line-height: 1.7;
}

.page-vip-privileges__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 15px;
    margin-bottom: 80px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges__cta-text {
    font-size: 1.15em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-privileges__cta-button--large {
    padding: 18px 40px;
    font-size: 1.25em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-vip-privileges__hero-content {
        padding: 0 15px;
    }
    .page-vip-privileges__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-vip-privileges__how-to-join-section .page-vip-privileges__content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-vip-privileges__content-image-wrapper {
        margin-top: 30px;
        max-width: 600px;
    }
    .page-vip-privileges__comparison-section .page-vip-privileges__content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-vip-privileges {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-privileges__hero-section {
        padding: 10px 15px 40px;
    }
    .page-vip-privileges__main-title {
        font-size: 2em;
    }
    .page-vip-privileges__description {
        font-size: 1em;
    }
    
    /* All images must be responsive */
    .page-vip-privileges img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        filter: none !important; /* Ensure no filter is applied */
    }

    /* All containers with images/content */
    .page-vip-privileges__section,
    .page-vip-privileges__card,
    .page-vip-privileges__container,
    .page-vip-privileges__benefits-section,
    .page-vip-privileges__how-to-join-section,
    .page-vip-privileges__comparison-section,
    .page-vip-privileges__faq-section,
    .page-vip-privileges__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Buttons responsiveness */
    .page-vip-privileges__cta-button,
    .page-vip-privileges__btn-primary,
    .page-vip-privileges__btn-secondary,
    .page-vip-privileges a[class*="button"],
    .page-vip-privileges a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
      margin-bottom: 10px; /* Add some space if multiple buttons stack */
    }
    
    .page-vip-privileges__cta-buttons,
    .page-vip-privileges__button-group,
    .page-vip-privileges__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
      overflow: hidden !important;
    }
    
    .page-vip-privileges__cta-buttons {
      display: flex;
      flex-direction: column; /* Stack buttons vertically on mobile */
    }

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

    .page-vip-privileges__benefit-icon {
        width: 150px; /* Adjust size for mobile */
        height: 100px;
    }
    
    .page-vip-privileges__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-vip-privileges__sub-title {
        font-size: 1.4em;
    }

    .page-vip-privileges__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-vip-privileges__faq-answer {
        padding: 15px 20px;
    }

    .page-vip-privileges__video-section {
        padding-top: 10px !important;
    }
}