.guideContainer {
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    user-select: none;
    margin-top: min(150px, 15vh);
}

.dropDown {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.dropDown .left1 {
    border-right: min(2px, 0.2vw) solid gray;
    width: min(30px, 3vw);
}
.dropDown .left2 {
    border-left: min(2px, 0.2vw) solid gray;
    width: min(30px, 3vw);
}
.dropDown .bottomRight {
    flex: 1;
}
.dropDown .title {
    font-size: min(30px, 3vw);
    font-weight: bold;
    border-bottom: 2px solid var(--primary);
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: min(10px, 1vw);
}
.dropDown .body {
    font-size: min(20px, 2vw);
    text-align: center;
    width: 100%;
    padding: min(10px, 1vw);
}

.dropDown .arrow {
    font-size: min(25px, 2.5vw);
    font-weight: bold;
    /* transition: transform 0.5s ease; */
    width: min(60px, 6vw);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid var(--primary);
}
.dropDown .arrow.arrowActive span {
    transform: rotate(90deg);
}
.dropDown .arrow span {
    transition: transform 0.5s ease;
}


ol {    
    list-style-position: inside;
    padding: 0 min(10px, 1vw);
    text-align: left;
}