/* style/vip-program.css */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--bg-color, #ffffff); /* Inherit from shared, default to white */
}

.page-vip-program__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f5f5f5; /* Light background for hero */
    padding-bottom: 60px;
}

.page-vip-program__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
    position: relative;
}

.page-vip-program__hero-title {
    font-size: 3.2em;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-vip-program__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555555;
}

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

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box; /* Include padding/border in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-vip-program__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-vip-program__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-vip-program__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-vip-program__btn-secondary:hover {
    background-color: #e0f2f7;
    color: #1e87c0;
    border-color: #1e87c0;
}

.page-vip-program__hero-image-container {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Minimum height for hero image */
}

.page-vip-program__introduction-section,
.page-vip-program__benefits-section,
.page-vip-program__levels-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__contact-cta-section {
    padding: 80px 0;
}

.page-vip-program__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-vip-program__dark-section .page-vip-program__section-title {
    color: #ffffff;
}

.page-vip-program__dark-section .page-vip-program__text-block,
.page-vip-program__dark-section .page-vip-program__note {
    color: #f0f0f0;
}

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

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-vip-program__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
}

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

.page-vip-program__benefit-card,
.page-vip-program__level-card,
.page-vip-program__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}