
.container_1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}
.left-section {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.right-section {
    width: 30%;
}

.box {
    background-color: #6dae81; /* 녹색 박스 */
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.box-orange {
    background-color: #d87c4a; /* 주황색 박스 */
}

.container_1 .content {    
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);    
}

ul {
    list-style-type: circle;
    padding-left: 20px;
}

ul li {
    margin-bottom: 5px;
}

.image-container {
    display: flex;
    width:205%;
    justify-content: space-between;
    margin-top: 20px;
    position: absolute;
    bottom:30%;
}

.image-container img {
    width: 32%;
    border: 2px solid red;
    border-radius: 5px;
}

.footer_1 {
    display: flex;
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;    
    color: white;
    position: absolute;
    bottom:-20%;
}

.item {
    display: flex;
    align-items: center;
    background-color: #eaf4f1;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.number {
    font-size: 24px;
    font-weight: bold;
    color: #006666;
    background-color: #dff0ed;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.container_1 .content {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.container_1 .title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.description {
    font-size: 14px;
    color: #666;
    background-color: #dff0ed;
    border-radius: 8px;
    padding: 10px;
    max-width: 60%;
}

.item_2 {
    display: flex;
    align-items: flex-start;
    background-color: #f5f8fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.item_2 .icon {
    width: 40px;
    height: 40px;
    background-color: #4b4b4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.item_2 .content {
    flex: 1;
    background:#ddd;
    padding:1rem;
}

.item_2 .content p {
    margin: 0;
    color: #333;
}