/* BASIC css start */
/* 전체 화면 레이아웃 */
#wrap {
    max-width: 100%;
    margin: 0 auto;
}

#contentWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.about {
    width: 100%;
}

.about img {
    width: 100%;
    height: auto; /* 이미지 비율 유지 */
    margin: 0 auto;
    display: block;
}

/* 데스크톱에서 적당한 여백 추가 */
@media (min-width: 1024px) {
    .section {
        padding: 20px 40px;
    }
    .about img {
        max-width: 90%; /* 화면의 90% */
    }
}

/* 태블릿에서 이미지 크기 조정 */
@media (max-width: 1024px) {
    .about img {
        max-width: 95%; /* 화면의 95% */
    }
}

/* 모바일에서 이미지 크기 조정 */
@media (max-width: 768px) {
    .about img {
        max-width: 100%; /* 화면의 100% */
        padding: 10px;
    }
}

/* BASIC css end */

