.consult-section {
    display: flex;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px;
    gap: 60px;
    box-sizing: border-box;
}

.detail-content {
    padding: 100px 0;
    box-sizing: border-box;
    gap: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}

.consult-title {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.consult-item p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.consult-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.consult-logo {
    background-color: rgba(0, 49, 124, 0.1);
    width: 150px;
    height: 40px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consult-logo h4 {
    color: #00317C;
    font-size: 16px;

}


.consult-title h2 {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

@media(max-width:900px) {
    .detail-content {padding:20px;flex-wrap:wrap;box-sizing:border-box;}
    .detail-content img {width:100%;}
    .consult-section {flex-wrap:wrap;padding:30px;}
    .consult-item {padding:0;}
    .consult-title {flex-direction:column;align-items:start;margin-bottom:30px;}
    
}