.page-promotions-vip-exclusive-benefits {
    color: #ffffff; /* Light text for dark background */
    background-color: var(--site-secondary-color, #1A1A1A); /* Inherit from shared or use default dark */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
    font-size: 17px;
}

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

.page-promotions-vip-exclusive-benefits__section-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.page-promotions-vip-exclusive-benefits__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #FFD700;
    border-radius: 3px;
}

.page-promotions-vip-exclusive-benefits__text-block {
    font-size: 1.15em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Hero Section */
.page-promotions-vip-exclusive-benefits__hero-section {
    background-color: #1A1A1A; /* Dark background */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-vip-exclusive-benefits__hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.page-promotions-vip-exclusive-benefits__hero-content {
    flex: 1;
    text-align: left;
    z-index: 1;
}

.page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    font-weight: 800;
}

.page-promotions-vip-exclusive-benefits__hero-description {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-exclusive-benefits__hero-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    z-index: 0;
    min-width: 400px;
}

.page-promotions-vip-exclusive-benefits__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Introduction Section */
.page-promotions-vip-exclusive-benefits__introduction-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-promotions-vip-exclusive-benefits__image-content {
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-exclusive-benefits__image-content img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Levels Section */
.page-promotions-vip-exclusive-benefits__levels-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Slightly darker */
}

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

.page-promotions-vip-exclusive-benefits__level-card {
    background-color: #2a2a2a;
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-vip-exclusive-benefits__level-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.page-promotions-vip-exclusive-benefits__level-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions-vip-exclusive-benefits__card-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions-vip-exclusive-benefits__card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #f0f0f0;
    flex-grow: 1;
}

.page-promotions-vip-exclusive-benefits__card-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-promotions-vip-exclusive-benefits__card-features li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
}

/* Benefits Section */
.page-promotions-vip-exclusive-benefits__benefits-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-promotions-vip-exclusive-benefits__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-vip-exclusive-benefits__benefit-card {
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-promotions-vip-exclusive-benefits__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.page-promotions-vip-exclusive-benefits__benefit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    object-fit: cover;
    display: block;
}

.page-promotions-vip-exclusive-benefits__card-description {
    font-size: 1.05em;
    color: #cccccc;
    text-align: justify;
    flex-grow: 1;
}

/* How to Join Section */
.page-promotions-vip-exclusive-benefits__how-to-join-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.page-promotions-vip-exclusive-benefits__join-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    counter-reset: step-counter;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-exclusive-benefits__join-steps li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 70px;
    position: relative;
    font-size: 1.15em;
    color: #f0f0f0;
    text-align: left;
}

.page-promotions-vip-exclusive-benefits__join-steps li strong {
    color: #FFD700;
}

.page-promotions-vip-exclusive-benefits__join-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: -5px;
    background-color: #FFD700;
    color: #1A1A1A;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-promotions-vip-exclusive-benefits__faq-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-promotions-vip-exclusive-benefits__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-promotions-vip-exclusive-benefits__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-answer {
    max-height: 2000px !important; /* Use !important and a large value */
    padding: 20px 15px !important;
    opacity: 1;
    background: #2a2a2a; /* Darker background for answer */
    border-radius: 0 0 5px 5px;
    color: #f0f0f0;
}

.page-promotions-vip-exclusive-benefits__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #333333; /* Dark grey for question background */
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions-vip-exclusive-benefits__faq-question:hover {
    background: #444444; /* Slightly lighter on hover */
    border-color: #ffe066; /* Lighter gold on hover */
}

.page-promotions-vip-exclusive-benefits__faq-question:active {
    background: #555555;
}

.page-promotions-vip-exclusive-benefits__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.5;
    color: #FFD700; /* Gold text for question */
    pointer-events: none;
}

.page-promotions-vip-exclusive-benefits__faq-toggle {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-toggle {
    color: #ffffff; /* White when active */
    transform: rotate(45deg);
}

/* Call to Action Section */
.page-promotions-vip-exclusive-benefits__cta-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    text-align: center;
}

.page-promotions-vip-exclusive-benefits__cta-section .page-promotions-vip-exclusive-benefits__text-block {
    margin-bottom: 40px;
}

/* Buttons */
.page-promotions-vip-exclusive-benefits__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.25em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-promotions-vip-exclusive-benefits__btn-primary {
    background-color: #FFD700;
    color: #1A1A1A; /* Dark text on gold button for contrast */
    border: 2px solid #FFD700;
}

.page-promotions-vip-exclusive-benefits__btn-primary:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-exclusive-benefits__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-vip-exclusive-benefits__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-exclusive-benefits__cta-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}


/* Global Image and Container Responsive Styles */
.page-promotions-vip-exclusive-benefits img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-vip-exclusive-benefits__section,
.page-promotions-vip-exclusive-benefits__card,
.page-promotions-vip-exclusive-benefits__container,
.page-promotions-vip-exclusive-benefits__hero-container,
.page-promotions-vip-exclusive-benefits__levels-grid,
.page-promotions-vip-exclusive-benefits__benefits-grid,
.page-promotions-vip-exclusive-benefits__faq-list,
.page-promotions-vip-exclusive-benefits__cta-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions-vip-exclusive-benefits__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-vip-exclusive-benefits__hero-content {
        text-align: center;
    }
    .page-promotions-vip-exclusive-benefits__hero-image-wrapper {
        min-width: unset;
    }
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 3.5em;
    }
    .page-promotions-vip-exclusive-benefits__hero-description {
        font-size: 1.4em;
    }
    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-exclusive-benefits__level-card,
    .page-promotions-vip-exclusive-benefits__benefit-card {
        padding: 25px;
    }
    .page-promotions-vip-exclusive-benefits__levels-grid,
    .page-promotions-vip-exclusive-benefits__benefits-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-benefits {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions-vip-exclusive-benefits__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-exclusive-benefits__hero-description {
        font-size: 1.2em;
    }
    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-exclusive-benefits__text-block {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-benefits__container {
        padding: 0 15px;
    }

    .page-promotions-vip-exclusive-benefits__hero-container {
        padding: 0 15px;
        gap: 20px;
    }

    .page-promotions-vip-exclusive-benefits__levels-grid,
    .page-promotions-vip-exclusive-benefits__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions-vip-exclusive-benefits__level-card,
    .page-promotions-vip-exclusive-benefits__benefit-card {
        padding: 20px;
    }
    .page-promotions-vip-exclusive-benefits__card-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-benefits__card-features li,
    .page-promotions-vip-exclusive-benefits__card-description {
        font-size: 0.95em;
    }
    .page-promotions-vip-exclusive-benefits__join-steps li {
        font-size: 1em;
        padding-left: 55px;
    }
    .page-promotions-vip-exclusive-benefits__join-steps li::before {
        width: 38px;
        height: 38px;
        font-size: 1.3em;
    }
    .page-promotions-vip-exclusive-benefits__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-promotions-vip-exclusive-benefits__faq-question h3 {
        font-size: 1.1em;
        width: calc(100% - 40px);
    }
    .page-promotions-vip-exclusive-benefits__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-promotions-vip-exclusive-benefits__faq-answer {
        padding: 0 15px;
    }
    .page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-answer {
        padding: 15px !important;
    }
    .page-promotions-vip-exclusive-benefits__cta-button {
        padding: 12px 20px;
        font-size: 1.1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 5px 0 !important;
    }
    .page-promotions-vip-exclusive-benefits__cta-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    .page-promotions-vip-exclusive-benefits img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions-vip-exclusive-benefits__section,
    .page-promotions-vip-exclusive-benefits__card,
    .page-promotions-vip-exclusive-benefits__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}