.page-vip-program-levels {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light backgrounds */
    line-height: 1.6;
}

.page-vip-program-levels__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); /* Fixed header offset */
    background-color: #017439; /* Ensure a consistent background for hero */
    color: #ffffff;
}

.page-vip-program-levels__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-vip-program-levels__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-vip-program-levels__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-vip-program-levels__hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-vip-program-levels__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program-levels__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-program-levels__btn-primary {
    background: #017439;
    color: #ffffff;
    border: 2px solid transparent;
}

.page-vip-program-levels__btn-primary:hover {
    background: #005a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels__btn-secondary {
    background: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-vip-program-levels__btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels__section {
    padding: 60px 20px;
    text-align: center;
}

.page-vip-program-levels__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.page-vip-program-levels__section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #017439;
}

.page-vip-program-levels__section-title--white {
    color: #ffffff;
}

.page-vip-program-levels__section-description {
    font-size: 18px;
    color: #555555;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-vip-program-levels__section-description--white {
    color: #f0f0f0;
}

.page-vip-program-levels__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-program-levels__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-vip-program-levels__levels-grid,
.page-vip-program-levels__privileges-grid,
.page-vip-program-levels__upgrade-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-program-levels__level-card,
.page-vip-program-levels__privilege-card,
.page-vip-program-levels__step-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #333333;
}

.page-vip-program-levels__level-card:hover,
.page-vip-program-levels__privilege-card:hover,
.page-vip-program-levels__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels__level-card img,
.page-vip-program-levels__privilege-card img,
.page-vip-program-levels__step-card img {
    width: 100%;
    max-width: 400px; /* Max width for card images */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum size for images */
    min-height: 200px; /* Minimum size for images */
}

.page-vip-program-levels__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #017439;
}

.page-vip-program-levels__card-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-program-levels__card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.page-vip-program-levels__card-features li {
    font-size: 15px;
    color: #444444;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.page-vip-program-levels__card-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439;
}

.page-vip-program-levels__cta-center {
    margin-top: 60px;
}

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

.page-vip-program-levels__terms-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-vip-program-levels__terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #017439;
}

.page-vip-program-levels__terms-section a {
    color: #017439;
    text-decoration: underline;
}

/* FAQ styles */
.page-vip-program-levels__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-vip-program-levels__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}
}