.guide_wrap {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.guide_section {
    padding: 60px 0;
    border-top: 1px solid #ddd;
    font-family: 'GongGothicL';
}

.guide_section:first-child {
    border-top: none;
}

.guide_section h2 {
    margin: 10px 0;
    font-size: 32px;
    color: #222;
    line-height: 1.8;
    font-family: 'GongGothicL';
}

.guide_section ul {
    font-size: 18px;
    color: #999;
    line-height: 1.8;
    font-family: 'GongGothicL';
}

.guide_section li {
    margin-bottom: 10px;
}

.desc {
    font-size: 14px;
    color: #666;
}

.process_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.process_item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.circle {
    width: 90px;
    height: 90px;
    background: #f26522;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process_item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'GongGothicL';
}

.process_item p {
    font-size: 14px;
    color: #666;
}

/* 반응형 */
@media (max-width: 768px) {
    .process_wrap {
        flex-direction: column;
        align-items: center;
    }

    .process_item {
        margin-bottom: 30px;
    }
}