.hex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.hex-row {
    display: flex;
    justify-content: center;
    margin: 3px;
}

.hex-row:nth-child(2),
.hex-row:nth-child(3) {
    margin-top: -20px;
}

.hex {
    width: 140px;
    height: 140px;
    background-color: #0073b7;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transform: rotate(90deg);
    margin: -5px;
}

.hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-90deg);
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
}

.hex-content svg {
    width: 60px;
}

.eas {
    border-radius: 10px;
    border-bottom-right-radius: 60px;
    color: white;
    padding: 5px;
    padding-left: 10px;
    padding-right: 40px;
    font-weight: 600;
}

.catatan ol {
    list-style-type: decimal;
}

.catatan ul {
    list-style-type: disc;
}