.so-container-efd25591 {
    font-family: inherit;
    color: #333;
}
.so-main-title {
    color: #0f4c3a;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.so-main-desc {
    margin-bottom: 30px;
    max-width: 800px;
}
.so-timeline-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    position: relative;
}
.so-box {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}
.so-basic {
    background-color: #dbe4de;
    color: #1a4d3a;
}
.so-oriented {
    background-color: #0d4632;
    color: #fff;
    flex: 1.5;
}
.so-box h3 {
    text-align: center;
    margin-bottom: 30px;
    color: inherit;
}
.so-circles {
    display: flex;
    justify-content: space-around;
    position: relative;
    margin-bottom: 20px;
}
.so-circles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #c79a4a;
    z-index: 1;
    transform: translateY(-50%);
}
.so-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #c79a4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: #333;
    z-index: 2;
    font-size: 14px;
    line-height: 1.2;
}
.so-result {
    display: flex;
    align-items: center;
    justify-content: center;
}
.so-result-circle {
    width: 150px;
    height: 150px;
    background: #b58d40;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 3px #b58d40;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 20px;
}
@media (max-width: 768px) {
    .so-timeline-wrapper {
        flex-direction: column;
    }
    .so-circles::before {
        display: none;
    }
}