.page-vip-loyalty-program {
    font-family: Arial, sans-serif;
    color: #FFF6D6;
    background-color: #0A0A0A;
    line-height: 1.6;
    padding-top: 10px; /* Small padding to avoid content being directly under a potential fixed header */
}

.page-vip-loyalty-program__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #111111;
    border-bottom: 2px solid #3A2A12;
    gap: 30px;
}

.page-vip-loyalty-program__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-vip-loyalty-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-vip-loyalty-program__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-vip-loyalty-program__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-vip-loyalty-program__hero-description {
    font-size: 1.15rem;
    color: #E5E5E5;
    margin-bottom: 30px;
}

.page-vip-loyalty-program__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-loyalty-program__cta-button:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-3px);
}

.page-vip-loyalty-program__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin: 60px 0 30px;
}

.page-vip-loyalty-program__section-description {
    font-size: 1.1rem;
    color: #E5E5E5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.page-vip-loyalty-program__tiers-section {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

.page-vip-loyalty-program__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-vip-loyalty-program__tier-card {
    background-color: #111111;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
}

.page-vip-loyalty-program__tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B;
}

.page-vip-loyalty-program__tier-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    width: 100%; /* Adjust to fill card width */
    height: auto;
}

.page-vip-loyalty-program__tier-title {
    font-size: 1.8rem;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-vip-loyalty-program__tier-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #E5E5E5;
}

.page-vip-loyalty-program__tier-benefit-item {
    margin-bottom: 8px;
    font-size: 1rem;
}

.page-vip-loyalty-program__tier-cta {
    display: inline-block;
    padding: 10px 20px;
    background: #F2C14E;
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-vip-loyalty-program__tier-cta:hover {
    background-color: #FFD36B;
}

.page-vip-loyalty-program__how-it-works-section {
    padding: 60px 20px;
    background-color: #111111;
    border-top: 2px solid #3A2A12;
}

.page-vip-loyalty-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.page-vip-loyalty-program__step-card {
    background-color: #0A0A0A;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12;
}

.page-vip-loyalty-program__step-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    width: 100%; /* Adjust to fill card width */
    height: auto;
}

.page-vip-loyalty-program__step-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-vip-loyalty-program__step-text {
    font-size: 0.95rem;
    color: #E5E5E5;
}

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

.page-vip-loyalty-program__cta-button--centered {
    margin: 0 auto;
}

.page-vip-loyalty-program__benefits-overview-section {
    padding: 60px 20px;
    background-color: #0A0A0A;
    border-top: 2px solid #3A2A12;
}

.page-vip-loyalty-program__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-vip-loyalty-program__benefit-item {
    background-color: #111111;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12;
}

.page-vip-loyalty-program__benefit-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    width: 100%; /* Adjust to fill card width */
    height: auto;
}

.page-vip-loyalty-program__benefit-title {
    font-size: 1.6rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-vip-loyalty-program__benefit-text {
    font-size: 0.95rem;
    color: #E5E5E5;
}

.page-vip-loyalty-program__faq-section {
    padding: 60px 20px;
    background-color: #111111;
    border-top: 2px solid #3A2A12;
}

.page-vip-loyalty-program__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-vip-loyalty-program__faq-question {
    font-size: 1.25rem;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-vip-loyalty-program__faq-answer {
    font-size: 1rem;
    color: #E5E5E5;
    /* display: none; */ /* Can be toggled with JS */
}

.page-vip-loyalty-program__cta-banner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    text-align: center;
    gap: 30px;
    border-top: 2px solid #3A2A12;
}

.page-vip-loyalty-program__cta-banner-content {
    max-width: 800px;
    color: #0A0A0A;
}

.page-vip-loyalty-program__cta-banner-title {
    font-size: 2.2rem;
    color: #0A0A0A;
    margin-bottom: 15px;
}

.page-vip-loyalty-program__cta-banner-description {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 25px;
}

.page-vip-loyalty-program__cta-banner-image-wrapper {
    width: 100%;
    max-width: 600px;
}

.page-vip-loyalty-program__cta-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-vip-loyalty-program__hero-section {
        padding: 40px 15px;
    }

    .page-vip-loyalty-program__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-vip-loyalty-program__hero-description {
        font-size: 1rem;
    }

    .page-vip-loyalty-program__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-vip-loyalty-program__section-title {
        font-size: 2rem;
        margin: 40px 0 25px;
    }

    .page-vip-loyalty-program__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-vip-loyalty-program__tiers-grid,
    .page-vip-loyalty-program__steps-grid,
    .page-vip-loyalty-program__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-vip-loyalty-program__tier-icon,
    .page-vip-loyalty-program__step-icon,
    .page-vip-loyalty-program__benefit-icon,
    .page-vip-loyalty-program__cta-banner-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-vip-loyalty-program__tier-title {
        font-size: 1.6rem;
    }

    .page-vip-loyalty-program__step-title {
        font-size: 1.3rem;
    }

    .page-vip-loyalty-program__benefit-title {
        font-size: 1.4rem;
    }

    .page-vip-loyalty-program__faq-question {
        font-size: 1.1rem;
    }

    .page-vip-loyalty-program__cta-banner-title {
        font-size: 1.8rem;
    }

    .page-vip-loyalty-program__cta-banner-description {
        font-size: 1rem;
    }
}

/* Ensure all images adhere to mobile overflow rules */
@media (max-width: 768px) {
    .page-vip-loyalty-program img {
        max-width: 100% !important;
        height: auto !important;
    }
}