.v_section_premium_program_01 .v_intro {
    flex-direction: column;
    display: flex;
}

.v_section_premium_program_01 .v_intro img {
    width: 100%;
}

.v_pp_intro {
    margin-top: 20px;
    column-gap: 40px;
    grid-template-columns: 1fr 1fr;
    display: grid;
}

.v_pp_intro_text {
    flex-direction: column;
    display: flex;
}

.v_pp_intro_text h2 {
    margin-bottom: 30px;
}

.v_pp_btn_box {
    margin-top: 20px;
    column-gap: 30px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    display: flex;
}

.v_pp_dcsp {
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
}

.v_pp_dcsp .v_section_sub_heading {
    text-align: center;
}

.v_dcsp_grid3 {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    column-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch; /* Ensures all items in a row are the same height */
    display: grid;
}

.v_dcsp_title {
    border-radius: 20px 20px 0 0;
    padding: 20px;
    background-color: var(--green-color);
    grid-template-columns: auto 1fr;
    align-items: center;
    display: grid;
}

.v_dcsp_title img {
    max-width: 80px;
}

.v_dcsp_title h6 {
    line-height: 1;
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.v_dcsp_content {
    flex-grow: 1;
    padding: 20px;
    row-gap: 15px;
    background-color: #fceee8;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.v_dcsp_content p {
    font-weight: 500;
    color: var(--green-color);
}

.v_dcsp_action {
    row-gap: 15px;
    flex-direction: column;
    display: flex;
    justify-content: space-between; /* 左右對齊：價錢靠左，按鈕靠右 */
    align-items: center; /* 垂直置中對齊 */
     margin-top: auto;
}

.v_dcsp_action p {
    margin: 0; 
}

.v_dcsp_item {
    display: flex;
    flex-direction: column;
}

.v_dcsp_item img {
    width: 100%;
}

.v_dcsp_content ul {
    margin-left: 20px;
    row-gap: 15px;
    flex-direction: column;
    display: flex;
}

.v_dcsp_content ul li {
    list-style-type: disc;
}

.v_dcsp_content a {
    margin-top: auto;
    text-decoration: underline;
}

.v_pp_sc {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 8rem;
    padding-right: 8rem;
    background-color: var(--gold-color);
    column-gap: 40px;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto 1fr;
    display: grid;
}

.v_pp_sc .v_section_sub_heading {
    margin-bottom: 0;
    color: white;    
}

.v_pp_sc ul {
    row-gap: 15px;
    flex-direction: column;
    display: flex;
}

.v_pp_sc li {
    color: white;   
    align-items: flex-start;
    flex-direction: row;
    display: flex; 
}

.v_pp_contact {
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.v_pp_contact .v_section_sub_heading {
    margin-bottom: 20px;
    text-transform: none;
}

.v_pp_contact_btn {
    margin-top: 40px;
    column-gap: 60px;
    flex-direction: row;
    display: flex;
}

/* .v_pp_contact_btn .v_btn {
    background-color: var(--gold-color);
    color: white;
}

.v_pp_contact_btn .v_btn:hover {
    background-color: white;
    color: var(--gold-color);;
} */

.v_pp_video {
    margin: 120px auto 0;
    width: 100%;
    max-width: 1200px;
}

.v_pp_intro_overlay {
    left: 40px;
    top: 120px;
    position: absolute;
}

.v_pp_intro_overlay h6 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
}

.v_pp_sc_details img {
    margin-top: 5px;
    width: 100%;
    max-width: 40px
}

.v_pp_intro_price {
    font-weight: 500;
    color: var(--green-color);
}

@media screen and (max-width: 1360px) {
    .v_pp_intro {
        grid-template-columns: 1fr 1.25fr;
    }

    .v_pp_intro_overlay {
        top: 80px;
        left: 30px;
    }

    .v_pp_intro_overlay h6 {
        font-size: 22px;
    }
    
    .v_pp_dcsp {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 1199px) {
    .v_pp_intro {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }

    .v_dcsp_grid3 {
        max-width: 100%;
    }

    .v_pp_contact,
    .v_pp_sc {
        padding: 60px 40px;
    }

    .v_dcsp_title h6 {
        font-size: 18px;
    }
}


@media screen and (max-width: 991px) {
    .v_pp_intro {
        row-gap: 30px;
        flex-direction: column;
        display: flex;
    }

    .v_pp_intro_overlay {
        top: 80px;
        left: 60px;
    }
    
    .v_pp_intro_overlay h6 {
        font-size: 32px;
    }
    
    .v_pp_btn_box {
        justify-content: center;
    }

    .v_dcsp_grid3 {
        row-gap: 30px;
        grid-template-columns: 1fr;
    }

    .v_dcsp_content ul {
        width: 100%;
        margin-left: 40px;
    }
}

@media screen and (max-width: 800px) {
    .v_pp_contact_btn {
        flex-direction: column;
        row-gap: 20px;
    }

    .v_pp_contact p {
        text-align: center;
    }

    .v_pp_contact_btn .v_btn {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .v_pp_sc {
        row-gap: 30px;
        flex-direction: column;
        display: flex;
    }
}
