:root {
    --primary-color: #26A9E0; /* Main brand color (light blue) */
    --secondary-color: #FFFFFF; /* Auxiliary color (white) */
    --text-dark: #333333; /* Dark text for light backgrounds */
    --text-light: #ffffff; /* Light text for dark backgrounds */
    --border-color: #e0e0e0; /* Light grey border */
    --background-light: #f9f9f9; /* Light background for sections */
    --background-dark: #208bc0; /* Slightly darker primary for contrast */
    --link-color: #26A9E0; /* Link color */
    --hover-color: #1a7bb0; /* Darker primary for hover */
    --login-button-color: #EA7C07; /* Specific login button color */
}

/* General page styling */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light body background */
    background-color: var(--secondary-color); /* Body background is white */
}

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

.page-vip-program__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-vip-program__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-dark);
}

.page-vip-program__text-block {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Color contrast enforcement */
.page-vip-program__light-bg {
    background-color: var(--secondary-color); /* White background */
    color: var(--text-dark); /* Dark text */
}

.page-vip-program__dark-bg {
    background-color: var(--primary-color); /* Main brand color background */
    color: var(--text-light); /* White text */
}

.page-vip-program__dark-bg .page-vip-program__section-title,
.page-vip-program__dark-bg .page-vip-program__description,
.page-vip-program__dark-bg .page-vip-program__text-block,
.page-vip-program__dark-bg .page-vip-program__level-title,
.page-vip-program__dark-bg .page-vip-program__level-desc,
.page-vip-program__dark-bg .page-vip-program__level-benefits li,
.page-vip-program__dark-bg .page-vip-program__note,
.page-vip-program__dark-bg .page-vip-program__offer-title,
.page-vip-program__dark-bg .page-vip-program__offer-card p {
    color: var(--text-light); /* Ensure all text elements are white on dark background */
}

.page-vip-program__dark-bg a {
    color: var(--secondary-color); /* White links on dark background */
    text-decoration: underline;
}

.page-vip-program__dark-bg a:hover {
    color: var(--hover-color);
}

/* HERO Section */
.page-vip-program__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #30AEE0 100%); /* Gradient background for visual appeal */
    color: var(--text-light);
    overflow: hidden; /* Prevent image overflow */
}

.page-vip-program__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-vip-program__hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    border-radius: 12px;
    overflow: hidden; /* Ensure image corners are rounded */
}

.page-vip-program__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px; /* Slightly smaller border-radius for the image inside */
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-vip-program__main-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for better readability on image */
}

.page-vip-program__hero-content .page-vip-program__description {
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-vip-program__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--login-button-color); /* Use login button color for primary CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px; /* Pill shape button */
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-vip-program__cta-button:hover {
    background: #e06c00; /* Slightly darker orange on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-vip-program__introduction-section {
    padding: 80px 0;
    text-align: center;
}

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

.page-vip-program__feature-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-vip-program__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program__feature-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum image size */
}

.page-vip-program__feature-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-vip-program__feature-item p {
    color: var(--text-dark);
}

/* VIP Levels Section */
.page-vip-program__levels-section {
    padding: 80px 0;
    text-align: center;
}

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

.page-vip-program__level-card {
    background: var(--background-dark); /* Darker blue for cards on dark background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-vip-program__level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-program__level-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum image size */
}

.page-vip-program__level-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700; /* Gold color for VIP levels */
}

.page-vip-program__level-desc {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-vip-program__level-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-vip-program__level-benefits li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95em;
}

.page-vip-program__level-benefits li::before {
    content: '✓';
    color: #ffd700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-vip-program__note {
    margin-top: 40px;
    font-size: 0.9em;
    color: var(--text-light);
}

.page-vip-program__note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-vip-program__note a:hover {
    color: var(--hover-color);
}


/* How to Join Section */
.page-vip-program__how-to-join-section {
    padding: 80px 0;
    text-align: center;
}

.page-vip-program__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__steps-list li {
    background: var(--secondary-color);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.page-vip-program__steps-list li:hover {
    transform: translateX(5px);
}

.page-vip-program__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-vip-program__steps-list p {
    color: var(--text-dark);
}

.page-vip-program__steps-list a {
    color: var(--link-color);
    text-decoration: underline;
}

.page-vip-program__steps-list a:hover {
    color: var(--hover-color);
}

.page-vip-program__cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

.page-vip-program__btn-primary {
    background: var(--login-button-color);
    color: var(--text-light);
    border: none;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program__btn-primary:hover {
    background: #e06c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Exclusive Offers Section */
.page-vip-program__exclusive-offers-section {
    padding: 80px 0;
    text-align: center;
}

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

.page-vip-program__offer-card {
    background: var(--background-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-vip-program__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-program__offer-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum image size */
}

.page-vip-program__offer-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.page-vip-program__offer-card p {
    color: var(--text-light);
}

/* VIP Support Section */
.page-vip-program__vip-support-section {
    padding: 80px 0;
    text-align: center;
}

.page-vip-program__support-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__support-list li {
    background: var(--secondary-color);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.page-vip-program__support-list li:hover {
    transform: translateX(5px);
}

.page-vip-program__support-item-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-vip-program__support-list p {
    color: var(--text-dark);
}

.page-vip-program__btn-secondary {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.page-vip-program__btn-secondary:hover {
    background: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-vip-program__faq-section {
    padding: 80px 0;
    text-align: center;
}

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

/* FAQ container style */
.page-vip-program__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* FAQ default state - answer hidden */
.page-vip-program__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 25px;
  opacity: 0;
}