.picbody {        
    font-family: Arial, sans-serif;
    text-align: center;        
    margin: 0;
    padding: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:10;
}
.piccontainer {
    width: 400px;
    margin: 20px auto;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    height:600px;
    box-shadow: 10px 10px 15px 15px rgba(0, 0, 0, 0.2);
}
.title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: #6a9bd1;
    padding: 10px;
    border-radius: 5px;
    color: white;
}
.content {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
.diagram {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}
.circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: absolute;
}
.center-circle {
    background-color: #66bb6a;
    z-index: 1;
}
.bottom-left {
    background-color: #42a5f5;
    transform: translate(-90px, 90px);
}
.bottom-right {
    background-color: #ffb74d;
    transform: translate(90px, 85px);
}

.custom-layout {
    display: flex;
    align-items: center;
    gap: 87px;
    margin: 20px 0;
}

.custom-layout img {
    max-width: 100%;
    height: auto;        
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 입체감 추가 */
}

.custom-layout .content {
    flex: 1; /* 텍스트 영역 */
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: red;
    text-shadow: 1px 1px 2px #ccc;
    text-align:center;
    margin-top:30px;
}

.subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    background-color: #f0f8e8;
    padding: 10px;
    border-radius: 8px;
    margin: 30px 0 ;        
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align:center;
}

.footer-text {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #2a7ae2;
    background-color: #eef7ff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align:center;
}

.subtitle span {
    color: orange;
}

.images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.images div {
    margin: 0 10px;
    text-align: center;
}

.images img {
    width: 150px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.images p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}
.arrow {
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid #4CAF50;
        margin: 0 auto;
    }