/* PC 이미지 중앙 정렬 */
.pc-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 20px 0;
}

.pc-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 모바일 이미지 중앙 정렬 */
.mobile-image {
    display: none;
}

@media (max-width: 768px) {
    /* PC 이미지 숨김 */
    .pc-image {
        display: none;
    }

    /* 모바일 이미지 표시 */
    .mobile-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0;
    }

    .mobile-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}
